Assembler:Commands:CMOVNP
Revision as of 06:48, 5 January 2018 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' cmovnp ''destination, source'' cmovnp is CMOVcc instruction, The cmovnp (conditional move if not parity) check the state of '''PF''', if '''…')
command cmovnp destination, source
cmovnp is CMOVcc instruction, The cmovnp (conditional move if not parity) check the state of PF, if PF=0 then condition satisfied and the cmovnp will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovnp is used for both signed and unsigned integers.
Command Parameters
Parameter | Description |
---|---|
destination | r16 / r32 |
source | m16-r16 / m32-r32 |
Examples
cmovnp dx,ax
cmovnp cx,[bx]
cmovnp edx,[edx+110]
cmovnp eax,edx
cmovnp esi,[00123abc]
cmovnp edi,[UserDefinedSymbol]