I'm just an absolute self-instructed beginner, so please excuse my non-asm ways of speaking about these things.
How do you read the MIDI port address? All I want to do is press a note on the MIDI, then run this little program, and see what code was sent to the MIDI port address.
I've tried the following:
mov(eax,330); // 330h is the standard MIDI port address
and
mov eax,$330, mov( $330, eax ); // HLA syntax
and I've tried this with HLA, MASM, and TASM, but can't seem to get any result in output except the hex for decimal 330 or else "330"! LOL
Any help will be greatly appreciated.
How do you read the MIDI port address? All I want to do is press a note on the MIDI, then run this little program, and see what code was sent to the MIDI port address.
I've tried the following:
mov(eax,330); // 330h is the standard MIDI port address
and
mov eax,$330, mov( $330, eax ); // HLA syntax
and I've tried this with HLA, MASM, and TASM, but can't seem to get any result in output except the hex for decimal 330 or else "330"! LOL
Any help will be greatly appreciated.