dos33fsprogs/games/peasant/clear_bottom.s

33 lines
439 B
ArmAsm
Raw Normal View History

clear_bottom:
; draw rectangle
lda #$00 ; color is black1
sta VGI_RCOLOR
lda #0
sta VGI_RX1
2021-09-11 03:18:21 +00:00
cb_smc1:
lda #183
sta VGI_RY1
lda #140
sta VGI_RXRUN
lda #9
sta VGI_RYRUN
jsr vgi_simple_rectangle
lda #140
sta VGI_RX1
2021-09-11 03:18:21 +00:00
cb_smc2:
lda #183
sta VGI_RY1
lda #140
sta VGI_RXRUN
lda #9
sta VGI_RYRUN
jsr vgi_simple_rectangle
rts