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