• Absolute address
    __at works in realview, just include the absacc.h .
  • 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!
  • Absolute addressing question
    Is there a difference between the following two statements: 1. char far SL811 _at_ 0x07F7FF; SL811 = 0x0D; 2. #define SL811 *((char far *)0x07F7FF) SL811 = 0x0D; I've been having trouble...
  • Absolute memory addressing with C166
    How can I place constants and variables to specific addresses in the FLASH and RAM ? Is there an equivalent for the C166 compiler like the _at_ <addr> which exists for the C51 compiler. I am sure...
  • Jump to function at absolute address
    Hi, In my project I have some functions that has to be protected against changes. For that reason a checksum has to be calculated on that specific code in runtime, just to prove that the actual code...