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