Difference between revisions of "Assembler:Commands:CMOVNLE"

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

Revision as of 06:36, 5 January 2018

command cmovnle destination, source

cmovnle is CMOVcc instruction, The cmovnle (conditional move if not less or equal) check the state of ZF, SF AND OF, if ZF=0 AND SF=OF then condition satisfied and the cmovnle will be executed. Otherwise it will be skipped, and the execution will continues with the instruction following it. cmovnle is used for signed integers.


Command Parameters

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


Examples

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


See also

External links