
How to transfer a Argument in the macro
Hello, Everyone!
In my application, I want to define a macro as following:
#define aa(bb) asm("MOV bb, B")
where the bb in the instruction is the argument transfered by macro aa,
I have tried the #, ##, but the complier tell me that's wrong! How can
I?
My C envirnment support K&R C 2nd Edition!