Author Topic: New to NASM  (Read 6075 times)

nobody

  • Guest
New to NASM
« on: October 05, 2005, 07:38:10 PM »
Can some one give me a very simple tutorial to using NASM and show me how to write text to the screen.

-The chicken man

Offline Frank Kotler

  • NASM Developer
  • Hero Member
  • *****
  • Posts: 2667
  • Country: us
Re: New to NASM
« Reply #1 on: October 06, 2005, 01:36:19 PM »
What OS? And (related), how simple do you want it? There's a *really* simple introduction on my web page (for dos):

http://home.comcast.net/~fbkotler

That won't get you very far. For an OS-neutral way to get text on the screen, "just call printf". Dr. Paul Carter's tut takes this approach, and so can be used with dos (djgpp) or Windows or Linux:

http://www.drpaulcarter.com/pcasm

For Windows- or Linux-specific examples, look in the "files" section of the "win32-nasm-users" or "linux-nasm-users" Yahoo groups...

Best,
Frank