• Absolute location of constant tables in code space
    I'm looking for a way to absolutely locate a constant array in code space using the C51 compiler. I can use the 'code' memory location specifier to indicate the array should be located in program memory...
  • Absolute location of constant tables in code space
    I'm looking for a way to absolutely locate a constant array in code space using the C51 compiler. I can use the 'code' memory location specifier to indicate the array should be located in program memory...
  • how to locate lib to absolute address of code
    there is a lib which has two functions: FUN1/FUN2; i want to locate the FUN1 and FUN2 to 0x3800 and 0x3900; whenever use this lib in any main programe, after compiling, the FUN1 and FUN2 will be located...
  • how to locate lib to absolute address of code
    there is a lib which has two functions: FUN1/FUN2; i want to locate the FUN1 and FUN2 to 0x3800 and 0x3900; whenever use this lib in any main programe, after compiling, the FUN1 and FUN2 will be located...
  • 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...