From 1e46b2fe8622b4bfe62bcbadbf47218c8aed8410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yannick=20Rei=C3=9F?= Date: Tue, 30 Jan 2024 10:15:22 +0100 Subject: [PATCH] Add ALU Opcodes --- Home.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..af1dc4c --- /dev/null +++ b/Home.md @@ -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| \ No newline at end of file