News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

masm pause

Started by raymond1425, October 27, 2015, 10:28:25 PM

Previous topic - Next topic

raymond1425

simple but works fine

pause dd 0

main proc
.....
......
mov pause,input("Press enter to exit")
ret
main endp

dedndave

the "inkey" macro does a good job

by itself, it will display "Press Any Key to Continue" and wait for a keypress
    inkey

if you don't like that text, you can add your own
    inkey "blah blah blah"