mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
55 lines
1.1 KiB
ArmAsm
55 lines
1.1 KiB
ArmAsm
;
|
|
; 2003-04-13, Ullrich von Bassewitz
|
|
; 2014-09-04, Greg King
|
|
;
|
|
; char cgetc (void);
|
|
;
|
|
|
|
.export _cgetc
|
|
|
|
.import cursor
|
|
.forceimport disable_caps
|
|
|
|
.include "atmos.inc"
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
;
|
|
|
|
.proc _cgetc
|
|
|
|
lda KEYBUF ; Do we have a character?
|
|
bmi @L2 ; Yes: Get it
|
|
|
|
; No character, enable cursor and wait
|
|
|
|
lda cursor ; Should cursor be off?
|
|
beq @L1 ; Skip if so
|
|
lsr STATUS
|
|
sec ; Cursor ON
|
|
rol STATUS
|
|
@L1: lda KEYBUF
|
|
bpl @L1
|
|
|
|
; If the cursor was enabled, disable it now
|
|
|
|
ldx cursor
|
|
beq @L2
|
|
dec STATUS ; Clear bit zero
|
|
|
|
; We have the character, clear the "available" flag
|
|
|
|
@L2: and #$7F ; Mask out avail flag
|
|
sta KEYBUF
|
|
ldx #>$0000
|
|
ldy MODEKEY
|
|
cpy #FUNCTKEY
|
|
bne @L3
|
|
ora #$80 ; FUNCT-key pressed
|
|
|
|
; Done
|
|
|
|
@L3: rts
|
|
|
|
.endproc
|