1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/telestrat/cgetc.s

29 lines
993 B
ArmAsm
Raw Normal View History

2017-10-01 21:23:03 +00:00
;
; jede jede@oric.org 2017-10-01
;
.export _cgetc
2017-10-08 16:11:09 +00:00
.import cursor
2017-10-01 21:23:03 +00:00
.include "telestrat.inc"
.proc _cgetc
2017-10-08 16:14:26 +00:00
; this routine could be quicker if we wrote in page 2 variables,
; but it's better to use telemon routine in that case, because telemon can manage 4 I/O
2017-10-16 16:15:53 +00:00
ldx cursor ; if cursor equal to 0, then switch off cursor
2017-10-08 16:11:09 +00:00
beq switchoff_cursor
ldx #$00 ; x is the first screen
BRK_TELEMON(XCSSCR) ; display cursor
2017-10-08 16:14:26 +00:00
jmp loop ; could be replaced by a bne/beq but 'jmp' is cleaner than a bne/beq which could expect some matters
2017-10-08 16:11:09 +00:00
switchoff_cursor:
2017-10-16 16:15:53 +00:00
; at this step X is equal to $00, X must be set, because it's the id of the screen (telestrat can handle 4 virtuals screen)
2017-10-08 16:11:09 +00:00
BRK_TELEMON(XCOSCR) ; switch off cursor
2017-10-01 21:23:03 +00:00
loop:
2017-10-08 16:14:26 +00:00
BRK_TELEMON XRD0 ; waits until key is pressed
2017-10-02 10:20:52 +00:00
bcs loop
2017-10-01 21:23:03 +00:00
rts
.endproc