mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-03-06 03:29:46 +00:00
lovelbyte: rs: 121 bytes
This commit is contained in:
parent
23d75504ee
commit
082e7d0118
@ -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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user