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