Neale Pickett 3cf5ac90e9 | ||
---|---|---|
README.md | ||
binutils.mjs | ||
httpd.conf | ||
index.html | ||
run.sh | ||
triscit.css | ||
triscit.mjs |
README.md
Triscit
This is a tiny RISC instruction set designed for teaching.
Instructions
Number | Name | Arguments | Description |
---|---|---|---|
00 | PRNT | x | Print string at x |
01 | READ | x | Read input, store in x |
02 | COMP | x y | Compare string x to y |
03 | JNEQ | x | If not equal, set PC to x |
04 | JUMP | x | Set PC to x |
05 | HALT | Terminate program | |
06 | HACF | Burn up computer (never use this!) | |
07 | NOOP | Do absolutely nothing |
This assumes the user comes with a notion of what it means to read and print.