Hello, I'm new to masm32.
I actually use RadAsm 2.2.1.6
and Windows 32-Bit of course.
I've been having problems with this code:
Title printing
.386 ;It doesn't changes if I try with .486 either :(
.model flat,stdcall
option casemap:none
include masm32rt.inc
.code
main:
printf("Ocarina",0)
inkey ;Same thing for inkey 0, inkey null, inkey "Any key to exit...".
invoke ExitProcess,0
end main
If I assemble -> Build -> Run, the process (called imprimiendo.exe) just hangs nothing appears in Windows. I've understood that a shell window should appear just waiting for the user to press any key to continue but it just doesn't happens. I don't have any build problems. I have to kill the process via task manager.
If I just erase the inkey line, everything works just fine but no shell windows appears, I've tried going with Tools -> GoTo Dos and run it from there, same thing. :|
Any ideas on how to solve this problem?