]> git.sur5r.net Git - cc65/commitdiff
Fixed zero page handling for o65 modules
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 25 May 2002 15:58:00 +0000 (15:58 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 25 May 2002 15:58:00 +0000 (15:58 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1287 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/module.cfg

index bd907d3d2fdd29b3e9b5d78273ea78ea116d2489..7783f995afe4d29fecd35b9d5a9c675617ae03e5 100644 (file)
@@ -1,13 +1,14 @@
 MEMORY {
+    ZP: start = $0000, size = $0100, type = rw, define = yes;
     COMBINED: start = $0000, size = $FFFF, file = %O;
 }
 SEGMENTS {
-    ZEROPAGE: load = COMBINED, type = zp;          
     JUMPTABLE: load = COMBINED, type = wprot;
     CODE: load = COMBINED, type = wprot;
     RODATA: load = COMBINED, type = wprot;
     DATA: load = COMBINED, type = rw, define = yes;
     BSS: load = COMBINED, type = bss, define = yes;
+    ZEROPAGE: load = ZP, type = zp;
 }
 FILES {
     %O: format = o65;