├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── convert ├── dpans94.txt ├── editor.fth ├── forth.fth ├── fth ├── .gitignore ├── bf.fth ├── bnf.md ├── c2md.fth ├── makefile └── readme.md ├── length ├── libforth.c ├── libforth.h ├── main.c ├── makefile ├── readme.md ├── unit.c ├── unit.fth └── unit.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/LICENSE -------------------------------------------------------------------------------- /convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/convert -------------------------------------------------------------------------------- /dpans94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/dpans94.txt -------------------------------------------------------------------------------- /editor.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/editor.fth -------------------------------------------------------------------------------- /forth.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/forth.fth -------------------------------------------------------------------------------- /fth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/.gitignore -------------------------------------------------------------------------------- /fth/bf.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/bf.fth -------------------------------------------------------------------------------- /fth/bnf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/bnf.md -------------------------------------------------------------------------------- /fth/c2md.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/c2md.fth -------------------------------------------------------------------------------- /fth/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/makefile -------------------------------------------------------------------------------- /fth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/fth/readme.md -------------------------------------------------------------------------------- /length: -------------------------------------------------------------------------------- 1 | #!/usr/bin/gawk -f 2 | {line++} 3 | length > 64 {printf "%04u: %s\n", line, $0} 4 | 5 | -------------------------------------------------------------------------------- /libforth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/libforth.c -------------------------------------------------------------------------------- /libforth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/libforth.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/readme.md -------------------------------------------------------------------------------- /unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/unit.c -------------------------------------------------------------------------------- /unit.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/unit.fth -------------------------------------------------------------------------------- /unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/libforth/HEAD/unit.h --------------------------------------------------------------------------------