mirror of https://github.com/x64dbg/zydis
Merge branch 'develop' of https://github.com/zyantific/zyan-disassembler-engine into develop
This commit is contained in:
commit
781b9641c4
|
@ -258,6 +258,8 @@ enum ZydisOperandActions
|
|||
*/
|
||||
typedef struct ZydisOperandInfo_
|
||||
{
|
||||
// semantic operand type ... temporary
|
||||
uint32_t temp;
|
||||
/**
|
||||
* @brief The operand-id.
|
||||
*/
|
||||
|
|
|
@ -1509,6 +1509,10 @@ static ZydisStatus ZydisDecodeOperands(ZydisInstructionDecoder* decoder,
|
|||
info->operands[i].id = i;
|
||||
ZYDIS_CHECK(ZydisDecodeOperand(decoder, info, &info->operands[i], operands[i].type,
|
||||
operands[i].encoding));
|
||||
|
||||
// temp
|
||||
info->operands[i].temp = operands[i].type;
|
||||
|
||||
info->operands[i].encoding = operands[i].encoding;
|
||||
info->operands[i].action = operands[i].action;
|
||||
// Adjust segment register for memory operands
|
||||
|
|
Loading…
Reference in New Issue