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
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
skywalker,
I suppose those prompts are coming from link program. Add semicolon (;) to the end of its command line, they should disappear.
I suppose those prompts are coming from link program. Add semicolon (;) to the end of its command line, they should disappear.
Just like this:
;)
@ECHO OFF
masm %1.asm
;)