;
.export _cgetc
- .constructor cursoroff
- .destructor cursoron
+ .constructor initcgetc
.import cursor
.include "atmos.inc"
lda cursor ; Cursor currently off?
beq @L1 ; Skip if so
- jsr cursoron
+ lda STATUS
+ ora #%00000001 ; Cursor ON
+ sta STATUS
@L1: lda KEYBUF
bpl @L1
; If the cursor was enabled, disable it now
ldx cursor
- beq @L3
+ beq @L2
+ ldx #$00 ; Zero high byte
dec STATUS ; Clear bit zero
; We have the character, clear avail flag
; Done
-@L3: ldx #$00
rts
.endproc
; ------------------------------------------------------------------------
-; Switch the cursor on
-
-cursoron:
- lda STATUS
- ora #%00000001
- sta STATUS
- rts
-
-; ------------------------------------------------------------------------
-; Switch the cursor off
+; Switch the cursor off, disable capslock
-cursoroff:
+initcgetc:
lda STATUS
and #%11111110
sta STATUS
+ lda #$7F
+ sta CAPSLOCK
rts