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