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

THE INTERPRETER AND RETURN STACK ---------------------------------------------------- (2) What goes in the codeword for the words which are written in FORTH? DOCOL -- the FORTH interpreter function .text .align 4 DOCOL: PUSHRSP %esi // push %esi on to the return stack addl $4,%eax // %eax points to codeword, so make movl %eax,%esi // %esi point to first data word NEXT In jonesforth DOCOL has address 0. 16