NASM - The Netwide Assembler

NASM Forum => Programming with NASM => Topic started by: gidak on April 27, 2011, 09:50:13 PM

Title: Nasm output
Post by: gidak on April 27, 2011, 09:50:13 PM
Can i output the nasm errors\warnings that i get to a text file on my computer?
So if i compile a asm file the errors will go to a file named err.txt?
Title: Re: Nasm output
Post by: Frank Kotler on April 27, 2011, 10:01:57 PM
Got ya covered. Very last command line switch: "-Z".

http://www.nasm.us/xdoc/2.09.08/html/nasmdoc2.html#section-2.1.14

Best,
Frank

Title: Re: Nasm output
Post by: gidak on April 27, 2011, 10:03:47 PM
Thanks man