COBOL Manual for TNS and TNS/R Programs
Program Compilation
HP COBOL Manual for TNS and TNS/R Programs—522555-006
11-26
Listing Creation
Topics:
•
Listing Creation
•
Object File Creation
•
Manipulating Object Files
•
Compilation Statistics
•
Completion Codes
Listing Creation
The listing is added to the end of the listing (OUT) file. The listing file can be either a
disk file or nondisk file (see Starting a Compilation). If it is a disk file, it must exist
before you start the compilation.
To create a listing file, use the command:
disk-file-name
is a disk file name (see the Guardian Procedure Calls Reference Manual).
pages
is the number of extended segment pages.
TYPE E
specifies an entry-sequenced file.
REC 132
specifies 132-character records (partial lines are space-filled on the right through
column 132).
EXT pages
is necessary only if disk-file-name exceeds the standard number of allocated
segments.
For more information, see Source Program Listing.
FUP CREATE disk-file-name, TYPE E, REC 132[, EXT pages]