⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makeit.bat

📁 win32asm IDE和masm32 sdk 打包
💻 BAT
字号:
@echo off
: -------------------------------
: if resources exist, build them
: -------------------------------
if not exist rsrc.rc goto over1
D:\MASM32\BIN\Rc.exe /v rsrc.rc
D:\MASM32\BIN\Cvtres.exe /machine:ix86 rsrc.res
:over1

if exist %1.obj del arrdisp2.obj
if exist %1.exe del arrdisp2.exe

: -----------------------------------------
: assemble arrdisp2.asm into an OBJ file
: -----------------------------------------
D:\MASM32\BIN\Ml.exe /c /coff arrdisp2.asm
if errorlevel 1 goto errasm

if not exist rsrc.obj goto nores

: --------------------------------------------------
: link the main OBJ file with the resource OBJ file
: --------------------------------------------------
D:\MASM32\BIN\Link.exe /SUBSYSTEM:WINDOWS arrdisp2.obj rsrc.obj
if errorlevel 1 goto errlink
dir arrdisp2.*
goto TheEnd

:nores
: -----------------------
: link the main OBJ file
: -----------------------
D:\MASM32\BIN\Link.exe /SUBSYSTEM:WINDOWS arrdisp2.obj
if errorlevel 1 goto errlink
dir arrdisp2.*
goto TheEnd

:errlink
: ----------------------------------------------------
: display message if there is an error during linking
: ----------------------------------------------------
echo.
echo There has been an error while linking this project.
echo.
goto TheEnd

:errasm
: -----------------------------------------------------
: display message if there is an error during assembly
: -----------------------------------------------------
echo.
echo There has been an error while assembling this project.
echo.
goto TheEnd

:TheEnd

pause

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -