commit 6b8e8b68e4f33922005213486302d9d2ccba3bcb Author: Yannick Reiß Date: Fri May 17 12:39:05 2024 +0200 Add Instruction Set diff --git a/Instruction-Set.md b/Instruction-Set.md new file mode 100644 index 0000000..648f4f4 --- /dev/null +++ b/Instruction-Set.md @@ -0,0 +1,15 @@ +The processor is able to execute 8 atomic instructions, each with a length of two clock cycles. + +The following table shows the instructions for using brainfuck or bfpu-assembly with the processor. +Confused readers might want to learn more about the [Brainfuck programming language](https://en.wikipedia.org/wiki/Brainfuck) first. + +|Brainfuck|Assembly|Machine code| +|---|---|---| +| > |up| 000 | +| < |down| 001 | +| + |inc| 010 | +| - |dec| 011 | +| , | get|100 | +| . |set |101 | +| [ |begin |110 | +| ] |end |111 | \ No newline at end of file