Assembler:Commands:CMOVNGE

From Cheat Engine
Revision as of 06:30, 5 January 2018 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' cmovnge ''destination, source'' cmovnge is CMOVcc instruction, The cmovnge (conditional move if not greater) check the state of '''SF''' AND…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

command cmovnge destination, source

cmovnge is CMOVcc instruction, The cmovnge (conditional move if not greater) 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]


See also

External links