mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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:
parent
004adaaac2
commit
6fda5c6ef7
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user