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