Difference between revisions of "Assembler:Commands:CMOVAE"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' cmovae ''destination, source'' cmovae is CMOVcc instruction, The cmovae (conditional move if above or equal) check the state of '''CF''', if…')
(No difference)

Revision as of 04:01, 5 January 2018

command cmovae destination, source

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


Command Parameters

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


Examples

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


See also

External links