• assembly macro
    Does any one know how to create a macro to concatenate 2 tokens such as below in assembly? #define A(func) A_##func() Anh
  • assembler macro included in C macro
    l.s., For delay purposes I need NOP's in an assembler macro, the code below doesn't do the trick. Thread 2267.htm doesn't help me either. A C macroloop, with e.g. DELAY(a); a = 10, slows the execution...
  • What is Assembly Macro?
    A friend told me : A new language which named Assembly Macro is spread by Winbond and Intel . This language can be programed with C.The program can speedup 1~10 times of C's speed.Has anyone used this...
  • ## Macro
    Hi, I am use the ## as follows #define ADC_SRV_DEV 1 #define ADCCON(dev, chan, reg) AD##dev##CON##chan##reg then when I give ADCCON(ADC_SRV_DEV, 1, bits.FORM) = 3; // this is equavalent...
  • MACRO
    Hello, May I know if the code as shown below works? -------------------------------------------- #pragma src void main(void){ #pragma asm myMacro MACRO MOV R1, #01 MOV R2, #02 MOV R3,...