• C51: Absolute address for constants in CODE-space
    Does anyone knows a methode, to declare a const struct in code-space at a specific CODE address in C51? Background: I use a philips 87LPC767-MC and i want to store some code-revision-info in the...
  • Absolute location of code in bank
    I am migrating from another toolset. I have a project that uses banked codespace, with a common from 0x00000-0x07FFF, and two banks from 0x08000-0x0FFFF. I have three subroutines that I need to locate...
  • 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!
  • locating code constants in bank1
    i am trying to locate code constants in bank1 (Cygnal F124). but it is always placed in common area only. i have also writen "bank1(?co?table)" in L51 dialog box in uVision2. in common area it is...
  • Absolute Variable location problem
    I have the following code: volatile BYTE xdata RxQueue[RX_MAX_QUEUE] _at_ MEM_RXQUEUE; both RX_MAX_QUEUE and MEM_RXQUEUE is defined as constants. but I get an error: *** ERROR C129 IN...