SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */ ROM = READ_ONLY 0xDC00 TO 0xFBFF; //Z_RAM = READ_WRITE 0x0060 TO 0x00FF; RAM = READ_WRITE 0x0060 TO 0x015F; END
PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */ DEFAULT_RAM INTO RAM; DEFAULT_ROM, ROM_VAR, STRINGS INTO ROM; /* In case you want to use as well, be sure the option -OnB=b is passed to the compiler. */ //_DATA_ZEROPAGE, MY_ZEROPAGE INTO Z_RAM; END |