• passing 64k boundary
    Hi, I'm working on a project that will have an array that will cross the 64k boundary (and may even be larger then 64k. Of course, the problems comes when adding something like 100 when it points...
  • 64k banked code
    hi all, i was thinking to write a 512K code as 8x64k banks for an external flash memory, using some kind of jump table for functions call that are to differn banks. Could the Keil banked linker works...
  • 64K boundaries on DS80C400
    While executing the following code: char far * buf; buf=FARRAY(char, 0x8FFF0); printf("%p\r\n",buf); buf+=0x100; printf("%p\r\n",buf); I get the following result printed: x:08fff0 x:0800f0...
  • code size limitation to 64k?
    Hi The problem reported in '6286 sprintf malfunction?' seems to be a more general problem: I guess that I can't have a code size more than 64k. How to break this limit? I have read, that the 80C166...
  • pointer cannot cross 64k boundary
    I have a big problem with the compiler. It cannot point to the correct location. When I declared a pointer to a structure in EEPROM and try to access a member within it, the member pointed to is incorrect...