• Locating Variables to Specific Memory Location
    I wish to locate a structure to a specific memory range in External RAM. No other data can be allowed to use this memory range. What I am trying to do is to re-claim RAM for other purposes using...
  • writing to specific flash location
    Hi, I am trying to write to specific flash memory location of ARM Cortex M3 controller from NXP and ST. I want that 4 bytes of data is always written to memory location 0x2fc everytime by the linker...
  • write Functions at specific locations
    Hi All, I am trying to write functions at specific locations. I am using KEIL 4 IDE ... and LPC2478 Though I could find a keyword "FIXED" which says one can write function at specific locations...
  • Locating a variable to an specific address
    Hi, I'm trying to locate a variable to an specific address. There are three ways to do this: 1) using options of the file that have the variable and config the RAM area 2) unsigned int cont...
  • How to assign initial values in code memory with specific location?
    I want to define some values in code memory with specific location. For example code unsigned char MyArray[] _at_ 0xF000 = {0x01, 0x02}; After that, I can use "MyArray[0]" and "MyArray[1]...