• ARMCC bug
    I think I have found a bug for ARMCC. in my case, the correct result which would be: VCMPE.F32 s0,s1 VMRS APSR_nzcv,FPSCR ITTT LS But actually, that was: VCMPE.F32 s0,s1 VMRS APSR_nzcv...
  • Is there printing value of macro using armcc?
    Hello all. Is there printing value of macro using armcc? I want to see define value in c file? for example, #define value_a      1 #define value_b      2 #if value_a > value_b #error "error" #endif I...
  • armcc
    Note: This was originally posted on 5th April 2013 at http://forums.arm.com Is there a compiler option or pragma that allows me to see "padding" in c structure?   typedef struct st {   char a; ...
  • 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,...
  • ## 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...