1. Open a command prompt. 2. Switch to drive M where we will put our assembly programs M: (press enter) 3. make a directory on drive M called assembly 4. MD ASSEMBLY 5. Change into the assembly directory. CD ASSEMBLY 6. We will create our first assembly program. Key in EDIT and press enter. Key in the program that you see in the file Prog1.JPG. 7. Save it as prog1.asm 8. Leave the editor 9. Do a directory listing. DIR 10. Assemble the program 11. Key in the following to ASSEMBLE the program C:\BC\BIN\TASM [name of the program] e.g. C:\BC\BIN\TASM PROG1 12. Key in the following to LINK the program C:\BC\BIN\TLINK PROG1 13. Do a directory listing. DIR 14. PROG1.EXE is the executable file 15. To run the program key in the following and press enter PROG1 16 The progam should have printed capital A --------------------------------------------------------------------