📄 make32.bat
字号:
REM make32.bat - Batch file for assembling/linking 32-bit Assembly programs
REM Revised: 11/3/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 B_main.asm Bsort.asm FillArry.asm PrtArry.asm BSearch.asm
if errorlevel 1 goto terminate
REM add the /MAP option for a map file in the link command.
LINK32 B_main.obj Bsearch.obj Bsort.obj FillArry.obj PrtArry.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 + -