summaryrefslogtreecommitdiff
path: root/disasm.h
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-05-11 00:15:44 +0300
committerOxore <oxore@protonmail.com>2023-05-11 00:15:44 +0300
commit9ed1399c3500a09c2fae21fc578603f2a9eaf447 (patch)
tree55b3d3e4541f67cdc57b1e396f2e99be244f56ec /disasm.h
parent5981e3d7eefba54db40d5cc11728307b2aa3d88d (diff)
Migrate all the rest instructions
Diffstat (limited to 'disasm.h')
-rw-r--r--disasm.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/disasm.h b/disasm.h
index d472105..a3eb85e 100644
--- a/disasm.h
+++ b/disasm.h
@@ -478,10 +478,6 @@ struct DisasmNode {
/// Indicates whether instruction is a call (BSR, JSR) or just a branch
/// (Bcc, JMP) if `has_branch_addr` is set
bool is_call{};
- /// Mnemonic of the instruction at the current offset
- char mnemonic[kMnemonicBufferSize]{};
- /// Formatted arguments of the instruction;
- char arguments[kArgsBufferSize]{};
ReferenceNode *ref_by{};
ReferenceNode *last_ref_by{};
OpCode opcode{OpCode::kNone}; ///< Should replace `mnemonic` field