make32.bat
来自「此为本书配套光盘.本书主要内容包括:微型计算机基础知识、IBM-PC微型计算机系」· Batch 代码 · 共 26 行
BAT
26 行
REM make32.bat - Specific batch file for assembling/linking
REM the ModSum program
REM Revised: 2/1/02
@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 Sum_main.asm _display.asm _arrysum.asm _prompt.asm
if errorlevel 1 goto terminate
REM add the /MAP option for a map file in the link command.
LINK32 Sum_main.obj _display.obj _arrysum.obj _prompt.obj irvine32.lib kernel32.lib /SUBSYSTEM:CONSOLE /DEBUG
if errorLevel 1 goto terminate
dir %1.*
:terminate
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?