Tools:
- Text Editor (Suggested: Notepad++)
- DOSBox
- Compiler (Suggested: TASM/Turbo Assembler)
Download: http://bit.ly/dosboxTasm
Make the program:
- Make the assembly file in text editor
- Save it in a folder with tasm package folder inside it
Compile the program:
- Open DOSBox
- Type:
> mount g d:\assembly (can be replaced with your own directory)
> g:
> path g:\tasm\bin
> tasm test1.asm (can be replaced with your own file name)
> tlink/t test1.obj (can be replaced with your own file name)
> test1