├── .gitignore ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── annexia ├── jonesforth.f.txt └── jonesforth.s.txt ├── blinker.f ├── doc ├── blinker.md ├── bootload.md └── forth.md ├── firmware ├── bootcode.bin └── start.elf ├── jonesforth.f ├── jonesforth.s ├── kernel.img ├── loadmap ├── nqueens.f ├── raspberry.c ├── raspi.h ├── serial.c ├── serial.h ├── start.s ├── tests ├── perf_dupdrop.c ├── perf_dupdrop.f ├── test_comparison.f ├── test_comparison.f.out ├── test_exception.f ├── test_exception.f.out ├── test_nqueens.f ├── test_nqueens.f.out ├── test_number.f ├── test_number.f.out ├── test_read_file.f ├── test_read_file.f.out ├── test_stack.f ├── test_stack.f.out ├── test_stack_trace.f └── test_stack_trace.f.out ├── timer.c ├── timer.h ├── xmodem.c └── xmodem.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/README.md -------------------------------------------------------------------------------- /annexia/jonesforth.f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/annexia/jonesforth.f.txt -------------------------------------------------------------------------------- /annexia/jonesforth.s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/annexia/jonesforth.s.txt -------------------------------------------------------------------------------- /blinker.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/blinker.f -------------------------------------------------------------------------------- /doc/blinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/doc/blinker.md -------------------------------------------------------------------------------- /doc/bootload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/doc/bootload.md -------------------------------------------------------------------------------- /doc/forth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/doc/forth.md -------------------------------------------------------------------------------- /firmware/bootcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/firmware/bootcode.bin -------------------------------------------------------------------------------- /firmware/start.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/firmware/start.elf -------------------------------------------------------------------------------- /jonesforth.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/jonesforth.f -------------------------------------------------------------------------------- /jonesforth.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/jonesforth.s -------------------------------------------------------------------------------- /kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/kernel.img -------------------------------------------------------------------------------- /loadmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/loadmap -------------------------------------------------------------------------------- /nqueens.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/nqueens.f -------------------------------------------------------------------------------- /raspberry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/raspberry.c -------------------------------------------------------------------------------- /raspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/raspi.h -------------------------------------------------------------------------------- /serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/serial.c -------------------------------------------------------------------------------- /serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/serial.h -------------------------------------------------------------------------------- /start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/start.s -------------------------------------------------------------------------------- /tests/perf_dupdrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/perf_dupdrop.c -------------------------------------------------------------------------------- /tests/perf_dupdrop.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/perf_dupdrop.f -------------------------------------------------------------------------------- /tests/test_comparison.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_comparison.f -------------------------------------------------------------------------------- /tests/test_comparison.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_comparison.f.out -------------------------------------------------------------------------------- /tests/test_exception.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_exception.f -------------------------------------------------------------------------------- /tests/test_exception.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_exception.f.out -------------------------------------------------------------------------------- /tests/test_nqueens.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_nqueens.f -------------------------------------------------------------------------------- /tests/test_nqueens.f.out: -------------------------------------------------------------------------------- 1 | 92 SOLUTIONS, 1965 NODES 2 | -------------------------------------------------------------------------------- /tests/test_number.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_number.f -------------------------------------------------------------------------------- /tests/test_number.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_number.f.out -------------------------------------------------------------------------------- /tests/test_read_file.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_read_file.f -------------------------------------------------------------------------------- /tests/test_read_file.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_read_file.f.out -------------------------------------------------------------------------------- /tests/test_stack.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_stack.f -------------------------------------------------------------------------------- /tests/test_stack.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_stack.f.out -------------------------------------------------------------------------------- /tests/test_stack_trace.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_stack_trace.f -------------------------------------------------------------------------------- /tests/test_stack_trace.f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/tests/test_stack_trace.f.out -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/timer.h -------------------------------------------------------------------------------- /xmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/xmodem.c -------------------------------------------------------------------------------- /xmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organix/pijFORTHos/HEAD/xmodem.h --------------------------------------------------------------------------------