This code will not be built, because the NASM doesn't recognize the symbols 'f7h' as a valid hexadecimal.
Is there something that I'm missing (I hope)???
mov dx,03c4h
mov al,4
out dx,al
inc dx
in al,dx
and al,f7h ;turn off chain 4
or al,04h ;turn off odd/even
NASM is just fine, until it hits the
and al, f7h
it gives the error 'f7h' symbol undefined.
What gives?? Anybody have a clue, because this is a simple immediate value?
Harried and hopeless,
Jeff
P.S. Thanks in advance.