Difference between revisions of "Assembler:Commands:CMOVNG"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' cmovng ''destination, source'' cmovng is CMOVcc instruction, The cmovng (conditional move if not greater) check the state of '''ZF''', '''SF…')
 
m
Line 2: Line 2:
 
'''command''' cmovng ''destination, source''
 
'''command''' cmovng ''destination, source''
  
cmovng is CMOVcc instruction, The cmovng (conditional move if not greater) check the state of '''ZF''', '''SF''' AND '''OF''', if '''ZF=1''' AND '''SF<>OF''' then condition satisfied and the cmovng will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovng is used for signed integers.  
+
cmovng is CMOVcc instruction, The cmovng (conditional move if not greater) check the state of '''ZF''', '''SF''' AND '''OF''', if '''ZF=1''' OR '''SF<>OF''' then condition satisfied and the cmovng will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovng is used for signed integers.  
  
  

Revision as of 06:29, 5 January 2018

command cmovng destination, source

cmovng is CMOVcc instruction, The cmovng (conditional move if not greater) check the state of ZF, SF AND OF, if ZF=1 OR SF<>OF then condition satisfied and the cmovng will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovng is used for signed integers.


Command Parameters

Parameter Description
destination r16 / r32
source m16-r16 / m32-r32


Examples

cmovng dx,ax
cmovng cx,[bx]
cmovng edx,[edx+110]
cmovng eax,edx
cmovng esi,[00123abc]
cmovng edi,[UserDefinedSymbol]


See also

External links