mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:40:54 +11:00
10 lines
119 B
Forth
10 lines
119 B
Forth
: (c<) KEY DUP EMIT ;
|
|
: INIT
|
|
ACIA$
|
|
." Collapse OS" CR LF
|
|
( 0c == CINPTR )
|
|
['] (c<) 0x0c RAM+ !
|
|
;
|
|
INIT
|
|
|