Assembler:Commands:CMOVPE
Revision as of 06:58, 5 January 2018 by OldCheatEngineUser (talk | contribs) (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 ''…')
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]