• xdata memory
    What are the advantages in useing xdata memory? Why would you use it? How do you use it?
  • XDATA BANKING WITH AN XDATA PORT # FOR CODE AN XDATA
    PK51 KIT 7.0 ATMEL AT89S8252 (classic 8052 with 8 flash) I'M USING A HARDWARE THAT HAVE 16*32k code and 4*32k xdata. Bank switch is performed with xdata port 0x1400 for code and with port 0x1800 for...
  • xdata memory with ADuC842
    I'm trying to store data in the xdata memory location beginning at 0x000. What is wrong with my code? typedef struct { unsigned int X1; unsigned int X2; unsigned int X3; }fordon; fordon xdata...
  • P89LPC9408 -XDATA memory
    In P89LPC9408.pdf (Product Data Sheet) Type Data RAM Size (bytes) DATA 128 IDATA 256 XDATA 512 Total 768 bytes is the XDATA refers to on-chip EEPROM 512 BYTES? Thanks
  • xdata and compact memory model
    If I'm using the compact memory model, which implicitly sticks variables in xdata, but also declare a variable (in this case a char[]) to go in xdata, it appears to use the wrong pointer type. Thus, I...