Assembly Language Help (alang.hlp) (Table of Contents; Topic list)
Insert Source Code
                                        Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Syntax:   INCLUDE filename
 
            INCLUDE <filename>
 
  See also: INCLUDELIB, Angle brackets (<>), /I, /X
 
  Description:
 
     Inserts source code from <filename> into the current source file
     during assembly. If <filename> does not include a fully-specified
     path, the assembler searches the directory of the current file,
     the /I command-line include path or the PWB include path, and then
     the INCLUDE environment variable. Nested INCLUDE directives are
     allowed.
 
     The <filename> parameter is an existing file containing valid
     assembly-language statements and directives. No default file
     extension is assumed. Angle brackets are required if the filename
     or path includes a backslash, semicolon, greater-than, less-than,
     single quotation marks, or double quotation marks.
                                    -♦-