make32.bat
来自「此为本书配套光盘.本书主要内容包括:微型计算机基础知识、IBM-PC微型计算机系」· Batch 代码 · 共 26 行
BAT
26 行
REM make32.bat - Custom batch file for assembling/linking the
REM WinApp.asm program.
REM Revised: 2/1/01
@echo off
cls
REM The following three lines can be customized for your system:
REM ********************************************BEGIN customize
PATH C:\Masm615
SET INCLUDE=C:\Masm615\include
SET LIB=C:\Masm615\lib
REM ********************************************END customize
ML -Zi -c -Fl -coff %1.asm
if errorlevel 1 goto terminate
REM add the /MAP option for a map file in the link command.
LINK32 %1.obj kernel32.lib user32.lib /SUBSYSTEM:WINDOWS
if errorLevel 1 goto terminate
dir %1.*
:terminate
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?