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