how to write a new program in emulator 8086.

how to write a new program in emulator 8086.

by Md.Tareq Rahman -
Number of replies: 0

 1. At first click on emu8086 and create new file.
.Then save it as Hello World.asm
.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.                                                                           6 6. you can see the output on screen.