I am using masm32 to compile and link on windows 7, which works just fine with below code. However invoking stdOut isn\'t simply printing anything on my command prompt. what am
Solved... i was using the wrong parameter for the linker
How to link it correctly
ml /c /coff /Cp hello.asm link /subsystem:console /libpath:c:\masm32\lib hello.obj
How NOT to link this program
ml /c /coff /Cp hello.asm link /subsystem:windows /libpath:c:\masm32\lib hello.obj