Assembler:Commands:CMOVBE
Revision as of 04:09, 5 January 2018 by OldCheatEngineUser (talk | contribs) (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…')
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]