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