Batch assembling
You can assemble a sequence of separate assembler programs with a single invocation of the assembler, using the BATCH option. The object programs produced from this assembly can be link-edited into either a single load module or separate load modules.
When the BATCH option is specified, each assembler program in the sequence must be terminated by an END statement, including the last program in the batch. If an END statement is omitted, the program assembles with the next program in the sequence. If the END statement is omitted from the last program in the sequence, the assembler generates an END statement.
SECT1 CSECT Start of first load module
⋮
Source instructions
⋮
END End of first load module
PUNCH ' NAME SECT1(R)'
END
SECT2 CSECT Start of second load module
⋮
Source instructions
⋮
END End of second load module
PUNCH ' NAME SECT2(R)'
END
If separate TEXT files are required, you must either manually separate the BATCH- produced object modules into separate TEXT files, or issue two separate ASMAHL commands for separate source modules.