• How to initialize an array at absolute location in code memory
    Hi, I've to modify a code previously written in Tasking compiler and at many places I find code like _rom USIGN08 TempTable[CAL_TEMPERATURES] _at(0xf35c)= { 0x0F,0x28,0x51,0x7A,0x8F }; Here...
  • Locating initialized variables at absolute address
    Hello, As the Summary suggests, I am trying to Locate initialized variables at an absolute address in a code segment. I have followed the steps shown here http://www.keil.com/support/docs/301.htm...
  • Declare an initialized array at an absolute pos
    Hi, The following code does not work: static code BYTE InitArray[] _at_ 0x1234 = { 0x01, 0x02, 0x03, 0x04 }; Is there a way to put an initialized array at an absolute position in memory? ...
  • Absolute Variable location problem
    I have the following code: volatile BYTE xdata RxQueue[RX_MAX_QUEUE] _at_ MEM_RXQUEUE; both RX_MAX_QUEUE and MEM_RXQUEUE is defined as constants. but I get an error: *** ERROR C129 IN...
  • assign an absolute memory location
    I am kind of confused about using the _at_ keyword to assign a specific address to a variable. so for example : extern xdata char variable _at_ 0x000f; it fills 3 bytes in xram . can any...