1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 21:48:45 +10:00
collapseos/emul/forth/run.fs

16 lines
185 B
Forth
Raw Normal View History

2020-04-14 23:05:43 +10:00
: EFS@
256 /MOD 3 PC! 3 PC!
1024 0 DO
3 PC@
BLK( I + C!
LOOP
;
: INIT
CURRENT @ HERE !
BLK$
['] EFS@ BLK@* !
RDLN$
Z80A$
INTERPRET
;