mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-17 21:18:27 +00:00
Changed REG_xxx to NDR_xxx in docs too.
This commit is contained in:
parent
144baa5140
commit
4328dc4efa
@ -118,7 +118,7 @@ int main()
|
||||
}
|
||||
|
||||
// Checking if the destination is the RCX register.
|
||||
if (ND_IS_OP_REG(&ix.Operands[0], ND_REG_GPR, 8, REG_RCX))
|
||||
if (ND_IS_OP_REG(&ix.Operands[0], ND_REG_GPR, 8, NDR_RCX))
|
||||
{
|
||||
printf("The first op is RCX!\n");
|
||||
}
|
||||
|
@ -267,7 +267,7 @@ Determining if the first operand is register EAX
|
||||
.. code-block:: c
|
||||
:linenos:
|
||||
|
||||
if (ND_IS_OP_REG(&ix.Operands[0], ND_REG_GPR, 4, REG_EAX))
|
||||
if (ND_IS_OP_REG(&ix.Operands[0], ND_REG_GPR, 4, NDR_EAX))
|
||||
|
||||
Determining if the second operand is the stack
|
||||
----------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user