• Problem jumping execution to absolute address
    Hi, I have two hex files loaded in 0x00000000 (app A) and 0x00004000 (app B) I am using the following code to jump to app B. ((void (*)(void))0x00004000)(); Before it was working but...
  • 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...
  • Absolute address
    __at works in realview, just include the absacc.h .
  • Starting execution from an address, AppEntry() function
    Hi, My boot code is booted from the SPI flash and it copies the application code to the 0x80000000 address, where the SDRAM starts. The NAND and NOR bootloader codes written by KEIL has an AppEntry...