From: uz Date: Tue, 8 Dec 2009 20:41:43 +0000 (+0000) Subject: An assignment for the ZPSAVE segment was missing in the linker config for the X-Git-Tag: V2.13.1~24 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1fae13274e6f16ef70b860df01abe587f6f3b547;p=cc65 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 --- 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;