I would like to the #define directive inside of a quotation. Here's the problem:
There is a built-in function in the embedded platform that I'm using that takes literal assembly code as a string. I would like to wrap this into a macro.
__asm__("goto 0x2400");
The above built-in function the processor jumps to the code at location 0x2400 and starts executing at that address (for those wondering, I'm writing a bootloader which is why this is necessary). Because the address is in the string, I cannot easily replace it. I need a way to make the function generic so that I can start executing code at any address. For example:
#define ASM_GOTO __asm__("goto X")
This will not result in a correct text replacement because the X is in quotes. Is there a way around this?