• 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...
  • Absolute address for FUNCTIONS in CODE-space
    Does anyone knows a methode, to declare a function in a specific CODE address in C51? Something lika a org xxxx in assembler !
  • Absolute address for FUNCTIONS in CODE-space
    Does anyone knows a methode, to declare a function in a specific CODE address in C51? Something lika a org xxxx in assembler !
  • 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!