From: cpg Date: Fri, 4 Jul 2008 17:31:14 +0000 (+0000) Subject: add "define=yes" for ZPSAVE segment, since it's needed by crt0.s X-Git-Tag: V2.12.0~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=254b252167127ae9d704129fe212be056cde4d52;p=cc65 add "define=yes" for ZPSAVE segment, since it's needed by crt0.s git-svn-id: svn://svn.cc65.org/cc65/trunk@3850 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/atari.cfg b/src/ld65/cfg/atari.cfg index f6b0eb675..146b8370d 100644 --- a/src/ld65/cfg/atari.cfg +++ b/src/ld65/cfg/atari.cfg @@ -13,16 +13,16 @@ MEMORY { } SEGMENTS { EXEHDR: load = HEADER, type = ro; - LOWCODE: load = RAM, type = ro, define = yes, optional = yes; - INIT: load = RAM, type = ro, optional = yes; - CODE: load = RAM, type = ro, define = yes; + LOWCODE: load = RAM, type = ro, define = yes, optional = yes; + INIT: load = RAM, type = ro, optional = yes; + CODE: load = RAM, type = ro, define = yes; RODATA: load = RAM, type = ro; DATA: load = RAM, type = rw; - ZPSAVE: load = RAM, type = bss; + ZPSAVE: load = RAM, type = bss, define = yes; BSS: load = RAM, type = bss, define = yes; - HEAP: load = RAM, type = bss, optional = yes; # must sit just below stack + HEAP: load = RAM, type = bss, optional = yes; # must sit just below stack ZEROPAGE: load = ZP, type = zp; - EXTZP: load = ZP, type = zp, optional = yes; + EXTZP: load = ZP, type = zp, optional = yes; AUTOSTRT: load = TRAILER, type = ro; } FEATURES {