Difference between revisions of "Assembler:Commands:CMOVBE"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' cmovbe ''destination, source'' cmovbe is CMOVcc instruction, The cmovbe (conditional move if below or equal) check the state of '''CF''' AND…')
(No difference)

Revision as of 04:09, 5 January 2018

command cmovbe destination, source

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


Command Parameters

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


Examples

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


See also

External links