0% found this document useful (0 votes)
62 views1 page

NASM Installation Manual

The document provides instructions for downloading and installing an assembly software package, creating and running a simple assembly program using the software. The key steps are to download and extract assembly files to a folder, open the folder in DOS prompt, use the editor to write a program, assemble and run it using commands to generate output files and debug step-by-step with a debugger.

Uploaded by

Malik Farid
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views1 page

NASM Installation Manual

The document provides instructions for downloading and installing an assembly software package, creating and running a simple assembly program using the software. The key steps are to download and extract assembly files to a folder, open the folder in DOS prompt, use the editor to write a program, assemble and run it using commands to generate output files and debug step-by-step with a debugger.

Uploaded by

Malik Farid
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Dear Student,

1. First of all download “AssmSoft.Zip” from the following link


http://vulms.vu.edu.pk/Courses/CS401/Downloads/AssmSoft.zip

2. Now make a folder on Your C or D drive with name “Assembly”.

3. Unzip all three files in Assembly folder (make sure you have
combined all the files from each folder in the single folder named
Assembly).

4. The process of installing is complete now.

5. Go to Dos prompt from Start Up menu->Programs-->Accessories--


>Command prompt

6. Now you would see a prompt like C :\> on Dos prompt.

7. Type C :\> cd assembly and press enter the you would see a prompt
as C:\ Assembly>

8. Now type Edit ex01.asm on C:\Assembly> prompt and write your


program.

9. When you have finished writing program, save it and press Alt+f+x to
go back to Dos prompt.

10. Now type the following command to assemble and create the com and
lst files.

c:\assembly> nasm ex01.asm -o ex01.com -l ex01.lst

11. Type the following command to open the com file in the AFD debugger.

c:\assembly> afd ex01.com

12. Now keep on pressing F2 key to check the execution of the program
step by step.

13. For executing the program at once type

CMD > G

Press Enter

14. To exit from the debugger type


CMD > quit
Press Enter

You might also like