mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +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:
@@ -17,12 +17,11 @@ _bgcolor:
|
|||||||
cmp #8
|
cmp #8
|
||||||
bcs bright
|
bcs bright
|
||||||
lda #$0e
|
lda #$0e
|
||||||
sta COLOR1
|
.byte $2c ; bit opcode, eats the next 2 bytes
|
||||||
txa
|
|
||||||
rts
|
|
||||||
bright: lda #0
|
bright: lda #0
|
||||||
sta COLOR1
|
sta COLOR1
|
||||||
txa
|
txa
|
||||||
|
ldx #0 ; fix X
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
@@ -30,5 +29,6 @@ _bordercolor:
|
|||||||
ldx COLOR4 ; get old value
|
ldx COLOR4 ; get old value
|
||||||
sta COLOR4 ; set new value
|
sta COLOR4 ; set new value
|
||||||
txa
|
txa
|
||||||
|
ldx #0 ; fix X
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user