how to write a new program in emulator 8086.

Re: how to write a new program in emulator 8086.

by Md.Sayem Uddin -
Number of replies: 0
1.At first click on emu8086 and create new file.
2.Then save it as Hello World.asm
3.Copy the following code into that file. .model tiny ;code, data & program in 1 64K segment. .code ;code segment. MAIN PROC.
4.Compile the program and save the file.(.asm)
5.Run it and see the output on screen.