1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-11 14:29:11 +00:00
cc65/libsrc/telemon30/keyboard.s
2016-12-14 21:22:10 +01:00

14 lines
183 B
ArmAsm

.export _key
.importzp sp,tmp2,tmp3,tmp1
.include "telemon30.inc"
; char key(void);
.proc _key
BRK_TELEMON XRDW0 ; read keyboard
rts
.endproc