diff options
Diffstat (limited to 'qtmips_machine/instruction.cpp')
-rw-r--r-- | qtmips_machine/instruction.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qtmips_machine/instruction.cpp b/qtmips_machine/instruction.cpp index b6abebc..4137fdd 100644 --- a/qtmips_machine/instruction.cpp +++ b/qtmips_machine/instruction.cpp @@ -67,9 +67,7 @@ Instruction::Instruction(std::uint8_t opcode, std::uint32_t address) { this->dt |= address; } -Instruction::Instruction(const Instruction &i) { - this->dt = i.data(); -} +Instruction::Instruction(const Instruction &i) : Instruction(i.data()) { } QString Instruction::to_str() { if (this->opcode() >= sizeof(instruction_map)) |