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