From: eplmst AT lu DOT erisoft DOT se (Martin Stromberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: NASM Command line Date: 4 Sep 2001 13:34:41 GMT Organization: Ericsson Erisoft AB, Sweden Lines: 16 Message-ID: <9n2l9h$5f9$1@antares.lu.erisoft.se> References: <3B94D076 DOT FF60BDB0 AT crbkpc DOT com> NNTP-Posting-Host: merope.lu.erisoft.se X-Newsreader: TIN [version 1.2 PL2] To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Chris Smith (csmith AT crbkpc DOT com) wrote: : c:\>nasm16 -f bin myfile.asm -o myfile.com : nasm: more than one input file specified : type 'nasm -h' for help : I've read all the docs and searched with web with little luck. Obviously : I must be missing something trivial. If anyone could please let me know : what it is, I'd really appreciate it. IIRC, nasm is very picky on the order of its arguments. Try "nasm16 -o myfile.com -f bin myfile.asm". Right, MartinS