Correctly decode operand types for many newer opcodes in disassembly

This commit is contained in:
Michael Hansen
2023-11-18 17:45:35 -08:00
parent a86a6eb54f
commit 9d1e156cec
2 changed files with 59 additions and 15 deletions

View File

@@ -29,8 +29,9 @@ bool IsConstArg(int opcode);
bool IsNameArg(int opcode);
bool IsVarNameArg(int opcode);
bool IsCellArg(int opcode);
bool IsJumpOffsetArg(int opcode);
bool IsJumpArg(int opcode);
bool IsJumpAbsArg(int opcode);
bool IsJumpRelArg(int opcode);
bool IsJumpBackArg(int opcode);
bool IsCompareArg(int opcode);
}