lovelbyte: rs: 121 bytes

This commit is contained in:
Vince Weaver 2024-02-04 23:06:19 -05:00
parent 23d75504ee
commit 082e7d0118
1 changed files with 8 additions and 8 deletions

View File

@ -65,7 +65,7 @@ rainbow_yloop:
adc T_L
sta YY_TL
lda YY_TH
adc T_H
adc #$A0 ; T_H
sta YY_TH
; reset XX to 0
@ -92,7 +92,7 @@ rainbow_xloop:
adc T_L
sta XX_TL
lda XX_TH
adc T_H
adc #$A0 ; T_H
sta XX_TH
@ -163,13 +163,10 @@ white:
jsr HGR2
; A/Y=0
jmp rainbow_outer ; what can we branch on?
beq rainbow_outer ; what can we branch on?
really_done:
lda #200
jsr WAIT
bit PAGE1
lda #200
@ -177,10 +174,13 @@ really_done:
bit PAGE2
jmp really_done
lda #200
jsr WAIT
beq really_done ; bra
T_L: .byte $A0
T_H: .byte $A0