📄 make16.bat
字号:
@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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -