Forth#

Background#

Forth is a cancatenative stack-based programming language.

Stack-based languages simplify the language's parser considerably because the data for an instruction always appears in the source code before the instructions that will use it. To see why this helps, consider this typical line of Basic:

A = 10 + 20 * B

To perform this line, the interpreter has to read the entire line, look up the value of B (let's say 3), realize that the * has to be performed before + and order the instructions correctly, and then finally convert those into instructions something like:

get(B,temp1) - get the value in B and store it in temp1
multiply(20,temp1,temp2) - multiply that value by 20 and store the result in temp2
add(10,temp2,temp3) - add 10 to temp2 and store the result in temp3
put(temp3,A) - store the value of temp3 into the variable A

In contrast, in a stack-based system, the programmer organizes the code in the fashion it will ultimately be performed. The equivalent would be something like:

B 20 mul
10 add

When this code is performed, the interpreter pushes the value of B on the stack, then 20. It then encounters the mul, which removes the last two items, the 3 and 20, multiplies them, and puts the result back on the stack. Next, it pushes 10 on the stack, leaving the top two locations containing 60 and 10. It then encounters add, taking the two values, adding them, and putting the result back on the stack. The top of the stack now contains the result, 70.

Notice that the stack-based version has no temporary values, and only reads a single instruction at a time, not an entire line of code. As a result, the parser is much simpler, smaller and requires less memory to run. This, in turn, generally makes it much faster, comparable to compiled programs.

Another key aspect of the language is Forth's inherently multitasking design. The program could set up separate stacks and feed different code into each one. The Forth kernel would run each of these stacks in turn, so all Forth programs had access to these features. This made writing multithreaded code very easy, so one could, for instance, have a thread reading the joystick as it moved, and then read that value in a game loop in another stack.

Forth Standards#

(Family tree)

Forth Systems for the Atari#

  • FOCO65 a Forth Cross-Compiler written in Python that translates into XASM assembly language
  • SPL (Simple Programming Language) a Forth-ish compiler written in Python that translates into Assembly language
  • X-FORTH - a FIG Forth variant, currently maintained
  • VolksForth - a powerful Forth83 standards Forth for Atari 8bit, Atari ST, MS-DOS, CP/M, C=64, C=16/116/Plus4, still maintained
  • ANTIC Forth
  • valFORTH
  • English Software Company FORTH
  • Extended Atari FIG-Forth APX20029
  • Mesa Forth
  • QS Forth
  • Graphic Forth - A ANTIC / Fig-FORTH 1.4s Version with special Graphics Extensions.
  • FIG Forth 1.1
  • FIG Forth 1.0D
  • fig-FORTH1.4S-1.atr(info)
  • fig-FORTH1.4S-2.atr(info)
  • ProForth Apple II (6502 Source)
  • SNAUT
  • Forth Compiler from Frank Ostrowski
  • CoinOp FORTH
  • Elcomp Forth_DOS 25.atr(info); Atari Version of Elcomp-Forth by E.Floegel & H.C.Wagner, 1982
  • Grafs Atari-Forth DOS 2.5.atr(info); from Andreas Graf ca. 1990
  • ATAFORTH; advertised as compatible with Atari-DOS; lost; from Dan Bloomquist, Nova Technology, 1982
  • pns-Forth (the author was probably Robert Gonsalves; by Pink Noise Studios, 1981) - at least versions 1.4 and 1.5 were available (files to be amended)
  • Colleen Forth; from Atari - Steve Calfee, Michael Albaugh and others, 1980 (files to be amended)
    • later ported to Fig standard and evolved into multiple Forths: 1.4S/Team Atari/ANTIC/1.4V/Coin-Op/Turbo4TH
  • Nautilus Compiler - used at least to release game "Alien Garden" on Atari; the compiler was probably not available on the Atari itself; lost; by Nautilus Systems (Jerry Boutelle), 1981
  • Go-Forth (pForth?); released but lost; from Lawrence Rust - Bignose Software / SECS, ca. 1985
  • Fig Forth by Pulsar Software; lost or never released; 1988
  • Marx Forth; never released or lost compiler; advertised by Perkel Software Systems in 1983
  • MVP-FORTH Programmer's Kit; never released or lost; advertised for Atari by ECS / Mountain View Press ca. 1983 as somehow related to (non-Atari) MVP-FORTH
  • Micromotion FORTH-79 - used for Apple II and Atari educational games; the compiler was probably not available on the Atari itself; Micromotion, 1980

Forth Books#

Forth Articles#

Tutorials#

Videos and Screencasts#