From cd7abdb58df76a5bde864c435207a7e20a29666e Mon Sep 17 00:00:00 2001 From: jede Date: Sun, 24 May 2020 22:52:31 +0200 Subject: [PATCH] Fix typo --- libsrc/telestrat/joy/telestrat-joy.s | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libsrc/telestrat/joy/telestrat-joy.s b/libsrc/telestrat/joy/telestrat-joy.s index 827e44a3f..1d1261ea7 100644 --- a/libsrc/telestrat/joy/telestrat-joy.s +++ b/libsrc/telestrat/joy/telestrat-joy.s @@ -53,7 +53,7 @@ INSTALL: sta VIA2::DDRB sta VIA2::PRB ; We could detect joysticks because with previous command bit0,1,2,3,4 should be set to 1 after - ; But if some one press fire or press direction, we could reach others values which could break Joystick détection. + ; But if some one press fire or press direction, we could reach others values which could break joystick detection. lda #JOY_ERR_OK ; rts ; Run into UNINSTALL instead @@ -84,9 +84,9 @@ COUNT: ; When PB7 and PB6 are high, it controls two CA3083 (2 NPN transistors array) bases. ; In that case, PB0 to PB4 are set to high (it means no action are pressed) ; When the user press something then bit will be set to 0. -; bit 0 is right -; bit 1 is left -; bit 2 is fire +; Bit 0 is right +; Bit 1 is left +; Bit 2 is fire ; ... READ: @@ -97,6 +97,7 @@ READ: ; then read lda VIA2::PRB eor #%10011111 + rts right: lda #%01000000