• Absolute address
    __at works in realview, just include the absacc.h .
  • Start execution from absolute address
    Hello, on my two Infineon boards (one equipped with an XC161 and the other with an XC167) I am not able to use the built-in CAN bootstrap loader mechanism, therefore I am writing a C program dedicated...
  • How to map a library to absolute address?
    I need to set the address where the library I've included will reside in the code memory
  • const DATA at absolute address in CODE seg
    Hi all, My goal is to put a few constants in the code segment at compile time so they are stored in the program flash when the SiLabs 'F122 is initialized via JTAG. const UCHAR code ucTBD = TBD_VAL;...
  • 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!