From 81e8aa97313ef863291d70368e29081220ddce27 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Tue, 5 Feb 2019 00:26:18 +0100 Subject: Rewrite instruction decoding to be generic and mostly architecture independent. Signed-off-by: Pavel Pisa --- qtmips_machine/instruction.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'qtmips_machine/instruction.h') diff --git a/qtmips_machine/instruction.h b/qtmips_machine/instruction.h index c19a205..496f75e 100644 --- a/qtmips_machine/instruction.h +++ b/qtmips_machine/instruction.h @@ -95,6 +95,9 @@ public: enum AluOp alu_op() const; enum AccessControl mem_ctl() const; + void flags_alu_op_mem_ctl(enum InstructionFlags &flags, + enum AluOp &alu_op, enum AccessControl &mem_ctl) const; + bool is_break() const; bool operator==(const Instruction &c) const; -- cgit v1.2.3