[comp.lang.asm370] TXTLIBs

JIMG@UCF1VM.BITNET (Jim Geist) (12/11/89)

    You can't use TXTLIB's with ASSIST; it doesn't support linking in
external modules.  If you want to do that, you have to use the system
assembler instead.  The relevant commands (under CMS) should be:

GLOBAL TXTLIB yourtxtlib
ASSEMBLE yourprogram
LOAD yourprogram
GENMOD yourprogram

This will generate a module with the same name as your program.

The macros for CMS are different from ASSIST; see the CMS Macro Reference
Guide.

                                JimG