1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-25 22:18:27 +00:00

decspX will no longer save a

git-svn-id: svn://svn.cc65.org/cc65/trunk@662 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-03-24 15:57:32 +00:00
parent c18453ebcb
commit 0bac28d96f
2 changed files with 20 additions and 16 deletions
+10 -6
View File
@@ -18,18 +18,22 @@ _strdup:
; Since we need some place to store the intermediate results, allocate a
; stack frame. To make this somewhat more efficient, create the stackframe
; as needed for the final call to the memcpy function.
pha ; decsp will destroy A (but not X)
jsr decsp4 ; Target/source
; Store the pointer into the source slot
ldy #0
sta (sp),y
iny
pha
ldy #1
txa
sta (sp),y
pla
pla
.ifpc02
sta (sp)
.else
dey
sta (sp),y
.endif
; Get length of S (which is still in a/x)