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