Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!ucbvax!UCF1VM.BITNET!JIMG From: JIMG@UCF1VM.BITNET (Jim Geist) Newsgroups: comp.lang.asm370 Subject: TXTLIBs Message-ID: <8912111323.AA03769@brazos.rice.edu> Date: 11 Dec 89 13:12:52 GMT Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: IBM 370 Assembly Programming Discussion List Distribution: inet Organization: The Internet Lines: 16 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