load pallets loop.

This commit is contained in:
Samuel Walker 2025-03-21 06:27:42 -06:00
parent a3c83453ff
commit 05cb38bd84
Signed by: piwalker
GPG Key ID: 616B1928705EA4C9

39
main.s
View File

@ -16,6 +16,9 @@
.segment "CODE" .segment "CODE"
bg_pallets:
.byte 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
check: check:
cmp #5 cmp #5
bcc skip bcc skip
@ -25,42 +28,16 @@ skip:
rts rts
reset: reset:
ldx #15
lda #$3F lda #$3F
sta $2006 sta $2006
lda #$00 lda #$00
sta $2006 sta $2006
lda #0 loop:
sta $2007 lda bg_pallets, x
lda #1
sta $2007
lda #2
sta $2007
lda #3
sta $2007
lda #0
sta $2007
lda #1
sta $2007
lda #2
sta $2007
lda #3
sta $2007
lda #0
sta $2007
lda #1
sta $2007
lda #2
sta $2007
lda #3
sta $2007
lda #0
sta $2007
lda #1
sta $2007
lda #2
sta $2007
lda #3
sta $2007 sta $2007
dex
bpl loop
lda #173 lda #173
sta $00 sta $00
lda #0 lda #0