• Placing Variables in Section
    Hi, How to place variables in existing section eg. LR_IROM1 0x00000000 0x00080000 { ; load region size_region ER_IROM1 0x00000000 0x00080000 { ; load address = execution address *.o (RESET, +First...
  • Placing sections at a specific address
    I used the following code to specify the address of variable bar at 0x4000 and the address of function fun at 0x8002000 . int bar __attribute__((section(".ARM.__at_0x4000"))); void fun(void) __attribute__...
  • No section matches selector - no section to be FIRST/LAST
    I am developing a project for LPC54018 iot module where I am using MDK toolchain to compile the project through the command line. I am developing cmake based build environment. While compiling, I...
  • error: L6236E: No section matches selector - no section to be FIRST/LAST
    Hi, I wrote a program on arm7 lpc2148 in keil but couldn't get the output .It is showing the error "error: L6236E: No section matches selector - no section to be FIRST/LAST".. my code is --------...
  • ASM.axf: Error: L6236E: No section matches selector - no section to be FIRST/LAST.
    Hi, In Keil, I tried to assemble the following ARM7 assembly language. But it generates Error. The assembly program is given below: AREA subrout, CODE, READONLY ENTRY start MOV r0, #10 MOV...