Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!rochester!rutgers!ucla-cs!zen!ucbvax!hplabs!gatech!emory!platt From: platt@emory.uucp (Dan Platt) Newsgroups: comp.sys.ibm.pc Subject: Re: What to do with .ASM file Message-ID: <2192@emory.uucp> Date: Tue, 4-Aug-87 21:34:24 EDT Article-I.D.: emory.2192 Posted: Tue Aug 4 21:34:24 1987 Date-Received: Fri, 7-Aug-87 01:47:35 EDT References: <369@mtuxo.UUCP> Reply-To: platt@emory.UUCP (Dan Platt) Distribution: comp Organization: Math & Computer Science, Emory University, Atlanta Lines: 18 Keywords: assembler Summary: Assemble it. In article <369@mtuxo.UUCP> tmm1@mtuxo.UUCP (T.MORGAN) writes: > >This may seem like I a stupid question but: > How do you turn a .ASM file into an executable program. (?) >I belive it has something to do with LINK and DEBUG but I >am not sure. You need to assemble the program with an assembler. This produces an object file ( .OBJ) which may then be linked with the linkage editor. Some of these .ASM files may be intended for use with another language, whereby the object files need to be linked in with the object files produced by your compiler. If you don't have an assembler, you need to buy one; getting other languages is nice too. Dan