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