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