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

📄 bexe.bat

📁 你想知道你是什么星座吗?这是一个用WIN32编的计算你是什么星座
💻 BAT
字号:
@echo off

if exist %1.exe del %1.exe

ml /c /coff /Zi %1.asm 
if not exist %1.obj goto mlerr

if not exist %1.res goto pos1
Link /SUBSYSTEM:WINDOWS /DEBUG /DEBUGTYPE:CV %1.obj %1.res 
echo     link with the resource file.
goto pos2

:pos1
Link /SUBSYSTEM:WINDOWS /DEBUG /DEBUGTYPE:CV %1.obj 
echo     without the resource file.

:pos2
del %1.obj

goto over

:mlerr
echo assemble error!

:over

⌨️ 快捷键说明

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