APPENDIX B CREATING PROCEDURE OF ASSEMBLY SOURCE FILE (Sub tool chain)
S5U1C88000C MANUAL II
EPSON
255
WORKBENCH/DEV TOOLS/OLD ASSEMBLER
B.3.6 Source File Insertion Pseudo-Instruction [sap88 only]
Source file insertion pseudo-instruction is a pseudo-instruction to read and insert other files into the
optional location of source file.
INCLUDE
*
This instruction can only be used in the structured preprocessor sap88. The sap88 expands this instruc-
tion and creates the source file in which the specified file is inserted. In the cross assembler asm88, this
instruction cannot be used and will cause an error if used.
Name:
INCLUDE
.....Another file insertion
Format:
INCLUDE <file name>
Functions:
This instruction reads the specified file in the following an INCLUDE statement.
Including can be nested to optional depths. Another file can be further included into a file that is
already included.
The sap88 analyses this pseudo-instruction and creates the output file in which the specified file is
inserted. This pseudo-instruction is not transferred to the asm88 as is.
Examples:
include chargen.s
;
Character generator
include utilsub
;
General purpose subroutine group
Limitation:
This instruction can only be used in the structured preprocessor sap88. In the cross assembler asm88,
it cannot be used and will cause an error if used.