6502-opcodes/data/print-three-lower.asm

12 lines
135 B
NASM
Raw Normal View History

2022-12-06 20:22:37 +00:00
; Screen(0) = White
2022-12-06 18:53:02 +00:00
lda #$01
2022-12-06 20:22:37 +00:00
sta $200
2022-12-06 18:43:48 +00:00
2022-12-06 20:22:37 +00:00
; Screen(1) = Green
2022-12-06 19:30:35 +00:00
lda #$05
2022-12-06 20:22:37 +00:00
sta $201
2022-12-06 18:43:48 +00:00
2022-12-06 20:22:37 +00:00
; Screen(2) = Orange
2022-12-06 19:30:35 +00:00
lda #$08
2022-12-06 20:22:37 +00:00
sta $202