Assembler:Commands:CMOVZ

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

command cmovz destination, source

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


Command Parameters

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


Examples

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


See also

External links