Assembler:Commands:CMOVB

From Cheat Engine
Revision as of 04:04, 5 January 2018 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' cmovb ''destination, source'' cmovb is CMOVcc instruction, The cmovb (conditional move if below) check the state of '''CF''', if '''CF=1''' …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

command cmovb destination, source

cmovb is CMOVcc instruction, The cmovb (conditional move if below) check the state of CF, if CF=1 then condition satisfied and the cmovb will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovb is used for unsigned integers.


Command Parameters

Parameter Description
destination r16 / r32
source m16-r16 / m32-r32


Examples

cmovb dx,ax
cmovb cx,[bx]
cmovb edx,[edx+110]
cmovb eax,edx
cmovb esi,[00123abc]
cmovb edi,[UserDefinedSymbol]


See also

External links