I got a tricky situation. I got a project with an .asm
file that do some logic. I got a macro #define
ed in a different .h
file in the project.
Is it possible to use the macro in the .asm
file?
What I tried so far is this in the header file
#define MOVRAX "mov rax, rcx"
and then something like this in the asm:
PUBLIC test_fn
.CODE
test_fn PROC
MOVRAX
test_fn ENDP
END
which sadly doesnt compile... is there any way to do that?