From f507432fefd877f2a55167d33fb8e4736d585d0f Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sat, 2 Dec 2017 09:56:13 -0800 Subject: [PATCH] Document SSC command register usage --- cricket.system.s | 2 +- prodos.mod.s | 2 +- test.s | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cricket.system.s b/cricket.system.s index c167325..f141b7a 100644 --- a/cricket.system.s +++ b/cricket.system.s @@ -182,7 +182,7 @@ init_ssc: sta saved_control ;; Configure SSC - lda #%00001011 + lda #%00001011 ; no parity/echo/interrupts, RTS low, DTR low sta COMMAND lda #%10011110 ; 9600 baud, 8 data bits, 2 stop bits sta CONTROL diff --git a/prodos.mod.s b/prodos.mod.s index 90b7e81..28f8374 100644 --- a/prodos.mod.s +++ b/prodos.mod.s @@ -43,7 +43,7 @@ loop: lda driver,y pha ;; Configure SSC - lda #%00001011 + lda #%00001011 ; no parity/echo/interrupts, RTS low, DTR low sta COMMAND lda #%10011110 ; 9600 baud, 8 data bits, 2 stop bits sta CONTROL diff --git a/test.s b/test.s index 985ed0b..71f4085 100644 --- a/test.s +++ b/test.s @@ -43,7 +43,7 @@ init_ssc: sta saved_control ;; Configure SSC - lda #%00001011 + lda #%00001011 ; no parity/echo/interrupts, RTS low, DTR low sta COMMAND lda #%10011110 ; 9600 baud, 8 data bits, 2 stop bits sta CONTROL