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