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