|
|
|
|
|
by dreamcompiler
3479 days ago
|
|
Some Forths compile to native machine instructions and no VM is involved. Sometimes they compile a list of threaded jump addresses with an "interpreter" that's basically just two instructions: JSR [nextaddress++]; LOOP. Sometimes they just compile literal sequences of JSR instructions and there's no interpreter at all. |
|
Do you have a resources regarding these? I would love to learn more about this.