• Debug information with A51 and macros
    Is anybody try to debug assembler code with MPL macros. In the source window, line in file is not correct adress instructions. I sent 2 email to Keil about three weeks and I haven't any answer. Also...
  • problem with macro
    the following type of macro defining causing error , what should i do? plz help. #define LCD_DATA P2 error: 'LCD_DATA': undefined identifier
  • 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,...
  • Undefined Symbol when using Macro
    Dear all, I have met a problem when using macro in my project. Here it is my case: In file "A.h": DelayX9Cyc macro n local loop1, loop2 if (n) <> 0 mov temp, #n ;;[3] loop1: djnz temp, loop2...
  • ## 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...