• const far support in 8.06
    I upgraded Keil C PK51 from 7.1 to 8.06, then my project can't be rebuilt, some functions are missing: ?C?ISTOPTR: ?C?CSTOPTR: ?C?LSTKOPTR: ?C?LSTOPTR: Where can I find those functions? I...
  • far const declaration
    Hello, I'm using Silab IDE Simplicity Studio and MCU EFM8BB31F16GB. I'm try to locate const array in code memroy space, but I've been not able to find the correct syntax to do that. Searching the...
  • far const in code banking strsuture
    Can I use the far const in 4 bank strusture? ex: const chat far LargeArray1[30*1024]; //assign to bank1 const chat far LargeArray2[30*1024]; //assign to bank2 const chat far LargeArray3[30*1024...
  • Cx51 "const far" struct declaration
    Hello, I'm having some problems regarding const far memory type in Cx51... Using the following declarations, the variables aren't being initialized correctly, and accessing them, results in values...
  • Other const in const structure definition
    Hi all, I have a small issue with a definition with arm C compiler regarding constants. In an assembly code I define a constant with : Version EQU 0x01000100 In my main C file I import this...