From 05cb38bd84369921f774d540a52e4f100dd7ac4b Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Fri, 21 Mar 2025 06:27:42 -0600 Subject: [PATCH] load pallets loop. --- main.s | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/main.s b/main.s index 09aec21..680b183 100644 --- a/main.s +++ b/main.s @@ -16,6 +16,9 @@ .segment "CODE" +bg_pallets: + .byte 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 + check: cmp #5 bcc skip @@ -25,42 +28,16 @@ skip: rts reset: + ldx #15 lda #$3F sta $2006 lda #$00 sta $2006 - 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 - lda #0 - sta $2007 - lda #1 - sta $2007 - lda #2 - sta $2007 - lda #3 +loop: + lda bg_pallets, x sta $2007 + dex + bpl loop lda #173 sta $00 lda #0