Difference between revisions of "Assembler:Commands:CMOVP"

From Cheat Engine
Jump to navigation Jump to search
(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'''…')
(No difference)

Revision as of 06:56, 5 January 2018

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]


See also

External links