From: cpg Date: Fri, 14 Nov 2003 22:37:17 +0000 (+0000) Subject: use tmp4 instead of tmp2; tmp2 might now be used by ucase_fn() X-Git-Tag: V2.12.0~1134 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=178b188eac8d9f7c0d0bbcabb0cb4aaf40d2ba89;p=cc65 use tmp4 instead of tmp2; tmp2 might now be used by ucase_fn() git-svn-id: svn://svn.cc65.org/cc65/trunk@2666 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/atari/sysremove.s b/libsrc/atari/sysremove.s index 423f34092..a16900449 100644 --- a/libsrc/atari/sysremove.s +++ b/libsrc/atari/sysremove.s @@ -7,7 +7,7 @@ .include "atari.inc" .include "errno.inc" .import findfreeiocb - .importzp tmp2 + .importzp tmp4 .ifdef UCASE_FILENAME .importzp tmp3 .import addysp @@ -30,7 +30,7 @@ lda #TMOF ; too many open files rts -iocbok: stx tmp2 ; remember IOCB index +iocbok: stx tmp4 ; remember IOCB index pla tax pla ; get argument again @@ -46,7 +46,7 @@ ucok1: .endif ; defined UCASE_FILENAME - ldy tmp2 ; IOCB index + ldy tmp4 ; IOCB index sta ICBAL,y ; store pointer to filename txa sta ICBAH,y