• Place static variable in RAM?
    Hi All If I declare a variable (or a data struct) static, the data is placed in the IRAM. I guess the static data is moved to the IRAM before the "main" in called and probally also before the SDRAM...
  • Placing variables in ROM
    I'm targeting a STM32. How can I define a large array of data in ROM? Also, is it possible to somehow "attach" a HEX file to a project so that when the project is loaded into the target...it automatically...
  • 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...
  • ARM Linker, Placing variables in memory, special cases
    Note: This was originally posted on 20th April 2011 at http://forums.arm.com [font="Courier"][size="2"]I am using RVDS for developing security application over SC100 core. I have a special requirement...
  • Variables that overlap in the same memory space possible?
    Currently I have a set of structures represented as variables such as: MYTYPE xdata A; MYTYPE xdata B; MYTYPE xdata C; MYTYPE xdata D; MYTYPE xdata E; MYTYPE xdata F; MYTYPE xdata G; MYTYPE xdata...