汇编-jz零标志位ZF=1则跳转(为零则跳转)
.386 .model flat,stdcall option casemap:none .stack 4096 Include Irvine32.inc includelib Irvine32.lib ExitProcess PROTO,dwExitCode:DWORD .data .code main PROC and eax,0 ;零标志位ZF=1 jz t1 ;零标志位ZF=1则跳转(为零则跳转) mov ebx,02h jmp t2 t1: mov eax ,02h t2: INVOKE ExitProcess,0 main ENDP END main