Assembler:Commands:CMOVGE

From Cheat Engine
Jump to navigation Jump to search

command cmovge destination, source

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


See also

External links