dos33fsprogs/linker_scripts/apple2_e00.inc
Vince Weaver 299f94ec89 mist: add load game support
had to move around the ZP a bit.  HGR in title messes with $7X addresses
2020-06-19 16:29:56 -04:00

13 lines
301 B
PHP

MEMORY {
ZP: start = $00, size = $1A, type = rw;
RAM: start = $E00, size = $8E00, file = %O;
}
SEGMENTS {
CODE: load = RAM, type = ro, align = $100;
RODATA: load = RAM, type = ro;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
}