Assembler:Commands:CMOVPO

From Cheat Engine
Revision as of 07:01, 5 January 2018 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' cmovpo ''destination, source'' cmovpo is CMOVcc instruction, The cmovpo (conditional move if parity odd) check the state of '''PF''', if '''…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

command cmovpo destination, source

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


Command Parameters

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


Examples

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


See also

External links