1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

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
This commit is contained in:
uz 2009-12-08 20:41:43 +00:00
parent 7d94dc50a1
commit 1fae13274e

View 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;