FORTH and Threaded Interpretive Languages

first previous next last


Max-Gerd Retzlaff, 5. July 2008

https://entropia.de/GPN7

Jonesforth by Richard W. M. Jones

DIRECT THREADED CODE ---------------------------------------------------------------- f () f: { CALL a E8 08 00 00 00 a (); CALL b E8 1C 00 00 00 b (); CALL c E8 2C 00 00 00 c (); ; ignore the return from } ; the function for now 2