1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-21 18:40:19 +10:00
collapseos/emul/forth/emul.fs
2020-03-26 12:12:11 -04:00

18 lines
211 B
Forth

( Implementation fo KEY and EMIT in the emulator
stdio port is 0
)
CODE (emit)
HL POPqq,
chkPS,
A L LDrr,
0 OUTnA,
;CODE
CODE KEY
0 INAn,
H 0 LDrn,
L A LDrr,
HL PUSHqq,
;CODE