collapseos/apps/forth
Virgil Dupras 7befe56597 forth: improve input flow
Readline, instead of being triggered by the end of execution of the last
compiled line is now triggered "just in time", by "WORD".

This allows IMMEDIATE words reading input buffer to span multiple lines
( comments for example, but colon definitions will soon follow ).
2020-03-14 19:10:39 -04:00
..
README.md apps/forth: new (WIP) application 2020-03-07 12:13:15 -05:00
core.fth forth: improve input flow 2020-03-14 19:10:39 -04:00
dict.asm forth: improve input flow 2020-03-14 19:10:39 -04:00
dictionary.txt forth: improve input flow 2020-03-14 19:10:39 -04:00
glue.asm forth: add number literals support 2020-03-07 19:25:55 -05:00
main.asm forth: improve input flow 2020-03-14 19:10:39 -04:00
stack.asm forth: Forth-ify RECURSE 2020-03-13 16:40:55 -04:00
util.asm forth: improve input flow 2020-03-14 19:10:39 -04:00

README.md

Forth

WIP A Forth interpreter. Far from complete, but you can do stuff like

KEY EMIT KEY EMIT

See dictionary.txt for a word reference.