2019-04-04 23:26:34 +00:00
|
|
|
;
|
2019-04-10 20:15:27 +00:00
|
|
|
; Greg King, 10-Apr-2019
|
2019-04-04 23:26:34 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
.export _bgcolor
|
|
|
|
|
|
|
|
.include "atari5200.inc"
|
|
|
|
|
2019-04-10 20:15:27 +00:00
|
|
|
.data
|
2019-04-04 23:26:34 +00:00
|
|
|
|
2019-04-10 20:15:27 +00:00
|
|
|
old_bg_index:
|
|
|
|
.byte COLOR_BLACK ; see conioscreen.s for default palette
|
2019-04-04 23:26:34 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
_bgcolor:
|
2019-04-10 20:15:27 +00:00
|
|
|
and #$03
|
2019-04-04 23:26:34 +00:00
|
|
|
tax
|
2019-04-10 20:15:27 +00:00
|
|
|
ldy COLOR0,x
|
|
|
|
lda old_bg_index
|
|
|
|
sty COLOR4 ; set new value
|
|
|
|
stx old_bg_index
|
|
|
|
ldx #0 ; fix high byte
|
2019-04-04 23:26:34 +00:00
|
|
|
rts
|
|
|
|
|
2019-04-10 20:15:27 +00:00
|
|
|
.end
|