📄 bexe.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 + -