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

📄 make16.bat

📁 此为本书配套光盘.本书主要内容包括:微型计算机基础知识、IBM-PC微型计算机系统概述、汇编语言程序设计基本方法、三大结构程序设计、子程序设计、汇编语言程序设计等内容。
💻 BAT
字号:
@echo off
REM Name this file make16.bat
REM Revised 1/21/02

REM Assembling and linking with ML.EXE, along with the book's link library. 
REM 
REM Command-line options (unless otherwise noted, they are case-sensitive):
REM 
REM /Cp         Enforce case-sensitivity for all identifiers
REM /Zi		Include source code line information for debugging
REM /Fm		Generate a MAP file (see page 89)
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
SET LIB=c:\masm615\lib
REM **************************** End of customized lines

REM Invoke ML.EXE (the assembler):

ML /nologo -c -Fl -Zi seg2.asm seg2a.asm
if errorlevel 1 goto terminate

REM Run the 16-bit linker:

LINK /nologo /CODEVIEW seg2 seg2a,,seg2,Irvine16;
if errorlevel 1 goto terminate

REM Display all files related to this program:
DIR %1.*

:terminate
pause

⌨️ 快捷键说明

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