> You should be able to use:
> VMM_ # name_
Thanks for the hint! It works. However, there is a catch (although it's more a MASM bug):
You cannot code:
VMMCall macro name_
int 20h
ifndef __POASM__
dw VMM_&name_
else
dw VMM_ # name_
endif
dw 1
endm
because MASM's macro parser complains about the '#' (invalid character in file). Apparently the inactive code is not totally ignored by MASM. So it has to be done this way:
ifndef __POASM__
VMMCall macro name_
int 20h
dw VMM_&name_
dw 1
endm
else
VMMCall macro name_
int 20h
dw VMM_ # name_
dw 1
endm
endif
This style significantly bloats the include files, especially if larger macros are used.
Regards
Japheth