How can I modify this batch so I don't have to hit Enter 3 times?
I am trying to "wean" myself from writing any more Tasm code.

:lol:

\16_Bit\ml /omf /c %1.asm
\16_Bit\link %1.obj
del %1.obj
del %1.map
Posted on 2010-05-27 11:30:42 by skywalker
skywalker,

I suppose those prompts are coming from link program. Add semicolon (;) to the end of its command line, they should disappear.
Posted on 2010-05-27 11:40:28 by baldr
Just like this:
@ECHO OFF
masm %1.asm


;)
Posted on 2010-06-04 19:28:49 by nathanpc