1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-05 09:28:54 +00:00
millfork/include/coco/keyboard.mfk

9 lines
97 B
Plaintext
Raw Normal View History

2020-07-30 23:58:40 +00:00
noinline asm byte readkey() {
2020-07-31 11:29:13 +00:00
clr $6f
2020-07-30 23:58:40 +00:00
jsr [$A000]
2020-07-31 11:29:13 +00:00
beq readkey
tfr a,b
2020-07-30 23:58:40 +00:00
rts
}