From e64672acc702ed16deba2a812913f30fdcdec016 Mon Sep 17 00:00:00 2001 From: cpg Date: Fri, 4 Jul 2008 17:32:00 +0000 Subject: [PATCH] use __ZPSAVE_LOAD__ instead of __BSS_LOAD__ to create EXEHDR git-svn-id: svn://svn.cc65.org/cc65/trunk@3851 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/atari/crt0.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/atari/crt0.s b/libsrc/atari/crt0.s index 2f60f2076..bb2c6b493 100644 --- a/libsrc/atari/crt0.s +++ b/libsrc/atari/crt0.s @@ -15,7 +15,7 @@ .import initlib, donelib, callmain .import zerobss, pushax .import _main, __filetab, getfd - .import __LOWCODE_LOAD__, __BSS_LOAD__ + .import __LOWCODE_LOAD__, __ZPSAVE_LOAD__ .import __RESERVED_MEMORY__ .ifdef DYNAMIC_DD .import __getdefdev @@ -31,7 +31,7 @@ .segment "EXEHDR" .word $FFFF .word __LOWCODE_LOAD__ - .word __BSS_LOAD__ - 1 + .word __ZPSAVE_LOAD__ - 1 ; ------------------------------------------------------------------------ ; Actual code