I am using MASM32 (version 10), and I would like to know what is the easiest way to output a string and an integer on screen. Please provide the full source code, and not just the specific lines.
Thank you.
Edit:
.386 .model flat, stdcall .stack .data stest db "This is a test", 0 .code main proc mov ah, 09h lea dx, stest int 21h main endp end main It crash without outputting anything. I tried several other things, with different problems, the only common thing is that I don't get the string displayed on screen :)