Hi,
I'm trying to write a macro that produces different output depending on the register used as operand.
It looks something like this:
%macro isereg 1
%if (%1 = eax)
int 10h
%else
int 11h
%endif
%endmacro
but when I write eg.
isereg eax
in my source file I get the error message "error: (isereg:2) symbol `eax' not defined before use".
Is there a way to make this work at all?
greetings,
BTM