Difference between revisions of "Assembler:Commands:CMOVNO"

From Cheat Engine
Jump to navigation Jump to search
(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 '…')
 
m
Line 2: Line 2:
 
'''command''' cmovno ''destination, source''
 
'''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.
+
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 signed integers.
  
  

Revision as of 06:42, 5 January 2018

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 signed 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]


See also

External links