The C51 pre-processor treats the "#" character as the "Stringize" operator. How do I override this operator when desired? For example:
#define X mov A,#10
mov A,10
mov A,#10
hi, this is yet another cause to use assembler language in separate .asm file. Have you the reason to combine with both C and ASM routines in one file really? Regards, Oleg