From 1fae13274e6f16ef70b860df01abe587f6f3b547 Mon Sep 17 00:00:00 2001 From: uz Date: Tue, 8 Dec 2009 20:41:43 +0000 Subject: [PATCH] An assignment for the ZPSAVE segment was missing in the linker config for the 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ld65/cfg/vic20-32k.cfg b/src/ld65/cfg/vic20-32k.cfg index 1ff9fc0b1..38152ea8f 100644 --- a/src/ld65/cfg/vic20-32k.cfg +++ b/src/ld65/cfg/vic20-32k.cfg @@ -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; -- 2.39.2