• define a constant to an absolute address
    How to define the following constant to an absolute address at 0x1000? unsigned char code index[] = { 0x3, 0x5, 0x6 } ; //a constant mem in a file Thanks for any help!
  • define a constant to an absolute address
    How to define the following constant to an absolute address at 0x1000? unsigned char code index[] = { 0x3, 0x5, 0x6 } ; //a constant mem in a file Thanks for any help!
  • 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...
  • 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...
  • How to initialize Absolute variables in code memory?
    I am using Keil V7.07 C compiler. Problem Regarding Absolute Variable Initialization. An Absolute Variable Can be defined as: unsigned char code xyz _at_ 0xFE01; A Normal Variable can be...