]> git.sur5r.net Git - cc65/commitdiff
Fix: No ST constant available
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 2 Mar 2004 17:10:43 +0000 (17:10 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 2 Mar 2004 17:10:43 +0000 (17:10 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2885 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/cbm510/crt0.s
libsrc/cbm610/crt0.s

index 936d67c614f5076c8b0e5a5c6511f5f4ae9a6996..829aed4c7a7d4433dac9ad9a46b66c93679eea7b 100644 (file)
@@ -485,7 +485,7 @@ _exit:  pha                 ; Save the return code on stack
 ; Place the program return code into ST
 
        pla
-       ldy     #ST
+       ldy     #$9C            ; ST
        sta     (sysp0),y
 
 ; Setup the welcome code at the stack bottom in the system bank.
index 12e083d872f02ba3f19b861f11447f64a2f8588f..c6b073bb0cc550d8204ac28e851045357e9929ed 100644 (file)
@@ -392,7 +392,7 @@ _exit:  pha                 ; Save the return code
 ; Place the program return code into ST
 
        pla
-       ldy     #ST
+       ldy     #$9C            ; ST
        sta     (sysp0),y
 
 ; Setup the welcome code at the stack bottom in the system bank.