Avery Dennison 6035 Programmer Manual Rev.A 7/98 User Manual
Page 127

7/9/98
ROM-DOS 6.22 Command Descriptions 3-69
I N C L U D E
CONFIG.SYS
Purpose
Includes the contents of one configuration block into another. The
instructions from the originating instruction block, as well as the
included block, are carried out. This command can only be used within
a CONFIG.SYS configuration block.
INCLUDE = blockname
Remarks
INCLUDE is useful for sets of instructions common to several system
configurations. The commands can be defined once in a single
configuration block and then inserted into other configuration blocks
via the INSERT command. See the “Using Multiple Configurations” for
more details.
Examples
Carries out instructions in the configuration block labeled
[WORDPROC] if WORDPROC was chosen from a CONFIG.SYS. The
instructions in the INCLUDED block labeled [MISC] is also implemented
as part of the [WORDPROC] block of instructions.
.
.
[MISC]
device=mouse.sys
device=c:\netword\loadnet.sys
[WORDPROC]
files=20
buffers=10
set path=c:\bin;c:\wp;c:\dict
INCLUDE=MISC
.
.