mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +00:00
style issues
This commit is contained in:
@@ -14,18 +14,18 @@
|
|||||||
|
|
||||||
soft80_cgetc:
|
soft80_cgetc:
|
||||||
lda KEY_COUNT ; Get number of characters
|
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
|
sec
|
||||||
jsr invertcursor ; set cursor on or off accordingly
|
jsr invertcursor ; set cursor on or off accordingly
|
||||||
|
|
||||||
L1: lda KEY_COUNT ; wait for key
|
@L1: lda KEY_COUNT ; wait for key
|
||||||
beq L1
|
beq @L1
|
||||||
|
|
||||||
clc
|
clc
|
||||||
jsr invertcursor ; set cursor on or off accordingly
|
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
|
ldx #0
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user