diff options
author | Oxore <oxore@protonmail.com> | 2023-05-20 15:33:04 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-20 15:33:45 +0300 |
commit | d9136afc4a89ad26663e18afd61683dd9dae523f (patch) | |
tree | 6e82355441312845d9b55c1a3bbc677a3a2ca208 /main.cpp | |
parent | bad358209af4abcc85a23e4091564e61b99cf0e1 (diff) |
Impl marks referencing for MOVEM
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -67,6 +67,8 @@ DisasmNode *DisasmMap::insertTracedNode(const uint32_t offset, const TracedNodeT // instruction, then it must become an instruction node. if (type == TracedNodeType::kInstruction && node->type != TracedNodeType::kInstruction) { *const_cast<TracedNodeType*>(&node->type) = type; + // Make sure it is OpCode::kNone so it will be properly disassembled + node->op = Op{}; } return node; } |