From b31e0d32496a33e92818f44950dc7c84c376f87a Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Tue, 25 Jun 2013 00:53:21 +0200 Subject: [PATCH] small memory optimization: appmsav not needed in the xl target --- libsrc/atari/crt0.s | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libsrc/atari/crt0.s b/libsrc/atari/crt0.s index 844b70368..9e3026625 100644 --- a/libsrc/atari/crt0.s +++ b/libsrc/atari/crt0.s @@ -233,9 +233,11 @@ L2: lda zpsave,x .bss spsave: .res 1 -appmsav: .res 1 old_shflok: .res 1 old_lmargin: .res 1 +.if .not .defined(__ATARIXL__) +appmsav: .res 1 +.endif .segment "AUTOSTRT" .word RUNAD ; defined in atari.h -- 2.39.5