Handle MIPS SIMM9 operand

This commit is contained in:
Rot127 2024-07-28 02:22:32 -05:00 committed by Rot127
parent 584efadbc4
commit 6464d962f4

View File

@ -2778,6 +2778,8 @@ std::string getPrimaryCSOperandType(Record const *OpRec) {
return "CS_OP_INVALID";
else if (OperandType == "OPERAND_IMPLICIT_IMM_0")
return "CS_OP_IMM";
else if (OperandType == "OPERAND_MEM_SIMM9")
return "CS_OP_IMM";
else
PrintFatalNote("Unhandled OperandType: " + OperandType);
return OperandType;