Here's the mlexe.bat:
ML /Zi /c /Fl /coff %1.asm
LINK /subsystem:console %1.obj
It can be used this way:
mlexe hello
But I want it to wor开发者_如何学运维k this way:
mlexe hello.asm
How to modify it?
See using batch parameters, you need %~n1
.
精彩评论