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