Difference between revisions of "Assembler:Commands:CMOVNE"

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

Revision as of 06:26, 5 January 2018

command cmovne destination, source

cmovne is CMOVcc instruction, The cmovne (conditional move if not equal) check the state of ZF, if ZF=0 then condition satisfied and the cmovne will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovne is used for both signed and unsigned integers.


Command Parameters

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


Examples

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


See also

External links