• Declaring RAM areas for P89C668 (xdata problems)
    I believe I'm doing something incorrectly, probably relating to how I initialize and tell keil where RAM memory resides at. I'm using the latest version of uVision and C compiler. The P89C668 has 8k...
  • Declaring RAM areas for P89C668 (xdata problems)
    I believe I'm doing something incorrectly, probably relating to how I initialize and tell keil where RAM memory resides at. I'm using the latest version of uVision and C compiler. The P89C668 has 8k...
  • not used functions linked and declares XDATA for local vars
    Hello, I have detected that some functions like this one are using their own XDATA space instead of using the XDATA_GROUP for local purposes: for example this one: void zmemcpy2(UINT8 *dst...
  • not used functions linked and declares XDATA for local vars
    Hello, I have detected that some functions like this one are using their own XDATA space instead of using the XDATA_GROUP for local purposes: for example this one: void zmemcpy2(UINT8 *dst...
  • enum external declaration and use
    Hi Folks, I am trying to use enum to define a set of named constants with values so that they can be used by multiple C files in my project. For example. I use the following snipet to define Months...