exebuild16.bat
来自「汇编程序在WINDOWS下用来学习8086汇编语言的」· Batch 代码 · 共 10 行
BAT
10 行
: This batch file is an example of how to assemble and link at the dos prompt.
: It is not required. You can assemble and link from within WinAsm Studio.
: To link, you must use a 16-bit linker, such as the one in the archive at
: this URL- http://win32assembly.online.fr/files/Lnk563.exe
: Rename the Link.exe file to Link16.exe and copy it into the \masm32\bin folder.
\masm32\bin\ml /c DosExe.asm
\masm32\bin\link16 DosExe.obj;
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?