Assembler:Commands:CMOVLE

From Cheat Engine
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''', '''…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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]


See also

External links