From 890a181ae506a3ca4d1fc138e56d793c102d880e Mon Sep 17 00:00:00 2001 From: Karri Kaksonen Date: Tue, 19 Apr 2022 10:32:22 +0300 Subject: [PATCH] Add color setup --- libsrc/atari7800/mono_conio.s | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libsrc/atari7800/mono_conio.s b/libsrc/atari7800/mono_conio.s index c51d7ff59..63849aea7 100644 --- a/libsrc/atari7800/mono_conio.s +++ b/libsrc/atari7800/mono_conio.s @@ -219,8 +219,12 @@ vblankoff: sta BKGRND sta CURS_X sta CURS_Y - lda #$0f ; White + lda #$33 ; Red sta P0C1 + lda #$c8 ; Green + sta P0C2 + lda #$0f ; White + sta P0C3 rts .endproc