aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/instruction.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-08-30 23:29:14 +0200
committerKarel Kočí <cynerd@email.cz>2017-08-30 23:29:14 +0200
commitc975257cef23d254b1fa9290474268a61509e954 (patch)
treed7f219fa9fcb5a54cc9ccfc5aa692643ea968562 /qtmips_machine/instruction.h
parent83e8593d9e36725d2bfb9d450da451e47a93f349 (diff)
downloadqtmips-c975257cef23d254b1fa9290474268a61509e954.tar.gz
qtmips-c975257cef23d254b1fa9290474268a61509e954.tar.bz2
qtmips-c975257cef23d254b1fa9290474268a61509e954.zip
Some to_string_hex cleanups
Diffstat (limited to 'qtmips_machine/instruction.h')
-rw-r--r--qtmips_machine/instruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtmips_machine/instruction.h b/qtmips_machine/instruction.h
index 6ab7015..d276a83 100644
--- a/qtmips_machine/instruction.h
+++ b/qtmips_machine/instruction.h
@@ -33,7 +33,7 @@ public:
std::vector<std::string> to_strs();
protected:
std::uint8_t rs, rt;
- std::uint16_t immediage;
+ std::uint16_t immediate;
};
class InstructionJ : public Instruction {