mirror of https://github.com/x64dbg/zydis
Fixed formatting of sign-extended immediate operands
This commit is contained in:
parent
bd38d86986
commit
433ca68926
|
@ -468,11 +468,8 @@ static ZydisStatus ZydisFormatterPrintImmediateIntel(ZydisInstructionFormatter*
|
||||||
return ZYDIS_STATUS_INVALID_PARAMETER;
|
return ZYDIS_STATUS_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
switch (operand->size)
|
switch (info->operandSize)
|
||||||
{
|
{
|
||||||
case 8:
|
|
||||||
return ZydisStringBufferAppendFormat(buffer, bufferLen,
|
|
||||||
ZYDIS_STRBUF_APPEND_MODE_DEFAULT, "0x%02"PRIX8, operand->imm.value.ubyte);
|
|
||||||
case 16:
|
case 16:
|
||||||
return ZydisStringBufferAppendFormat(buffer, bufferLen,
|
return ZydisStringBufferAppendFormat(buffer, bufferLen,
|
||||||
ZYDIS_STRBUF_APPEND_MODE_DEFAULT, "0x%02"PRIX16, operand->imm.value.uword);
|
ZYDIS_STRBUF_APPEND_MODE_DEFAULT, "0x%02"PRIX16, operand->imm.value.uword);
|
||||||
|
|
Loading…
Reference in New Issue