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

telestrat : cgetc add for conio

This commit is contained in:
jede 2017-10-01 23:23:03 +02:00
parent 95a88a787d
commit a1c8860f63

15
libsrc/telestrat/cgetc.s Normal file
View File

@ -0,0 +1,15 @@
;
; jede jede@oric.org 2017-10-01
;
.export _cgetc
.include "telestrat.inc"
.proc _cgetc
loop:
BRK_TELEMON XRD0
bcc key_pressed
jmp loop
key_pressed:
rts
.endproc