go_debug.bat
来自「一个小巧的汇编价格工具」· Batch 代码 · 共 13 行
BAT
13 行
@echo off
set file=pex_main
set dir=e:\dev\toolz\pex
e:\dev\masm\bin\ml.exe /c /coff /Zi /Cp /Fl /Sc /Sg %file%.asm
e:\dev\masm\bin\link.exe /SECTION:.text,RWE /SUBSYSTEM:WINDOWS,4.0 /DEBUG /DEBUGTYPE:CV %file%.obj %file%.res
if errorlevel 1 goto End
del %file%.OBJ
del %file%.LST
copy %dir%\goat_files\*.* %dir%\*.exe
:End
pause
cls
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?