1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00

fix returned X register value (patch by Stefan Haubenthal)

git-svn-id: svn://svn.cc65.org/cc65/trunk@2612 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2003-11-05 16:41:11 +00:00
parent 004adaaac2
commit 6fda5c6ef7

View File

@ -17,12 +17,11 @@ _bgcolor:
cmp #8
bcs bright
lda #$0e
sta COLOR1
txa
rts
.byte $2c ; bit opcode, eats the next 2 bytes
bright: lda #0
sta COLOR1
txa
ldx #0 ; fix X
rts
@ -30,5 +29,6 @@ _bordercolor:
ldx COLOR4 ; get old value
sta COLOR4 ; set new value
txa
ldx #0 ; fix X
rts