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