mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 00:40:56 +11:00
17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
: KEY
|
|
( inc then fetch )
|
|
ACIAR> @ 1+ DUP ACIA) @ = IF
|
|
DROP ACIA( @
|
|
THEN
|
|
( As long as R> == W>-1, it means that buffer is empty )
|
|
BEGIN DUP ACIAW> @ = NOT UNTIL
|
|
ACIAR> !
|
|
ACIAR> @ C@
|
|
;
|
|
: EMIT
|
|
( As long at CTL bit 1 is low, we are transmitting. wait )
|
|
BEGIN ACIA_CTL PC@ 0x02 AND UNTIL
|
|
( The way is clear, go! )
|
|
ACIA_IO PC!
|
|
;
|