mk.bat
来自「工欲善其事」· Batch 代码 · 共 12 行
BAT
12 行
@echo off
ml /c /coff hhlookup.asm
link /subsystem:windows /filealign:512 hhlookup.obj
REM if you want a smaller file, use this likn argument. It's OK for smallish files when
REM you really want them to be small, but don't use it for larger apps - merging code and
REM data means .code can't be read directly from the executable on paging, and will thus
REM have to be paged to disk... performance decrease.
REM
REM link /subsystem:windows /filealign:512 /merge:.data=.text /section:.text,rwe hhlookup.obj
REM
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?