Assembler:Commands:CMOVNBE
Revision as of 06:23, 5 January 2018 by OldCheatEngineUser (talk | contribs)
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]