⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asm16.bat

📁 想学习汇编语言的
💻 BAT
字号:
@echo off
REM asm16.bat
REM Revised 2/1/02

REM Assemble the current source file
REM 
REM Command-line options (unless otherwise noted, they are case-sensitive):
REM 
REM /nologo	Suppress the Microsoft logo
REM -c		Assemble only (do not link)
REM -Zi		Include source code line information for debugging
REM -Fl		Generate a listing file (see page 88)
REM /CODEVIEW   Generate CodeView debugging information (linker)
REM %1.asm      The name of the source file, passed on the command line

REM ************* The following lines can be customized:
PATH C:\Masm615
SET INCLUDE=C:\Masm615\INCLUDE
REM **************************** End of customized lines

REM Invoke ML.EXE (the assembler):

ML /nologo -c -Fl -Zi %1.asm

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -