📄 bldlib.bat
字号:
@echo off
echo Assembling library modules.
echo.
\masm32\bin\ml /nologo /c /coff *.asm
\masm32\bin\lib *.obj /out:colib.lib
: The following line works as well
: \masm32\bin\link -lib "*.obj" "/out:colib.lib"
echo.
del *.obj
del *.lst
@echo off
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -