1
Instruction Set
Yannick Reiß edited this page 2024-05-17 12:39:05 +02:00
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 first.
Brainfuck | Assembly | Machine code |
---|---|---|
> | up | 000 |
< | down | 001 |
+ | inc | 010 |
- | dec | 011 |
, | get | 100 |
. | set | 101 |
[ | begin | 110 |
] | end | 111 |