The MASM Forum

General => The Campus => Topic started by: raymond1425 on October 27, 2015, 10:28:25 PM

Title: masm pause
Post by: raymond1425 on October 27, 2015, 10:28:25 PM
simple but works fine

pause dd 0

main proc
.....
......
mov pause,input("Press enter to exit")
ret
main endp
Title: Re: masm pause
Post by: dedndave on October 28, 2015, 12:40:25 AM
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"