This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
考虑以下代码:
.586
.model flat,stdcall
.data
.code
main PROC
mov ax,0
push ax
popf
mov bx,7FFFh
add bx,1 //the value of bx is 8000h, but the parity flay is 1,why?
Ret
main endp
END main