nybbleForth icon indicating copy to clipboard operation
nybbleForth copied to clipboard

Stack machine with 4-bit instructions

Results 5 nybbleForth issues
Sort by recently updated
recently updated
newest added

I would like to play a bit around with this project. Can I build open source projects where I copy this architecture and instruction set?

A single left shift ought to be smaller in hardware than an adder. `+` would be defined approximately as: : + begin ?dup while 2dup xor -rot and 2* repeat...