diff options
author | Oxore <oxore@protonmail.com> | 2023-05-11 00:15:44 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-11 00:15:44 +0300 |
commit | 9ed1399c3500a09c2fae21fc578603f2a9eaf447 (patch) | |
tree | 55b3d3e4541f67cdc57b1e396f2e99be244f56ec /disasm.h | |
parent | 5981e3d7eefba54db40d5cc11728307b2aa3d88d (diff) |
Migrate all the rest instructions
Diffstat (limited to 'disasm.h')
-rw-r--r-- | disasm.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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 |