?? 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 + -