ASM2BIN.BAT
资源名称:bootmenu.zip [点击查看]
上传用户:yeshiping1
上传日期:2007-01-06
资源大小:29k
文件大小:0k
源码类别:
磁盘编程
开发平台:
Others
- @echo off
- REM This batch file builds file.bin from file.asm
- if not arg%1==arg%1 goto arg
- echo supply base name of file.asm, i.e. file
- goto exit
- :arg
- echo on
- masm %1,,;
- link boot-hdp,;
- @echo Ignore the 'no stack...' warning
- del %1.obj
- exe2bin %1
- del %1.exe
- :exit