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