aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/alu.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_machine/alu.h')
-rw-r--r--qtmips_machine/alu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/qtmips_machine/alu.h b/qtmips_machine/alu.h
index f0ce6c2..7846244 100644
--- a/qtmips_machine/alu.h
+++ b/qtmips_machine/alu.h
@@ -23,6 +23,10 @@ enum AluOp : std::uint8_t {
ALU_OP_MTHI,
ALU_OP_MFLO,
ALU_OP_MTLO,
+ ALU_OP_MULT = 24,
+ ALU_OP_MULTU = 25,
+ ALU_OP_DIV = 26,
+ ALU_OP_DIVU = 27,
ALU_OP_ADD = 32,
ALU_OP_ADDU,
ALU_OP_SUB,