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