Assembler:Commands:CMOVLE
Revision as of 06:09, 5 January 2018 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' cmovle ''destination, source'' cmovle is CMOVcc instruction, The cmovle (conditional move if less or equal) check the state of '''ZF''', '''…')
command cmovle destination, source
cmovle is CMOVcc instruction, The cmovle (conditional move if less or equal) check the state of ZF, SF, AND OF, if ZF=1 OR SF<>OF then condition satisfied and the cmovle will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovle is used for signed integers.
Command Parameters
Parameter | Description |
---|---|
destination | r16 / r32 |
source | m16-r16 / m32-r32 |
Examples
cmovle dx,ax
cmovle cx,[bx]
cmovle edx,[edx+110]
cmovle eax,edx
cmovle esi,[00123abc]
cmovle edi,[UserDefinedSymbol]