diff --git a/graphics/hgr/xdraw/apple2_e7_zp.inc b/graphics/hgr/xdraw/apple2_e7_zp.inc new file mode 100644 index 00000000..f615f797 --- /dev/null +++ b/graphics/hgr/xdraw/apple2_e7_zp.inc @@ -0,0 +1,12 @@ +MEMORY { + ZP: start = $E7, size = $90, type = rw; + RAM: start = $E7, size = $8E00, 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 = ro; +}