]> git.sur5r.net Git - cc65/commitdiff
An assignment for the ZPSAVE segment was missing in the linker config for the
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 8 Dec 2009 20:41:43 +0000 (20:41 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 8 Dec 2009 20:41:43 +0000 (20:41 +0000)
32K memory config of the VIC20. Hint from Robert Hurst.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4505 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/vic20-32k.cfg

index 1ff9fc0b124256c583bba3b640d1ea9e5e7f18d0..38152ea8f554f335cf261cd6dddd001aec9ac0bf 100644 (file)
@@ -1,4 +1,4 @@
-# Memory configuration for the VIC-20 with 32K RAM Cartridge 
+# Memory configuration for the VIC-20 with 32K RAM Cartridge
 # Contributed by Stefan Haubenthal
 MEMORY {
     ZP: start =  $0002, size = $001A, type = rw, define = yes;
@@ -11,6 +11,7 @@ SEGMENTS {
     CODE:     load = RAM, type = ro;
     RODATA:   load = RAM, type = ro;
     DATA:     load = RAM, type = rw;
+    ZPSAVE:   load = RAM, type = bss;
     BSS:      load = RAM, type = bss, define = yes;
     HEAP:     load = RAM, type = bss, optional = yes; # must sit just below stack
     ZEROPAGE: load = ZP,  type = zp;