From 57a43b673587fe25b9ca741e9247c5da8d7af8a1 Mon Sep 17 00:00:00 2001 From: mrdudz Date: Mon, 12 Oct 2015 20:38:06 +0200 Subject: [PATCH] style issues --- libsrc/c64/soft80_cgetc.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libsrc/c64/soft80_cgetc.s b/libsrc/c64/soft80_cgetc.s index 849af753a..ba16614af 100644 --- a/libsrc/c64/soft80_cgetc.s +++ b/libsrc/c64/soft80_cgetc.s @@ -14,18 +14,18 @@ soft80_cgetc: lda KEY_COUNT ; Get number of characters - bne L3 ; Jump if there are already chars waiting + bne @L3 ; Jump if there are already chars waiting sec jsr invertcursor ; set cursor on or off accordingly -L1: lda KEY_COUNT ; wait for key - beq L1 +@L1: lda KEY_COUNT ; wait for key + beq @L1 clc jsr invertcursor ; set cursor on or off accordingly -L3: jsr KBDREAD ; Read char and return in A +@L3: jsr KBDREAD ; Read char and return in A ldx #0 rts -- 2.39.5