• Common Code Elimination
    Common Code Elimination cortex-m3 uVision 5.13 I recent had to up the optimization level on my project to level 2 because my code size was too large for my target memory. In doing this I found...
  • Common Code Elimination
    Common Code Elimination cortex-m3 uVision 5.13 I recent had to up the optimization level on my project to level 2 because my code size was too large for my target memory. In doing this I found...
  • Declaring Variables in cortex m3 Assembly Language
    I declare 32 bit variables in the MyAsmVar section. I know the base address of MyAsmVar. Also I know the address of var1 and var2. AREA MyAsmVar, DATA,NOINIT, READWRITE, ALIGN=3 var1 DCD...
  • Declaring Variables in cortex m3 Assembly Language
    I declare 32 bit variables in the MyAsmVar section. I know the base address of MyAsmVar. Also I know the address of var1 and var2. AREA MyAsmVar, DATA,NOINIT, READWRITE, ALIGN=3 var1 DCD...
  • Common RAM for bootloader and application.
    Hi I am working on a bootloader for lpc11c24 (ARM cortex M0). I want to have a common RAM for the bootloader and application. The RAM should not be erased when jumping to application from bootloader...