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