mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-12-21 03:29:30 +00:00
12 lines
220 B
NASM
12 lines
220 B
NASM
; Screen(0) = White
|
|
lda #$01 ; a = White
|
|
sta $200 ; Screen(0) = a
|
|
|
|
; Screen(1) = Green
|
|
lda #$05 ; a = Green
|
|
sta $201 ; Screen(1) = a
|
|
|
|
; Screen(2) = Orange
|
|
lda #$08 ; a = Orange
|
|
sta $202 ; Screen(2) = a
|