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