A Sometimes Minimal FORTH Compiler and Tutorial For Linux
A Sometimes Minimal FORTH Compiler and Tutorial For Linux
FORTH is one of those alien languages which most working programmers regard
in the same
way as Haskell, LISP, and so on. Something so strange that they'd rather
any thoughts
of it just go away so they can get on with writing this paying code. But
that's wrong
and if you care at all about programming then you should at least understand
all these
languages, even if you will never use them.
LISP is the ultimate high-level language, and features from LISP are being
added every
decade to the more common languages. But FORTH is in some ways the ultimate
in low level
programming. Out of the box it lacks features like dynamic memory
management and even
strings. In fact, at its primitive level it lacks even basic concepts like
IF-statements
and loops.
Why then would you want to learn FORTH? There are several very good
reasons. First
and foremost, FORTH is minimal. You really can write a complete FORTH in,
say, 2000
lines of code. I don't just mean a FORTH program, I mean a complete FORTH
operating
system, environment and language. You could boot such a FORTH on a bare PC
and it would
come up with a prompt where you could start doing useful work. The FORTH
you have here
isn't minimal and uses a Linux process as its 'base PC' (both for the
purposes of making
it a good tutorial). It's possible to completely understand the system. Who
can say they
completely understand how Linux works, or gcc?
This tutorial isn't about learning FORTH as the language. I'll point you to
some references
you should read if you're not familiar with using FORTH. This tutorial is
about how to
write FORTH. In fact, until you understand how FORTH is written, you'll
have only a very
superficial understanding of how to use it.
So if you're not familiar with FORTH or want to refresh your memory here are
some online
references to read:
http://en.wikipedia.org/wiki/Forth_%28programming_language%29
http://galileo.phys.virginia.edu/classes/551.jvn.fall01/primer.htm
http://wiki.laptop.org/go/Forth_Lessons
http://www.albany.net/~hello/simple.htm
ACKNOWLEDGEMENTS
----------------------------------------------------------------------
Some parts of this FORTH are also based on this IOCCC entry from 1992:
http://ftp.funet.fi/pub/doc/IOCCC/1992/buzzard.2.design.
I was very proud when Sean Barrett, the original author of the IOCCC entry,
commented in the LtU thread
http://lambda-the-ultimate.org/node/2452#comment-36818 about this FORTH.
PUBLIC DOMAIN
----------------------------------------------------------------------
I, the copyright holder of this work, hereby release it into the public
domain. This applies worldwide.
In case this is not legally possible, I grant any entity the right to use
this work for any purpose,
without any conditions, unless such conditions are required by law.
SETTING UP
----------------------------------------------------------------------
Let's get a few housekeeping things out of the way. Firstly because I need
to draw lots of
ASCII-art diagrams to explain concepts, the best way to look at this is
using a window which
uses a fixed width font and is at least this wide:
<--------------------------------------------------------------------------------
---------------------------------------->
Secondly make sure TABS are set to 8 characters. The following should be a
vertical
line. If not, sort out your tabs.
|
|
|
ASSEMBLING
----------------------------------------------------------------------
If you want to actually run this FORTH, rather than just read it, you will
need Linux on an
i386. Linux because instead of programming directly to the hardware on a
bare PC which I
could have done, I went for a simpler tutorial by assuming that the
'hardware' is a Linux
process with a few basic system calls (read, write and exit and that's about
all). i386
is needed because I had to write the assembly for a processor, and i386 is
by far the most
common. (Of course when I say 'i386', any 32- or 64-bit x86 processor will
do. I'm compiling
this on a 64 bit AMD Opteron).
Again, to assemble this you will need gcc and gas (the GNU assembler). The
commands to
assemble and run the code (save this file as 'jonesforth.S') are:
If you want to run your own FORTH programs you can do:
If you want to load your own FORTH code and then continue reading user
commands, you can do:
ASSEMBLER
----------------------------------------------------------------------
(You can just skip to the next section -- you don't need to be able to read
assembler to
follow this tutorial).
However if you do want to read the assembly code here are a few notes about
gas (the GNU assembler):
(1) Register names are prefixed with '%', so %eax is the 32 bit i386
accumulator. The registers
available on i386 are: %eax, %ebx, %ecx, %edx, %esi, %edi, %ebp and
%esp, and most of them
have special purposes.
(2) Add, mov, etc. take arguments in the form SRC,DEST. So mov %eax,%ecx
moves %eax -> %ecx
(3) Constants are prefixed with '$', and you mustn't forget it! If you
forget it then it
causes a read from memory instead, so:
mov $2,%eax moves number 2 into %eax
mov 2,%eax reads the 32 bit word from address 2 into %eax (ie.
most likely a mistake)
(4) gas has a funky syntax for local labels, where '1f' (etc.) means label
'1:' "forwards"
and '1b' (etc.) means label '1:' "backwards". Notice that these labels
might be mistaken
for hex numbers (eg. you might confuse 1b with $0x1b).
(5) 'ja' is "jump if above", 'jb' for "jump if below", 'je' "jump if equal"
etc.
(6) gas has a reasonably nice .macro syntax, and I use them a lot to make
the code shorter and
less repetitive.
For more help reading the assembler, do "info gas" at the Linux prompt.
THE DICTIONARY
----------------------------------------------------------------------
In FORTH as you will know, functions are called "words", and just as in
other languages they
have a name and a definition. Here are two FORTH words:
Words, both built-in ones and ones which the programmer defines later, are
stored in a dictionary
which is just a linked list of dictionary entries.
I'll come to the definition of the word later. For now just look at the
header. The first
4 bytes are the link pointer. This points back to the previous word in the
dictionary, or, for
the first word in the dictionary it is just a NULL pointer. Then comes a
length/flags byte.
The length of the word can be up to 31 characters (5 bits used) and the top
three bits are used
for various flags which I'll come to later. This is followed by the name
itself, and in this
implementation the name is rounded up to a multiple of 4 bytes by padding it
with zero bytes.
That's just to ensure that the definition starts on a 32 bit boundary.
You should be able to see from this how you might implement functions to
find a word in
the dictionary (just walk along the dictionary entries starting at LATEST
and matching
the names until you either find a match or hit the NULL pointer at the end
of the dictionary);
and add a word to the dictionary (create a new definition, set its LINK to
LATEST, and set
LATEST to point to the new word). We'll see precisely these functions
implemented in
assembly code later on.
One interesting consequence of using a linked list is that you can redefine
words, and
a newer definition of a word overrides an older one. This is an important
concept in
FORTH because it means that any word (even "built-in" or "standard" words)
can be
overridden with a new definition, either to enhance it, to make it faster or
even to
disable it. However because of the way that FORTH words get compiled, which
you'll
understand below, words defined using the old definition of a word continue
to use
the old definition. Only words defined after the new definition use the new
definition.
Now we'll get to the really crucial bit in understanding FORTH, so go and
get a cup of tea
or coffee and settle down. It's fair to say that if you don't understand
this section, then you
won't "get" how FORTH works, and that would be a failure on my part for not
explaining it well.
So if after reading this section a few times you don't understand it, please
email me
([email protected]).
Let's talk first about what "threaded code" means. Imagine a peculiar
version of C where
you are only allowed to call functions without arguments. (Don't worry for
now that such a
language would be completely useless!) So in our peculiar C, code would
look like this:
f ()
{
a ();
b ();
c ();
}
and so on. How would a function, say 'f' above, be compiled by a standard C
compiler?
Probably into assembly code like this. On the right hand side I've written
the actual
i386 machine code.
f:
CALL a E8 08 00 00 00
CALL b E8 1C 00 00 00
CALL c E8 2C 00 00 00
; ignore the return from the function for now
"E8" is the x86 machine code to "CALL" a function. In the first 20 years of
computing
memory was hideously expensive and we might have worried about the wasted
space being used
by the repeated "E8" bytes. We can save 20% in code size (and therefore, in
expensive memory)
by compressing this into just:
On a 16-bit machine like the ones which originally ran FORTH the savings are
even greater - 33%.
[Historical note: If the execution model that FORTH uses looks strange from
the following
paragraphs, then it was motivated entirely by the need to save memory on
early computers.
This code compression isn't so important now when our machines have more
memory in their L1
caches than those early computers had in total, but the execution model
still has some
useful properties].
Of course this code won't run directly on the CPU any more. Instead we need
to write an
interpreter which takes each set of bytes and calls it.
On an i386 machine it turns out that we can write this interpreter rather
easily, in just
two assembly instructions which turn into just 3 bytes of machine code.
Let's store the
pointer to the next word to execute in the %esi register:
08 00 00 00 <- We're executing this one now. %esi is the _next_ one to
execute.
%esi -> 1C 00 00 00
2C 00 00 00
The all-important i386 instruction is called LODSL (or in Intel manuals,
LODSW). It does
two things. Firstly it reads the memory at %esi into the accumulator
(%eax). Secondly it
increments %esi by 4 bytes. So after LODSL, the situation now looks like
this:
Now we just need to jump to the address in %eax. This is again just a
single x86 instruction
written JMP *(%eax). And after doing the jump, the situation looks like:
08 00 00 00
1C 00 00 00 <- Now we're executing this subroutine.
%esi -> 2C 00 00 00
And that brings us to our first piece of actual code! Well, it's a macro.
*/
/* NEXT macro. */
.macro NEXT
lodsl
jmp *(%eax)
.endm
To sum up: We compress our function calls down to a list of addresses and
use a somewhat
magical macro to act as a "jump to next function in the list". We also use
one register (%esi)
to act as a kind of instruction pointer, pointing to the next function in
the list.
I'll just give you a hint of what is to come by saying that a FORTH
definition such as:
actually compiles (almost, not precisely but we'll see why in a moment) to a
list of
function addresses for DOUBLE, DOUBLE and a special function called EXIT to
finish off.
At this point, REALLY EAGLE-EYED ASSEMBLY EXPERTS are saying "JONES, YOU'VE
MADE A MISTAKE!".
It turns out that direct threaded code is interesting but only if you want
to just execute
a list of functions written in assembly language. So QUADRUPLE would work
only if DOUBLE
was an assembly language function. In the direct threaded code, QUADRUPLE
would look like:
+------------------+
| addr of DOUBLE --------------------> (assembly code to do the
double)
+------------------+ NEXT
%esi -> | addr of DOUBLE |
+------------------+
The extra indirection is the reason for the brackets in JMP *(%eax).
Let's have a look at how QUADRUPLE and DOUBLE really look in FORTH:
+------------------+
| codeword | : DOUBLE DUP + ;
+------------------+
| addr of DOUBLE ---------------> +------------------+
+------------------+ | codeword |
| addr of DOUBLE | +------------------+
+------------------+ | addr of DUP -------------->
+------------------+
| addr of EXIT | +------------------+ |
codeword -------+
+------------------+ %esi -> | addr of + --------+
+------------------+ |
+------------------+ | | assembly to
<-----+
| addr of EXIT | | | implement
DUP |
+------------------+ | | ..
|
| | .. |
| | NEXT |
| +------------------+
|
+----->
+------------------+
| codeword
-------+
+------------------+
|
| assembly to
<------+
| implement + |
| .. |
| .. |
| NEXT
|
+------------------+
This is the part where you may need an extra cup of tea/coffee/favourite
caffeinated
beverage. What has changed is that I've added an extra pointer to the
beginning of
the definitions. In FORTH this is sometimes called the "codeword". The
codeword is
a pointer to the interpreter to run the function. For primitives written in
assembly language, the "interpreter" just points to the actual assembly code
itself.
They don't need interpreting, they just run.
In words written in FORTH (like QUADRUPLE and DOUBLE), the codeword points
to an interpreter
function.
I'll show you the interpreter function shortly, but let's recall our
indirect
JMP *(%eax) with the "extra" brackets. Take the case where we're executing
DOUBLE
as shown, and DUP has been called. Note that %esi is pointing to the
address of +
(1) reads the address of + into %eax %eax points to the codeword
of +
(2) increments %esi by 4
(3) jumps to the indirect %eax jumps to the address in the
codeword of +,
ie. the assembly code to implement +
+------------------+
| codeword |
+------------------+
| addr of DOUBLE ---------------> +------------------+
+------------------+ | codeword |
| addr of DOUBLE | +------------------+
+------------------+ | addr of DUP -------------->
+------------------+
| addr of EXIT | +------------------+ |
codeword -------+
+------------------+ | addr of + --------+
+------------------+ |
+------------------+ | | assembly to
<-----+
%esi -> | addr of EXIT | | |
implement DUP |
+------------------+ | | ..
|
| | .. |
| | NEXT |
| +------------------+
|
+----->
+------------------+
| codeword
-------+
+------------------+
|
now we're | assembly to
<-----+
executing | implement +
|
this | .. |
function | ..
|
| NEXT
|
+------------------+
So I hope that I've convinced you that NEXT does roughly what you'd expect.
This is
indirect threaded code.
I've glossed over four things. I wonder if you can guess without reading on
what they are?
.
.
.
My list of four things are: (1) What does "EXIT" do? (2) which is related
to (1) is how do
you call into a function, ie. how does %esi start off pointing at part of
QUADRUPLE, but
then point at part of DOUBLE. (3) What goes in the codeword for the words
which are written
in FORTH? (4) How do you compile a function which does anything except call
other functions
ie. a function which contains a number like : DOUBLE 2 * ; ?
Going at these in no particular order, let's talk about issues (3) and (2),
the interpreter
and the return stack.
Words which are defined in FORTH need a codeword which points to a little
bit of code to
give them a "helping hand" in life. They don't need much, but they do need
what is known
as an "interpreter", although it doesn't really "interpret" in the same way
that, say,
Java bytecode used to be interpreted (ie. slowly). This interpreter just
sets up a few
machine registers so that the word can then execute at full speed using the
indirect
threaded model above.
One of the things that needs to happen when QUADRUPLE calls DOUBLE is that
we save the old
%esi ("instruction pointer") and create a new one pointing to the first word
in DOUBLE.
Because we will need to restore the old %esi at the end of DOUBLE (this is,
after all, like
a function call), we will need a stack to store these "return addresses"
(old values of %esi).
As you will have seen in the background documentation, FORTH has two stacks,
an ordinary
stack for parameters, and a return stack which is a bit more mysterious.
But our return
stack is just the stack I talked about in the previous paragraph, used to
save %esi when
calling from a FORTH word into another FORTH word.
In this FORTH, we are using the normal stack pointer (%esp) for the
parameter stack.
We will use the i386's "other" stack pointer (%ebp, usually called the
"frame pointer")
for our return stack.
I've got two macros which just wrap up the details of using %ebp for the
return stack.
You use them as for example "PUSHRSP %eax" (push %eax on the return stack)
or "POPRSP %ebx"
(pop top of return stack into %ebx).
*/
/*
And with that we can now talk about the interpreter.
The "interpreter" (it's not really "interpreting") just needs to push the
old %esi on the
stack and set %esi to the first word in the definition. Remember that we
jumped to the
function using JMP *(%eax)? Well a consequence of that is that conveniently
%eax contains
the address of this codeword, so just by adding 4 to it we get the address
of the first
data word. Finally after setting up %esi, it just does NEXT which causes
that first word
to run.
*/
/*
Just to make this absolutely clear, let's see how DOCOL works when jumping
from QUADRUPLE
into DOUBLE:
QUADRUPLE:
+------------------+
| codeword |
+------------------+ DOUBLE:
| addr of DOUBLE ---------------> +------------------+
+------------------+ %eax -> | addr of DOCOL |
%esi -> | addr of DOUBLE | +------------------+
+------------------+ | addr of DUP |
| addr of EXIT | +------------------+
+------------------+ | etc. |
First, the call to DOUBLE calls DOCOL (the codeword of DOUBLE). DOCOL does
this: It
pushes the old %esi on the return stack. %eax points to the codeword of
DOUBLE, so we
just add 4 on to it to get our new %esi:
QUADRUPLE:
+------------------+
| codeword |
+------------------+ DOUBLE:
| addr of DOUBLE ---------------> +------------------+
top of return +------------------+ %eax -> | addr of DOCOL |
stack points -> | addr of DOUBLE | + 4 = +------------------+
+------------------+ %esi -> | addr of DUP |
| addr of EXIT | +------------------+
+------------------+ | etc. |
Then we do NEXT, and because of the magic of threaded code that increments
%esi again
and calls DUP.
One minor point here. Because DOCOL is the first bit of assembly actually
to be defined
in this file (the others were just macros), and because I usually compile
this code with the
text segment starting at address 0, DOCOL has address 0. So if you are
disassembling the
code and see a word with a codeword of 0, you will immediately know that the
word is
written in FORTH (it's not an assembler primitive) and so uses DOCOL as the
interpreter.
STARTING UP
----------------------------------------------------------------------
Now let's get down to nuts and bolts. When we start the program we need to
set up
a few things like the return stack. But as soon as we can, we want to jump
into FORTH
code (albeit much of the "early" FORTH code will still need to be written as
assembly language primitives).
This is what the set up code does. Does a tiny bit of house-keeping, sets
up the
separate return stack (NB: Linux gives us the ordinary parameter stack
already), then
immediately jumps to a FORTH word called QUIT. Despite its name, QUIT
doesn't quit
anything. It resets some internal state and starts reading and interpreting
commands.
(The reason it is called QUIT is because you can call QUIT from your own
FORTH code
to "quit" your program and go back to interpreting).
*/
.section .rodata
cold_start: // High-level code without a codeword.
.int QUIT
/*
BUILT-IN WORDS
----------------------------------------------------------------------
Remember our dictionary entries (headers)? Let's bring those together with
the codeword
and data words to see how : DOUBLE DUP + ; really looks in memory.
pointer to previous word
^
|
+--|------+---+---+---+---+---+---+---+---+------------+------------
+------------+------------+
| LINK | 6 | D | O | U | B | L | E | 0 | DOCOL | DUP | +
| EXIT |
+---------+---+---+---+---+---+---+---+---+------------+--|---------
+------------+------------+
^ len pad codeword |
| V
LINK in next word points to codeword of DUP
Initially we can't just write ": DOUBLE DUP + ;" (ie. that literal string)
here because we
don't yet have anything to read the string, break it up at spaces, parse
each word, etc. etc.
So instead we will have to define built-in words using the GNU assembler
data constructors
(like .int, .byte, .string, .ascii and so on -- look them up in the gas info
page if you are
unsure of them).
defword "DOUBLE",6,,DOUBLE
.int DUP,PLUS,EXIT
Don't worry too much about the exact implementation details of this macro -
it's complicated!
*/
/*
Similarly I want a way to write words written in assembly language. There
will quite a few
of these to start with because, well, everything has to start in assembly
before there's
enough "infrastructure" to be able to start writing FORTH words, but also I
want to define
some common FORTH words in assembly language for speed, even though I could
write them in FORTH.
Again, for brevity in writing the header I'm going to write an assembler
macro called defcode.
As with defword above, don't worry about the complicated details of the
macro.
*/
/*
Now some easy FORTH primitives. These are written in assembly for speed.
If you understand
i386 assembly language then it is worth reading these. However if you don't
understand assembly
you can skip the details.
*/
defcode "DROP",4,,DROP
pop %eax // drop top of stack
NEXT
defcode "SWAP",4,,SWAP
pop %eax // swap top two elements on stack
pop %ebx
push %eax
push %ebx
NEXT
defcode "DUP",3,,DUP
mov (%esp),%eax // duplicate top of stack
push %eax
NEXT
defcode "OVER",4,,OVER
mov 4(%esp),%eax // get the second element of stack
push %eax // and push it on top
NEXT
defcode "ROT",3,,ROT
pop %eax
pop %ebx
pop %ecx
push %eax
push %ecx
push %ebx
NEXT
defcode "-ROT",4,,NROT
pop %eax
pop %ebx
pop %ecx
push %ebx
push %eax
push %ecx
NEXT
defcode "1+",2,,INCR
incl (%esp) // increment top of stack
NEXT
defcode "1-",2,,DECR
decl (%esp) // decrement top of stack
NEXT
defcode "4+",2,,INCR4
addl $4,(%esp) // add 4 to top of stack
NEXT
defcode "4-",2,,DECR4
subl $4,(%esp) // subtract 4 from top of stack
NEXT
defcode "+",1,,ADD
pop %eax // get top of stack
addl %eax,(%esp) // and add it to next word on stack
NEXT
defcode "-",1,,SUB
pop %eax // get top of stack
subl %eax,(%esp) // and subtract it from next word on stack
NEXT
defcode "*",1,,MUL
pop %eax
pop %ebx
imull %ebx,%eax
push %eax // ignore overflow
NEXT
/*
In this FORTH, only /MOD is primitive. Later we will define the / and MOD
words in
terms of the primitive /MOD. The design of the i386 assembly instruction
idiv which
leaves both quotient and remainder makes this the obvious choice.
*/
defcode "/MOD",4,,DIVMOD
xor %edx,%edx
pop %ebx
pop %eax
idivl %ebx
push %edx // push remainder
push %eax // push quotient
NEXT
/*
Lots of comparison operations like =, <, >, etc..
ANS FORTH says that the comparison words should return all (binary) 1's for
TRUE and all 0's for FALSE. However this is a bit of a strange convention
so this FORTH breaks it and returns the more normal (for C programmers ...)
1 meaning TRUE and 0 meaning FALSE.
*/
defcode "<",1,,LT
pop %eax
pop %ebx
cmp %eax,%ebx
setl %al
movzbl %al,%eax
pushl %eax
NEXT
defcode ">",1,,GT
pop %eax
pop %ebx
cmp %eax,%ebx
setg %al
movzbl %al,%eax
pushl %eax
NEXT
defcode "<=",2,,LE
pop %eax
pop %ebx
cmp %eax,%ebx
setle %al
movzbl %al,%eax
pushl %eax
NEXT
defcode ">=",2,,GE
pop %eax
pop %ebx
cmp %eax,%ebx
setge %al
movzbl %al,%eax
pushl %eax
NEXT
defcode "0>",2,,ZGT
pop %eax
test %eax,%eax
setg %al
movzbl %al,%eax
pushl %eax
NEXT
defcode "0<=",3,,ZLE
pop %eax
test %eax,%eax
setle %al
movzbl %al,%eax
pushl %eax
NEXT
defcode "0>=",3,,ZGE
pop %eax
test %eax,%eax
setge %al
movzbl %al,%eax
pushl %eax
NEXT
/*
RETURNING FROM FORTH WORDS
----------------------------------------------------------------------
Time to talk about what happens when we EXIT a function. In this diagram
QUADRUPLE has called
DOUBLE, and DOUBLE is about to exit (look at where %esi is pointing):
QUADRUPLE
+------------------+
| codeword |
+------------------+ DOUBLE
| addr of DOUBLE ---------------> +------------------+
+------------------+ | codeword |
| addr of DOUBLE | +------------------+
+------------------+ | addr of DUP |
| addr of EXIT | +------------------+
+------------------+ | addr of + |
+------------------+
%esi -> | addr of EXIT |
+------------------+
What happens when the + function does NEXT? Well, the following code is
executed.
*/
defcode "EXIT",4,,EXIT
POPRSP %esi // pop return stack into %esi
NEXT
/*
EXIT gets the old %esi which we saved from before on the return stack, and
puts it in %esi.
So after this (but just before NEXT) we get:
QUADRUPLE
+------------------+
| codeword |
+------------------+ DOUBLE
| addr of DOUBLE ---------------> +------------------+
+------------------+ | codeword |
%esi -> | addr of DOUBLE | +------------------+
+------------------+ | addr of DUP |
| addr of EXIT | +------------------+
+------------------+ | addr of + |
+------------------+
| addr of EXIT |
+------------------+
And NEXT just completes the job by, well, in this case just by calling
DOUBLE again :-)
LITERALS
----------------------------------------------------------------------
The final point I "glossed over" before was how to deal with functions that
do anything
apart from calling other functions. For example, suppose that DOUBLE was
defined like this:
: DOUBLE 2 * ;
It does the same thing, but how do we compile it since it contains the
literal 2? One way
would be to have a function called "2" (which you'd have to write in
assembler), but you'd need
a function for every single literal that you wanted to use.
FORTH solves this by compiling the function using a special word called LIT:
+---------------------------+-------+-------+-------+-------+-------+
| (usual header of DOUBLE) | DOCOL | LIT | 2 | * | EXIT |
+---------------------------+-------+-------+-------+-------+-------+
LIT is executed in the normal way, but what it does next is definitely not
normal. It
looks at %esi (which now points to the number 2), grabs it, pushes it on the
stack, then
manipulates %esi in order to skip the number as if it had never been there.
What's neat is that the whole grab/manipulate can be done using a single
byte single
i386 instruction, our old friend LODSL. Rather than me drawing more ASCII-
art diagrams,
see if you can find out how LIT works:
*/
defcode "LIT",3,,LIT
// %esi points to the next command, but in this case it points to the next
// literal 32 bit integer. Get that literal into %eax and increment %esi.
// On x86, it's a convenient single byte instruction! (cf. NEXT macro)
lodsl
push %eax // push the literal number on to stack
NEXT
/*
MEMORY
----------------------------------------------------------------------
As important point about FORTH is that it gives you direct access to the
lowest levels
of the machine. Manipulating memory directly is done frequently in FORTH,
and these are
the primitive words for doing it.
*/
defcode "!",1,,STORE
pop %ebx // address to store at
pop %eax // data to store there
mov %eax,(%ebx) // store it
NEXT
defcode "@",1,,FETCH
pop %ebx // address to fetch
mov (%ebx),%eax // fetch it
push %eax // push value onto stack
NEXT
defcode "+!",2,,ADDSTORE
pop %ebx // address
pop %eax // the amount to add
addl %eax,(%ebx) // add it
NEXT
defcode "-!",2,,SUBSTORE
pop %ebx // address
pop %eax // the amount to subtract
subl %eax,(%ebx) // add it
NEXT
/*
! and @ (STORE and FETCH) store 32-bit words. It's also useful to be able
to read and write bytes
so we also define standard words C@ and C!.
defcode "C!",2,,STOREBYTE
pop %ebx // address to store at
pop %eax // data to store there
movb %al,(%ebx) // store it
NEXT
defcode "C@",2,,FETCHBYTE
pop %ebx // address to fetch
xor %eax,%eax
movb (%ebx),%al // fetch it
push %eax // push value onto stack
NEXT
/*
BUILT-IN VARIABLES
----------------------------------------------------------------------
These are some built-in variables and related standard FORTH words. Of
these, the only one that we
have discussed so far was LATEST, which points to the last (most recently
defined) word in the
FORTH dictionary. LATEST is also a FORTH word which pushes the address of
LATEST (the variable)
on to the stack, so you can read or write it using @ and ! operators. For
example, to print
the current value of LATEST (and this can apply to any FORTH variable) you
would do:
LATEST @ . CR
To make defining variables shorter, I'm using a macro called defvar, similar
to defword and
defcode above. (In fact the defvar macro uses defcode to do the dictionary
header).
*/
/*
The built-in variables are:
*/
defvar "STATE",5,,STATE
defvar "HERE",4,,HERE
defvar "LATEST",6,,LATEST,name_SYSCALL0 // SYSCALL0 must be last in built-in
dictionary
defvar "S0",2,,SZ
defvar "BASE",4,,BASE,10
/*
BUILT-IN CONSTANTS
----------------------------------------------------------------------
It's also useful to expose a few constants to FORTH. When the word is
executed it pushes a
constant value on the stack.
defconst "VERSION",7,,VERSION,JONES_VERSION
defconst "R0",2,,RZ,return_stack_top
defconst "DOCOL",5,,__DOCOL,DOCOL
defconst "F_IMMED",7,,__F_IMMED,F_IMMED
defconst "F_HIDDEN",8,,__F_HIDDEN,F_HIDDEN
defconst "F_LENMASK",9,,__F_LENMASK,F_LENMASK
defconst "SYS_EXIT",8,,SYS_EXIT,__NR_exit
defconst "SYS_OPEN",8,,SYS_OPEN,__NR_open
defconst "SYS_CLOSE",9,,SYS_CLOSE,__NR_close
defconst "SYS_READ",8,,SYS_READ,__NR_read
defconst "SYS_WRITE",9,,SYS_WRITE,__NR_write
defconst "SYS_CREAT",9,,SYS_CREAT,__NR_creat
defconst "SYS_BRK",7,,SYS_BRK,__NR_brk
defconst "O_RDONLY",8,,__O_RDONLY,0
defconst "O_WRONLY",8,,__O_WRONLY,1
defconst "O_RDWR",6,,__O_RDWR,2
defconst "O_CREAT",7,,__O_CREAT,0100
defconst "O_EXCL",6,,__O_EXCL,0200
defconst "O_TRUNC",7,,__O_TRUNC,01000
defconst "O_APPEND",8,,__O_APPEND,02000
defconst "O_NONBLOCK",10,,__O_NONBLOCK,04000
/*
RETURN STACK
----------------------------------------------------------------------
These words allow you to access the return stack. Recall that the register
%ebp always points to
the top of the return stack.
*/
defcode ">R",2,,TOR
pop %eax // pop parameter stack into %eax
PUSHRSP %eax // push it on to the return stack
NEXT
defcode "R>",2,,FROMR
POPRSP %eax // pop return stack on to %eax
push %eax // and push on to parameter stack
NEXT
defcode "RSP@",4,,RSPFETCH
push %ebp
NEXT
defcode "RSP!",4,,RSPSTORE
pop %ebp
NEXT
defcode "RDROP",5,,RDROP
addl $4,%ebp // pop return stack and throw away
NEXT
/*
PARAMETER (DATA) STACK
----------------------------------------------------------------------
These functions allow you to manipulate the parameter stack. Recall that
Linux sets up the parameter
stack for us, and it is accessed through %esp.
*/
defcode "DSP@",4,,DSPFETCH
mov %esp,%eax
push %eax
NEXT
defcode "DSP!",4,,DSPSTORE
pop %esp
NEXT
/*
INPUT AND OUTPUT
----------------------------------------------------------------------
The FORTH word KEY reads the next byte from stdin (and pushes it on the
parameter stack).
So if KEY is called and someone hits the space key, then the number 32
(ASCII code of space)
is pushed on the stack.
buffer bufftop
| |
V V
+-------------------------------+--------------------------------------+
| INPUT READ FROM STDIN ....... | unused part of the buffer |
+-------------------------------+--------------------------------------+
^
|
currkey (next character to read)
<---------------------- BUFFER_SIZE (4096 bytes) ---------------------->
*/
defcode "KEY",3,,KEY
call _KEY
push %eax // push return value on stack
NEXT
_KEY:
mov (currkey),%ebx
cmp (bufftop),%ebx
jge 1f // exhausted the input buffer?
xor %eax,%eax
mov (%ebx),%al // get next key from input buffer
inc %ebx
mov %ebx,(currkey) // increment currkey
ret
.data
.align 4
currkey:
.int buffer // Current place in input buffer (next character to read).
bufftop:
.int buffer // Last valid data in input buffer + 1.
/*
By contrast, output is much simpler. The FORTH word EMIT writes out a
single byte to stdout.
This implementation just uses the write system call. No attempt is made to
buffer output, but
it would be a good exercise to add it.
*/
defcode "EMIT",4,,EMIT
pop %eax
call _EMIT
NEXT
_EMIT:
mov $1,%ebx // 1st param: stdout
// write needs the address of the byte to write
mov %al,emit_scratch
mov $emit_scratch,%ecx // 2nd param: address
/*
Back to input, WORD is a FORTH word which reads the next full word of input.
What it does in detail is that it first skips any blanks (spaces, tabs,
newlines and so on).
Then it calls KEY to read characters into an internal buffer until it hits a
blank. Then it
calculates the length of the word it read and returns the address and the
length as
two words on the stack (with the length at the top of stack).
Notice that WORD has a single internal buffer which it overwrites each time
(rather like
a static C string). Also notice that WORD's internal buffer is just 32
bytes long and
there is NO checking for overflow. 31 bytes happens to be the maximum
length of a
FORTH word that we support, and that is what WORD is used for: to read FORTH
words when
we are compiling and executing code. The returned strings are not NUL-
terminated.
WORD is not suitable for just reading strings (eg. user input) because of
all the above
peculiarities and limitations.
defcode "WORD",4,,WORD
call _WORD
push %edi // push base address
push %ecx // push length
NEXT
_WORD:
/* Search for first non-blank character. Also skip \ comments. */
1:
call _KEY // get next key, returned in %eax
cmpb $'\\',%al // start of a comment?
je 3f // if so, skip the comment
cmpb $' ',%al
jbe 1b // if so, keep looking
/*
As well as reading in words we'll need to read in numbers and for that we
are using a function
called NUMBER. This parses a numeric string such as one returned by WORD
and pushes the
number on the parameter stack.
The function uses the variable BASE as the base (radix) for conversion, so
for example if
BASE is 2 then we expect a binary number. Normally BASE is 10.
If the word starts with a '-' character then the returned value is negative.
_NUMBER:
xor %eax,%eax
xor %ebx,%ebx
5: ret
/*
DICTIONARY LOOK UPS
----------------------------------------------------------------------
We're building up to our prelude on how FORTH code is compiled, but first we
need yet more infrastructure.
The FORTH word FIND takes a string (a word as parsed by WORD -- see above)
and looks it up in the
dictionary. What it actually returns is the address of the dictionary
header, if it finds it,
or 0 if it didn't.
So if DOUBLE is defined in the dictionary, then WORD DOUBLE FIND returns the
following pointer:
pointer to this
|
|
V
+---------+---+---+---+---+---+---+---+---+------------+------------
+------------+------------+
| LINK | 6 | D | O | U | B | L | E | 0 | DOCOL | DUP | +
| EXIT |
+---------+---+---+---+---+---+---+---+---+------------+------------
+------------+------------+
FIND doesn't find dictionary entries which are flagged as HIDDEN. See below
for why.
*/
defcode "FIND",4,,FIND
pop %ecx // %ecx = length
pop %edi // %edi = address
call _FIND
push %eax // %eax = address of dictionary entry (or NULL)
NEXT
_FIND:
push %esi // Save %esi so we can use it in string comparison.
// Now we start searching backwards through the dictionary for this word.
mov var_LATEST,%edx // LATEST points to name header of the latest word in
the dictionary
1: test %edx,%edx // NULL pointer? (end of the linked list)
je 4f
// The strings are the same - return the header pointer in %eax
pop %esi
mov %edx,%eax
ret
2: mov (%edx),%edx // Move back through the link field to the previous
word
jmp 1b // .. and loop.
4: // Not found.
pop %esi
xor %eax,%eax // Return zero to indicate not found.
ret
/*
FIND returns the dictionary pointer, but when compiling we need the codeword
pointer (recall
that FORTH definitions are compiled into lists of codeword pointers). The
standard FORTH
word >CFA turns a dictionary pointer into a codeword pointer.
Notes:
What does CFA stand for? My best guess is "Code Field Address".
*/
defcode ">CFA",4,,TCFA
pop %edi
call _TCFA
push %edi
NEXT
_TCFA:
xor %eax,%eax
add $4,%edi // Skip link pointer.
movb (%edi),%al // Load flags+len into %al.
inc %edi // Skip flags+len byte.
andb $F_LENMASK,%al // Just the length, not the flags.
add %eax,%edi // Skip the name.
addl $3,%edi // The codeword is 4-byte aligned.
andl $~3,%edi
ret
/*
Related to >CFA is >DFA which takes a dictionary entry address as returned
by FIND and
returns a pointer to the first data field.
You can see that >DFA is easily defined in FORTH just by adding 4 to the
result of >CFA.
*/
defword ">DFA",4,,TDFA
.int TCFA // >CFA (get code field address)
.int INCR4 // 4+ (add 4 to it to get to next word)
.int EXIT // EXIT (return from FORTH word)
/*
COMPILING
----------------------------------------------------------------------
Now we'll talk about how FORTH compiles words. Recall that a word
definition looks like this:
: DOUBLE DUP + ;
There are several problems to solve. Where to put the new word? How do we
read words? How
do we define the words : (COLON) and ; (SEMICOLON)?
FORTH solves this rather elegantly and as you might expect in a very low-
level way which
allows you to change how the compiler works on your own code.
FORTH has an INTERPRET function (a true interpreter this time, not DOCOL)
which runs in a
loop, reading words (using WORD), looking them up (using FIND), turning them
into codeword
pointers (using >CFA) and deciding what to do with them.
What it does depends on the mode of the interpreter (in variable STATE).
When STATE is zero, the interpreter just runs each word as it looks them up.
This is known as
immediate mode.
So you may be able to see how we could define : (COLON). The general plan
is:
(1) Use WORD to read the name of the function being defined.
(2) Construct the dictionary entry -- just the header part -- in user
memory:
(4) .. and most importantly leave HERE pointing just after the new codeword.
This is where
the interpreter will append codewords.
(5) Set STATE to 1. This goes into compile mode so the interpreter starts
appending codewords to
our partially-formed header.
: DOUBLE DUP + ;
^
|
Next byte returned by KEY will be the 'D' character of DUP
so the interpreter (now it's in compile mode, so I guess it's really the
compiler) reads "DUP",
looks it up in the dictionary, gets its codeword pointer, and appends it:
At this point, FORTH uses a trick. Remember the length byte in the
dictionary definition
isn't just a plain length byte, but can also contain flags. One flag is
called the
IMMEDIATE flag (F_IMMED in this code). If a word in the dictionary is
flagged as
IMMEDIATE then the interpreter runs it immediately _even if it's in compile
mode_.
And all it does is append the codeword for EXIT on to the current definition
and switch
back to immediate mode (set STATE back to 0). Shortly we'll see the actual
definition
of ; and we'll see that it's really a very simple definition, declared
IMMEDIATE.
+---------+---+---+---+---+---+---+---+---+------------+------------
+------------+------------+
| LINK | 6 | D | O | U | B | L | E | 0 | DOCOL | DUP | +
| EXIT |
+---------+---+---+---+---+---+---+---+---+------------+------------
+------------+------------+
len pad codeword
^
|
HERE
STATE is set to 0.
And that's it, job done, our new definition is compiled, and we're back in
immediate mode
just reading and executing words, perhaps including a call to test our new
word DOUBLE.
The only last wrinkle in this is that while our word was being compiled, it
was in a
half-finished state. We certainly wouldn't want DOUBLE to be called somehow
during
this time. There are several ways to stop this from happening, but in FORTH
what we
do is flag the word with the HIDDEN flag (F_HIDDEN in this code) just while
it is
being compiled. This prevents FIND from finding it, and thus in theory
stops any
chance of it being called.
The above explains how compiling, : (COLON) and ; (SEMICOLON) works and in a
moment I'm
going to define them. The : (COLON) function can be made a little bit more
general by writing
it in two parts. The first part, called CREATE, makes just the header:
and the second part, the actual definition of : (COLON), calls CREATE and
appends the
DOCOL codeword, so leaving:
CREATE is a standard FORTH word and the advantage of this split is that we
can reuse it to
create other types of words (not just ones which contain code, but words
which contain variables,
constants and other data).
*/
defcode "CREATE",6,,CREATE
// Link pointer.
movl var_HERE,%edi // %edi is the address of the header
movl var_LATEST,%eax // Get link pointer
stosl // and store it in the header.
/*
Because I want to define : (COLON) in FORTH, not assembler, we need a few
more FORTH words
to use.
The first is , (COMMA) which is a standard FORTH word which appends a 32 bit
integer to the user
memory pointed to by HERE, and adds 4 to HERE. So the action of , (COMMA)
is:
and <data> is whatever 32 bit integer was at the top of the stack.
defcode ",",1,,COMMA
pop %eax // Code pointer to store.
call _COMMA
NEXT
_COMMA:
movl var_HERE,%edi // HERE
stosl // Store it.
movl %edi,var_HERE // Update HERE (incremented)
ret
/*
Our definitions of : (COLON) and ; (SEMICOLON) will need to switch to and
from compile mode.
Immediate mode vs. compile mode is stored in the global variable STATE, and
by updating this
variable we can switch between the two modes.
For various reasons which may become apparent later, FORTH defines two
standard words called
[ and ] (LBRAC and RBRAC) which switch between modes:
defcode "[",1,F_IMMED,LBRAC
xor %eax,%eax
movl %eax,var_STATE // Set STATE to 0.
NEXT
defcode "]",1,,RBRAC
movl $1,var_STATE // Set STATE to 1.
NEXT
/*
Now we can define : (COLON) using CREATE. It just calls CREATE, appends
DOCOL (the codeword), sets
the word HIDDEN and goes into compile mode.
*/
defword ":",1,,COLON
.int WORD // Get the name of the new word
.int CREATE // CREATE the dictionary entry / header
.int LIT, DOCOL, COMMA // Append DOCOL (the codeword).
.int LATEST, FETCH, HIDDEN // Make the word hidden (see below for
definition).
.int RBRAC // Go into compile mode.
.int EXIT // Return from the function.
/*
; (SEMICOLON) is also elegantly simple. Notice the F_IMMED flag.
*/
defword ";",1,F_IMMED,SEMICOLON
.int LIT, EXIT, COMMA // Append EXIT (so the word will return).
.int LATEST, FETCH, HIDDEN // Toggle hidden flag -- unhide the word (see
below for definition).
.int LBRAC // Go back to IMMEDIATE mode.
.int EXIT // Return from the function.
/*
EXTENDING THE COMPILER
----------------------------------------------------------------------
Words flagged with IMMEDIATE (F_IMMED) aren't just for the FORTH compiler to
use. You can define
your own IMMEDIATE words too, and this is a crucial aspect when extending
basic FORTH, because
it allows you in effect to extend the compiler itself. Does gcc let you do
that?
Standard FORTH words like IF, WHILE, ." and so on are all written as
extensions to the basic
compiler, and are all IMMEDIATE words.
The IMMEDIATE word toggles the F_IMMED (IMMEDIATE flag) on the most recently
defined word,
or on the current word if you call it in the middle of a definition.
: MYIMMEDWORD
...definition...
; IMMEDIATE
defcode "IMMEDIATE",9,F_IMMED,IMMEDIATE
movl var_LATEST,%edi // LATEST word.
addl $4,%edi // Point to name/flags byte.
xorb $F_IMMED,(%edi) // Toggle the IMMED bit.
NEXT
/*
'addr HIDDEN' toggles the hidden flag (F_HIDDEN) of the word defined at
addr. To hide the
most recently defined word (used above in : and ; definitions) you would do:
LATEST @ HIDDEN
Setting this flag stops the word from being found by FIND, and so can be
used to make 'private'
words. For example, to break up a large word into smaller parts you might
do:
After this, only MAIN is 'exported' or seen by the rest of the program.
*/
defcode "HIDDEN",6,,HIDDEN
pop %edi // Dictionary entry.
addl $4,%edi // Point to name/flags byte.
xorb $F_HIDDEN,(%edi) // Toggle the HIDDEN bit.
NEXT
defword "HIDE",4,,HIDE
.int WORD // Get the word (after HIDE).
.int FIND // Look up in the dictionary.
.int HIDDEN // Set F_HIDDEN flag.
.int EXIT // Return.
/*
' (TICK) is a standard FORTH word which returns the codeword pointer of the
next word.
' FOO ,
which appends the codeword of FOO to the current word we are defining (this
only works in compiled code).
You tend to use ' in IMMEDIATE words. For example an alternate (and rather
useless) way to define
a literal 2 might be:
: LIT2 IMMEDIATE
' LIT , \ Appends LIT to the currently-being-defined word
2 , \ Appends the number 2 to the currently-being-defined word
;
: DOUBLE LIT2 * ;
(If you don't understand how LIT2 works, then you should review the material
about compiling words
and immediate mode).
/*
BRANCHING
----------------------------------------------------------------------
It turns out that all you need in order to define looping constructs, IF-
statements, etc.
are two primitives.
The diagram below shows how BRANCH works in some imaginary compiled word.
When BRANCH executes,
%esi starts by pointing to the offset field (compare to LIT above):
+---------------------+-------+---- - - ---+------------+------------+---- -
- - ----+------------+
| (Dictionary header) | DOCOL | | BRANCH | offset |
(skipped) | word |
+---------------------+-------+---- - - ---+------------+-----|------+---- -
- - ----+------------+
^ | ^
| | |
| +-----------------------+
%esi added to offset
The offset is added to %esi to make the new %esi, and the result is that
when NEXT runs, execution
continues at the branch target. Negative offsets work as expected.
Now standard FORTH words such as IF, THEN, ELSE, WHILE, REPEAT, etc. can be
implemented entirely
in FORTH. They are IMMEDIATE words which append various combinations of
BRANCH or 0BRANCH
into the word currently being compiled.
compiles to:
defcode "BRANCH",6,,BRANCH
add (%esi),%esi // add the offset to the instruction pointer
NEXT
defcode "0BRANCH",7,,ZBRANCH
pop %eax
test %eax,%eax // top of stack is zero?
jz code_BRANCH // if so, jump back to the branch function above
lodsl // otherwise we need to skip the offset
NEXT
/*
LITERAL STRINGS
----------------------------------------------------------------------
LITSTRING is a primitive used to implement the ." and S" operators (which
are written in
FORTH). See the definition of those operators later.
TELL just prints a string. It's more efficient to define this in assembly
because we
can make it a single Linux syscall.
*/
defcode "LITSTRING",9,,LITSTRING
lodsl // get the length of the string
push %esi // push the address of the start of the string
push %eax // push it on the stack
addl %eax,%esi // skip past the string
addl $3,%esi // but round up to next 4 byte boundary
andl $~3,%esi
NEXT
defcode "TELL",4,,TELL
mov $1,%ebx // 1st param: stdout
pop %edx // 3rd param: length of string
pop %ecx // 2nd param: address of string
mov $__NR_write,%eax // write syscall
int $0x80
NEXT
/*
QUIT AND INTERPRET
----------------------------------------------------------------------
QUIT is the first FORTH function called, almost immediately after the FORTH
system "boots".
As explained before, QUIT doesn't "quit" anything. It does some
initialisation (in particular
it clears the return stack) and it calls INTERPRET in a loop to interpret
commands. The
reason it is called QUIT is because you can call it from your own FORTH
words in order to
"quit" your program and start again at the user prompt.
/*
This interpreter is pretty simple, but remember that in FORTH you can always
override
it later with a more powerful one!
*/
defcode "INTERPRET",9,,INTERPRET
call _WORD // Returns %ecx = length, %edi = pointer to word.
// Is it in the dictionary?
xor %eax,%eax
movl %eax,interpret_is_lit // Not a literal number (not yet anyway ...)
call _FIND // Returns %eax = pointer to header or 0 if not found.
test %eax,%eax // Found?
jz 1f
jmp 2f
// Not a literal, execute it now. This never returns, but the codeword will
// eventually call NEXT which will reenter the loop in QUIT.
jmp *(%eax)
NEXT
.section .rodata
errmsg: .ascii "PARSE ERROR: "
errmsgend:
errmsgnl: .ascii "\n"
/*
ODDS AND ENDS
----------------------------------------------------------------------
CHAR puts the ASCII code of the first character of the following word on the
stack. For example
CHAR A puts 65 on the stack.
In this FORTH, SYSCALL0 must be the last word in the built-in (assembler)
dictionary because we
initialise the LATEST variable to point to it. This means that if you want
to extend the assembler
part, you must put new words before SYSCALL0, or else change how LATEST is
initialised.
*/
defcode "CHAR",4,,CHAR
call _WORD // Returns %ecx = length, %edi = pointer to word.
xor %eax,%eax
movb (%edi),%al // Get the first character of the word.
push %eax // Push it onto the stack.
NEXT
defcode "EXECUTE",7,,EXECUTE
pop %eax // Get xt into %eax
jmp *(%eax) // and jump to it.
// After xt runs its NEXT will continue executing the
current word.
defcode "SYSCALL3",8,,SYSCALL3
pop %eax // System call number (see <asm/unistd.h>)
pop %ebx // First parameter.
pop %ecx // Second parameter
pop %edx // Third parameter
int $0x80
push %eax // Result (negative for -errno)
NEXT
defcode "SYSCALL2",8,,SYSCALL2
pop %eax // System call number (see <asm/unistd.h>)
pop %ebx // First parameter.
pop %ecx // Second parameter
int $0x80
push %eax // Result (negative for -errno)
NEXT
defcode "SYSCALL1",8,,SYSCALL1
pop %eax // System call number (see <asm/unistd.h>)
pop %ebx // First parameter.
int $0x80
push %eax // Result (negative for -errno)
NEXT
defcode "SYSCALL0",8,,SYSCALL0
pop %eax // System call number (see <asm/unistd.h>)
int $0x80
push %eax // Result (negative for -errno)
NEXT
/*
DATA SEGMENT
----------------------------------------------------------------------
Here we set up the Linux data segment, used for user definitions and
variously known as just
the 'data segment', 'user memory' or 'user definitions area'. It is an area
of memory which
grows upwards and stores both newly-defined FORTH words and global variables
of various
sorts.
There are various "features" of the GNU toolchain which make setting up the
data segment
more complicated than it really needs to be. One is the GNU linker which
inserts a random
"build ID" segment. Another is Address Space Randomization which means we
can't tell
where the kernel will choose to place the data segment (or the stack for
that matter).
/*
We allocate static buffers for the return static and input buffer (used when
reading in files and text that the user types in).
*/
.set RETURN_STACK_SIZE,8192
.set BUFFER_SIZE,4096
.bss
/* FORTH return stack. */
.align 4096
return_stack:
.space RETURN_STACK_SIZE
return_stack_top: // Initial top of return stack.
/* This is used as a temporary input buffer when reading from files or the
terminal. */
.align 4096
buffer:
.space BUFFER_SIZE
/*
START OF FORTH CODE
----------------------------------------------------------------------
We've now reached the stage where the FORTH system is running and self-
hosting. All further
words can be written as FORTH itself, including words like IF, THEN, .", etc
which in most
languages would be considered rather fundamental.
I used to append this here in the assembly file, but I got sick of fighting
against gas's
crack-smoking (lack of) multiline string syntax. So now that is in a
separate file called
jonesforth.f
/* END OF jonesforth.S */