• about XBANKING.A51
    In XBANKING.A51,I see that followed: XMEM EQU 0x02000000 ; LX51 xdata symbol offset: do not change! CMEM EQU 0x01000000 ; LX51 code symbol offset: do not change! ; ;******* Configuration Section...
  • far types
    I've tried to mod the xbanking link file to generate paging for my device. I was trying to use segment B which is defined between 8000-BFFF. Then page into this to give 128k. I have set the HData...
  • C51 Tiny2 and Far Memory.
    Hello. The question is about using the far memory. In our project we want to use Tiny2 OS 51, internal RAM of uC and external RAM. We tried 4 versions of the file XBANKING.A51 - from /Examples and...
  • more help for using far memory type
    one good new topic in c51 is far memory type but help and doc for use it not complete can get me more help or doc for use it ?
  • far memory
    Hi All, I wrote the follwing: char far *fp; fp = (long) 0x1e00a5; *fp = 0x89; tmp = *fp; expecting to see value 0x89 at far address 0x1e00a5. on the debugger >D X:0x1e00a5 results...