From 76876d39ba4a9c842786304b8ccf0249fab2999c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 3 Jan 2018 12:41:16 +0100 Subject: Initial implementation of reverse instruction conversion This is rude implementation. We always print all fields. In future we should add flags to set what fields should be hidden on per instruction bases. --- qtmips_machine/alu.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'qtmips_machine/alu.h') diff --git a/qtmips_machine/alu.h b/qtmips_machine/alu.h index 1f89acf..51cae28 100644 --- a/qtmips_machine/alu.h +++ b/qtmips_machine/alu.h @@ -46,9 +46,6 @@ enum AluOp : std::uint8_t { // Returned value is commonly saved to rt/rd or any other way passed trough core std::uint32_t alu_operate(enum AluOp operation, std::uint32_t s, std::uint32_t t, std::uint8_t sa, Registers *regs); -// Returns string representation of ALU instruction (internally used by Instruction::to_str) -QString alu_str(enum AluOp operation, std::uint32_t s, std::uint32_t t, std::uint8_t sa); - } Q_DECLARE_METATYPE(machine::AluOp) -- cgit v1.2.3