Difference between revisions of "Assembler:Commands:CMOVNBE"

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

Revision as of 06:23, 5 January 2018

command cmovnbe destination, source

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


Command Parameters

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


Examples

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


See also

External links