• fix a constant address of code
    I would like to fix an address to start my code always at the same address. I have all books C51, A51, BL51, etc but I've lost my L51 book... I use in the option file of linker the instruction CODE...
  • Fixed adreess constant
    Hi, I write a funcion named IAP and put it in a fixed adress using de "BL51 Locate" table as below: Code: ?PR?Switch_Flash?Iap_asm(0x1000) Now I want to put a constant in a fixed adress. How can...
  • Place constant at fixed code memory address
    Hi, I'm confused about the existings threads regarding this topic, so please excuse this new thread. I'd like to put some calibration data into my (OTP) memory of C164-CA. The software would have...
  • Placing many arrays of consts at fixed address of Flash
    I read some topics about placing a const to fixed address by linker. The method is to locate all section, isn't it? My problem is to locate 7 arrays of const(predefined): a1[50]..a7[50]. I want to place...
  • fix address for variables which are stored in flash
    I want allocate the fix address for variables which are stored in flash. for example: const float engine_speed[6]={0,1000,2000,3000,4000,5000}; after compiling it, the address of these variables (engine_speed...