simple but works fine
pause dd 0
main proc
.....
......
mov pause,input("Press enter to exit")
ret
main endp
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"