]> git.sur5r.net Git - cc65/commitdiff
The 65C02 code didn't work
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 23 Apr 2005 14:12:19 +0000 (14:12 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 23 Apr 2005 14:12:19 +0000 (14:12 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3488 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/putenv.s

index 9584348f679723daef5613a430239580a7d52cb5..219b59dd1e39b8ff0924694abbf19e96595e3651 100644 (file)
@@ -15,8 +15,6 @@
 
         .include "errno.inc"
 
-       .macpack cpu
-
 .code
 
 ;----------------------------------------------------------------------------
 
 ; Remember the offset of the equal sign and replace it by a zero.
 
-.if (.cpu .bitand ::CPU_ISET_65SC02)
-       phy
-       stz     (ptr1),y
-.else
         sty     tmp1
         lda     #$00
         sta     (ptr1),y
-.endif
 
 ; Search for the string in the environment. searchenv will set the N flag if
 ; the string is not found, otherwise X contains the index of the entry, ptr2
 
 ; Before doing anything else, restore the old environment string.
 
-.if (.cpu .bitand ::CPU_ISET_65SC02)
-       ply
-.else
         ldy     tmp1
-.endif
         lda     #'='
         sta     (ptr1),y