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