NASM INDEX
Assembling your first NASM .EXE program _______________________________________ Before you can run you first program, you'll have to assemble it into an .OBJ file, and then link it.You can use any linker (link, tlink, warplink etc.). 1) type: nasm -fobj hello1.asm hello1.asm will be assembled to form the file hello1.obj 2) type: tlink hello1; ------------------------------------------------------------------------- Ignore the Tlink Version 5.0 (Turbo C++ Version 3.0) "Warning: No stack" message. ------------------------------------------------------------------------- If is all OK, hello1.exe is created. To run, just type hello1 from the command line.