From 55e1bc746a45118e14554c957b4ee4663039d9af Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Sun, 3 Feb 2019 11:52:53 +0100 Subject: Implement BREAK instruction to stop continuous execution. Signed-off-by: Pavel Pisa --- qtmips_machine/instruction.h | 1 + 1 file changed, 1 insertion(+) (limited to 'qtmips_machine/instruction.h') diff --git a/qtmips_machine/instruction.h b/qtmips_machine/instruction.h index 1e44a1a..a93be65 100644 --- a/qtmips_machine/instruction.h +++ b/qtmips_machine/instruction.h @@ -33,6 +33,7 @@ public: std::uint32_t data() const; enum Type type() const; bool is_store() const; // Store instructions requires some additional handling so identify them + bool is_break() const; bool operator==(const Instruction &c) const; bool operator!=(const Instruction &c) const; -- cgit v1.2.3