1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Fixed an error in cbm_k_save (on which cbm_save is based): The X register was

not cleared on return.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4048 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-08-23 21:38:11 +00:00
parent 8fa42540c1
commit 4c4071b34a

View File

@ -8,7 +8,7 @@
.import SAVE
.import popax
.importzp ptr1, tmp1
_cbm_k_save:
sta tmp1 ; store end address
@ -20,6 +20,7 @@ _cbm_k_save:
ldx tmp1
ldy tmp1+1
jsr SAVE
ldx #0 ; Clear high byte
bcs @NotOk
lda #0
txa
@NotOk: rts