├── .gitignore ├── .gitmodules ├── .travis.yml ├── Makefile ├── README.md ├── forth ├── asm.fth ├── compiler.fth ├── kernel.fth └── nybble.fth ├── test ├── cpu_tb.v ├── deps.sh ├── make-image.fth ├── sim.cpp └── test-asm.fth └── verilog └── cpu.v /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.hex 3 | *.vcd 4 | test-* 5 | image 6 | nybble 7 | bench 8 | obj_dir 9 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/README.md -------------------------------------------------------------------------------- /forth/asm.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/forth/asm.fth -------------------------------------------------------------------------------- /forth/compiler.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/forth/compiler.fth -------------------------------------------------------------------------------- /forth/kernel.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/forth/kernel.fth -------------------------------------------------------------------------------- /forth/nybble.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/forth/nybble.fth -------------------------------------------------------------------------------- /test/cpu_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/test/cpu_tb.v -------------------------------------------------------------------------------- /test/deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/test/deps.sh -------------------------------------------------------------------------------- /test/make-image.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/test/make-image.fth -------------------------------------------------------------------------------- /test/sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/test/sim.cpp -------------------------------------------------------------------------------- /test/test-asm.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/test/test-asm.fth -------------------------------------------------------------------------------- /verilog/cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/nybbleForth/HEAD/verilog/cpu.v --------------------------------------------------------------------------------