diff --git a/homebrew-tutorial/main.asm b/homebrew-tutorial/main.asm index 581a7d6..f3b680d 100644 --- a/homebrew-tutorial/main.asm +++ b/homebrew-tutorial/main.asm @@ -13,12 +13,12 @@ start: ; Set up the color palette stz CGADD - ; Set color zero to red + ; Set color zero to some color ; $001f = %0000000000011111 ; bbbbbgggggrrrrr - lda #$1f + lda #$ff sta CGDATA - lda #$00 + lda #$03 sta CGDATA lda #$0f