scotws / TaliForth2

A Subroutine Threaded Code (STC) ANS-like Forth for the 65c02
Other
86 stars 22 forks source link
6502 assembly forth

Tali Forth 2 for the 65c02

Scot W. Stevenson scot.stevenson@gmail.com
First version: (Tali Forth 1) 19. Jan 2014
This version: (Version 1.0) 25. Jan 2020

IMPORTANT: As of 2022-11-16, this version of Tali Forth is not being maintained. See https://github.com/SamCoVT/TaliForth2 for the current version. Please submit issues and pull requests in that respository as well. Thank you!

Dude, I am the very model of a Salarian scientist, just let me start!

Run py65mon -m 65c02 -r taliforth-py65mon.bin from this directory.

Introduction

Tali Forth 2 is a subroutine threaded code (STC) implementation of an ANS-based Forth for the 65c02 8-bit MPU. The aim is to provide a modern Forth that is easy to get started with and can be ported to individial hardware projects, especially Single Board Computers (SBC), with little effort. It is free -- released in the public domain -- but with absolutely no warranty of any kind. Use at your own risk! (See COPYING.txt for details.) Tali Forth 2 is hosted at GitHub. You can find the most current version at https://github.com/scotws/TaliForth2.

A little more detail please

Tali Forth 2 aims to be, roughly in order of priority:

The functional reference for Tali is GNU Forth (Gforth, https://www.gnu.org/software/gforth/). Programs written for Tali should run on Gforth or have a very good reason not to. Also, may Gforth words were adapted for Tali, especially when they make the code simpler (like FIND-NAME or BOUNDS).

The first Tali Forth was my first Forth ever. It is hosted at https://github.com/scotws/TaliForth and is superceded by this version. The second version was strongly influence by what I learned writing Liara Forth for the 65816. Liara and Tali 2 share large parts of their internal logic.

Seriously super lots more detail

See docs\manual.html for the Tali Forth manual, which covers the installation, setup, tutorials, and internal structure. The central discussion forum is http://forum.6502.org/viewtopic.php?f=9&t=2926 at 6502.org.