Author Topic: Nasm output  (Read 6778 times)

Offline gidak

  • Jr. Member
  • *
  • Posts: 6
Nasm output
« 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?

Offline Frank Kotler

  • NASM Developer
  • Hero Member
  • *****
  • Posts: 2667
  • Country: us
Re: Nasm output
« Reply #1 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


Offline gidak

  • Jr. Member
  • *
  • Posts: 6
Re: Nasm output
« Reply #2 on: April 27, 2011, 10:03:47 PM »
Thanks man