make16.bat
来自「想学习汇编语言的」· Batch 代码 · 共 38 行
BAT
38 行
@echo off
REM make16.bat
REM Revised 2/1/02
REM By: Kip R. Irvine
REM Assembles and links the current 16-bit ASM program.
REM
REM Command-line options (unless otherwise noted, they are case-sensitive):
REM
REM /nologo Suppress the Microsoft logo display
REM -Cp Enforce case-sensitivity for all identifiers
REM -Zi Include source code line information for debugging
REM -Fl Generate a listing file (see page 88)
REM /CODEVIEW Generate CodeView debugging information (linker)
REM %1.asm The name of the source file, passed on the command line
REM ************* The following lines can be customized:
PATH C:\Masm615
SET INCLUDE=C:\Masm615\INCLUDE
SET LIB=C:\Masm615\LIB
REM **************************** End of customized lines
REM Invoke ML.EXE (the assembler):
ML /nologo -c -Fl -Zi %1.asm
if errorlevel 1 goto terminate
REM Run the 16-bit linker:
LINK /nologo /CODEVIEW %1,,NUL,Irvine16;
if errorlevel 1 goto terminate
REM Display all files related to this program:
DIR %1.*
:terminate
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?