how to write a new program in emulator 8086.

how to write a new program in emulator 8086.

by Bulbul Ahmed Bulbul -
Number of replies: 1

  1. Create new file and save it as Hello World.asm.
  2. Copy the following code into that file. .model tiny ;code, data & program in 1 64K segment. .code ;code segment. MAIN PROC.
  3. Now compile the program and save the HelloWorld.com file.
  4. Run it.
  5. You can see the output on the screen.

In reply to Bulbul Ahmed Bulbul

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

by Md.Sayem Uddin -
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.