An open API service indexing awesome lists of open source software.

https://github.com/shimanauskas/sandrasforth

A public domain Forth for Linux and macOS on x86-64.
https://github.com/shimanauskas/sandrasforth

assembly forth interpreter

Last synced: 12 months ago
JSON representation

A public domain Forth for Linux and macOS on x86-64.

Awesome Lists containing this project

README

          

# sandrasForth

A public domain Forth for Linux and macOS on x86-64.

It is written mostly in (indirect-)threaded code. There is no limit on the
number of primitives, however, each primitive should be kept small.

Since .text and .data are not mixed, CPU caches stay clean.

## Requirements

* make
* gcc or clang

## Errors

Upon a word not found, sandrasForth outputs it, followed by a question mark.

sandrasForth will compile a definition without the words not found.

If sandrasForth crashes while defining a word, it most likely ran out of
statically allocated memory.