1
0
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:
Andrei Vlad LUTAS 2020-07-29 11:26:07 +03:00
parent 144baa5140
commit 4328dc4efa
2 changed files with 2 additions and 2 deletions

View File

@ -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");
}

View File

@ -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
----------------------------------------------