From 33bd61d62adf1979045812df05ecbdedab3c96e2 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Wed, 15 Jun 2022 11:08:30 -0700 Subject: [PATCH] Use tile 1 for entire background --- homebrew-tutorial/main.asm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/homebrew-tutorial/main.asm b/homebrew-tutorial/main.asm index b8977ee..2fa0637 100644 --- a/homebrew-tutorial/main.asm +++ b/homebrew-tutorial/main.asm @@ -69,7 +69,8 @@ start: ldx #(VRAM_BG1) @loop: stx VMADDL - stz VMDATAL + lda #$01 + sta VMDATAL stz VMDATAH inx cpx #(VRAM_BG1 + 32 * 29) @@ -89,8 +90,6 @@ start: sta TM - - lda #$0f sta INIDISP