项目作者: drj11

项目描述 :
64-bit implementation of Forth
高级语言: Assembly
项目地址: git://github.com/drj11/sixtyforth.git
创建时间: 2016-09-15T06:14:32Z
项目社区:https://github.com/drj11/sixtyforth

开源协议:

下载


SixtyForth

Build Status

Welcome to SixtyForth, 64th for short.

SixtyForth is a 64-bit implementation of FORTH
written in 64-bit Intel assembler.

SixtyForth implements the ANSI Forth standard (1994 edition).
The CORE word set is present.

In this implementation a cell is 64-bits wide,
and signed integers are represented in 2’s complement.

As per the ANSI standard,
the required words from the standard are required to be in UPPER CASE.
Obviously lower case is a bit more comfortable,
and SixtyForth may accept that in the future.
Note that you can define your own words in any case you like;
when using them the case must be exactly as you defined it.

Input is accepted from the keyboard
(and interactively ^A ^E ^P ^N ^D ^K work);
from the command line (./64th -c 'SOURCE TYPE');
and from files (./64th example/hw.4).

Building SixtyForth and running it

Unpack the distribution from the magnetic tape.
Ensure NASM is installed.
Then:

  1. cd sixtyforth
  2. make

This creates the executable binary 64th.
Run this to start using SixtyForth:

  1. ./64th

Testing

The skeptical may want to run the tests first:

  1. make test

The tests are run using urchin which is an npm module.
urchin will be installed if npm works.

Bugs, Issues, Fun

Please refer to github.

https://github.com/drj11/sixtyforth/

On ANSI

The CORE word set is implemented.

Other word sets are not implemented completely,
but the intention is that where SixtyForth
has facilities that overlap with ANSI words,
SixtyForth will implement those ANSI words.

For example,
SixtyForth has a word that
adds two double cell numbers together,
it is D+ from the ANSI DOUBLE word set,
even though the entire word set is not implemented.

CORE EXT

None of the words marked as obsolescent are implemented:
#TIB CONVERT EXPECT QUERY SPAN TIB.

Implemented:
.(
0> 2>R 2R> 2R@
<> ?DO
FALSE HEX
NIP
PAD PARSE
TO TRUE TUCK
U>
VALUE WITHIN [COMPILE] \

Not implemented:
.R 0<>
:NONAME
AGAIN C" CASE COMPILE,
ENDCASE ENDOF ERASE
MARKER
OF
PICK REFILL RESTORE-INPUT ROLL SAVE-INPUT SOURCE-ID
U.R
UNUSED