]> git.sur5r.net Git - cc65/commitdiff
Removed old code to set the flags
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 21 Sep 2001 20:35:40 +0000 (20:35 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 21 Sep 2001 20:35:40 +0000 (20:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@963 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/runtime/ldaxsp.s

index b72e237c51e7e972af29544e4d4179fcab344eb5..0f1a2c8d30e17ac4dde4dfbc7a39cb7265c182e0 100644 (file)
@@ -14,15 +14,7 @@ ldax0sp:
 ldaxysp:
        lda     (sp),y          ; get high byte
        tax                     ; and save it
-               bne     L1              ; Try to generate FAST code
        dey                     ; point to lo byte
        lda     (sp),y          ; load low byte
        rts
 
-L1:    php                     ; Save Z flag
-       dey
-       lda     (sp),y
-       plp
-       rts
-
-