Even if I have no actual knowledge of FORTH, I thought it would be fun to test
out the code that was brought to my attention on May the FORTH, and found it to work nicely.
As Forth was a central embedded language through the seventies, and is quite different
to BASIC by using a stack based syntax (think RPN), it is nice to be able to say "Yes, it runs Forth" :)
I just uploaded a "hexecutable" to the file downloads area on
linc.no:
This is an unmodified copy of FORTHRAM.HEX downloaded on 2018-05-06 from
To use, boot to SCMon, and paste in/transfer the content of the HEX file.
Next, switch to the Grant Searle Loader environment, by running the SCMon
monitor command "GSL". Press space to activate console for the GSL, and start
the FORTH environment by executing from address $8200:
Small Computer Monitor - LiNC80
*Ready <- HEX file pasted
*GSL <- Starts the second loader/monitor
Press [SPACE] to activate console <- Press space
LiNC80 SBC Boot ROM 1.1+ by G. Searle, modified by J. Langseth
Type ? for options
>G8200 <- Execute code at address $8200
* Z80 FORTH * <- FigFORTH signon message
2 2 + . 4 OK <- Sample forth code (2 + 2 = 4)