I'm writing on of my first assembly programs in MASM, and am trying to print out a number using StdOut. Here is my code (snippet):
.data
Su dword 0
.code
start:
mov Su, 65
invoke StdOut, addr Su
invoke ExitProcess, 0
end start
The problem is, instead of printing out 65, it prints out the ASCII representation A. How can I make it print out an integral value?