dos33fsprogs/mode7_demo/apple2_2000.inc
Vince Weaver 85a296347d mode7_demo: start adding in the mode7 code
also add self-driving code, as well as make it load into HGR range
2017-12-21 14:59:06 -05:00

13 lines
288 B
PHP

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