Difference between revisions of "Assembler:Commands:CMOVGE"
Jump to navigation
Jump to search
(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'…') |
m |
||
Line 2: | Line 2: | ||
'''command''' cmovge ''destination, source'' | '''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. | + | 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. |
Revision as of 05:05, 5 January 2018
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]