|
|
|
|
|
by cess11
729 days ago
|
|
I think jonesforth is the most popular implementation teaching implementation: https://github.com/nornagon/jonesforth/blob/master/jonesfort... Factor might be a counterexample if one considers it a Forth, the VM is in part implemented in C++: https://github.com/factor/factor I think it's portability and ease of development rather than CPU architecture complexity that makes someone pick C/C++ over assembly when implementing a Forth system. Because the Forth won't need much of the assembly language or obscure CPU instructions, the complexity of the architecture won't really matter to whoever is implementing it. |
|