Difference between revisions of "Assembler:Commands:CMOVNGE"

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

Revision as of 06:31, 5 January 2018

command cmovnge destination, source

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


Command Parameters

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


Examples

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


See also

External links