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