Check-Menus.com

setz menu

by Makenzie Hintz MD Published 2 years ago Updated 2 years ago
image

Description

The setz sets the byte in the destination operand to 1 if the Zero Flag (ZF) is set, otherwise sets the operand to 0.

Example

cmp [ebp+VersionInformation.dwPlatformID], 2 ; if VersionInformation.dwPlatformID=2, ZF=1 setz al ; AL register will be set to 1 if VersionInformation.dwPlatformID=2 (VER_PLATFORM_WIN32_NT) ; The operating system is Windows 7, Windows Server 2008, Windows Vista, Windows Server 2003, ; Windows XP, or Windows 2000.

image
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 1 2 3 4 5 6 7 8 9