1
0
Fork
You've already forked forth32
0
Implementation of jonesforth using C as the host system instead of x86.
  • C 63.8%
  • Forth 35.9%
  • Makefile 0.3%
2025年02月04日 11:56:31 -08:00
cwords.c Implement EXECUTE. 2025年02月03日 18:47:25 -08:00
cwords.h A tremendous amount of work. 2025年01月29日 11:38:55 -08:00
dev.4th Some cleanup on LAMBDA. 2025年02月04日 11:56:31 -08:00
hello.4th Minor tweaks to hello.4th. 2025年02月01日 11:46:33 -08:00
main.c Remove non-buffered output. 2025年02月02日 20:02:17 -08:00
main.h Up the max system memory to 16k. 2025年02月01日 13:17:57 -08:00
Makefile At last: make run rule. 2025年01月30日 16:41:59 -08:00
README.md README.md 2025年01月29日 16:04:28 -08:00

forth32

Implementation of jonesforth using C as the host system instead of x86.

Written for fun! And learning. And experimenting. And don't forget fun!

This project is unlikely to ever be considered "done".

Dependencies

  • gcc
  • make
  • very likely a POSIX-compliant system that is 32-bit or higher

Build & Run

  • git clone https://codeberg.org/kira/forth32
  • cd forth32
  • make

To run as a Read-Eval-Print loop:

./main

Or you can pipe in a source code file:

./main < hello.4th