The snippet below doesn't return 0 in VS2019 version 16.11.3. Why?
_text SEGMENT
;.486
;.model flat,stdcall
;.stack 4096
.code
main PROC
    mov al, 0
    add al, 5
    ret
main ENDP
_text ENDS
END
The console window is shown below:
The snippet below doesn't return 0 in VS2019 version 16.11.3. Why?
_text SEGMENT
;.486
;.model flat,stdcall
;.stack 4096
.code
main PROC
    mov al, 0
    add al, 5
    ret
main ENDP
_text ENDS
END
The console window is shown below:
 
    
    