LDR r2, =0x0 :OR: (Region_64K << 1) :OR: Region_Enable
What does the above command do ?
on armcc
it compiles fine while with arm-none-eabi-gcc
it gives an error
garbage following instruction -- `ldr r2,=0x0:OR:(Region_64K<<1):OR:Region_Enable'
where on gcc
Region_Enable = 0b1
Region_64K = 0b01111
on armcc
Region_Enable EQU 2_1
Region_64K EQU 2_01111