Add ALU Opcodes

Yannick Reiß 2024-01-30 10:15:22 +01:00
commit 1e46b2fe86
1 changed files with 15 additions and 0 deletions

15
Home.md Normal file

@ -0,0 +1,15 @@
**Arithmetic logical unit**
Internal operation codes:
|opcode|operation|
|---|---|
|0000|ADD|
|0010|SUB|
|0011|SLL|
|0100|SLT|
|0101|SLTU|
|0110|XOR|
|0111|SRL|
|1000|SRA|
|1010|OR|
|1011|AND|