Difference between revisions of "Assembler:Commands:CMOVPE"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' cmovpe ''destination, source'' cmovpe is CMOVcc instruction, The cmovpe (conditional move if parity even) check the state of '''PF''', if ''…')
(No difference)

Revision as of 06:58, 5 January 2018

command cmovpe destination, source

cmovpe is CMOVcc instruction, The cmovpe (conditional move if parity even) check the state of PF, if PF=1 then condition satisfied and the cmovpe will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovpe is used for both signed and unsigned integers.


Command Parameters

Parameter Description
destination r16 / r32
source m16-r16 / m32-r32


Examples

cmovpe dx,ax
cmovpe cx,[bx]
cmovpe edx,[edx+110]
cmovpe eax,edx
cmovpe esi,[00123abc]
cmovpe edi,[UserDefinedSymbol]


See also

External links