After I compile this (MASM32,CONSOLE), I get the Windows screen "bla.exe encountered a problem and needs to close. We are...". Does anyone see anything wrong with this. It should output "a" character to console.
Code:.386
.model flat,stdcall
.CODE
start:
mov dl, 97
mov ah, 2h
int 21h
ret
end start
