STEPS TO EXECUTE PROGRAM IN “8086 EMULATOR 4.08” 1. Open emu8086 by double clicking the icon 2. Open a new file either from ‘File’ option or ‘New’ option on the ribbon 3. Choose code template Empty Workspace 4. Start writing your program on the empty workspace a. Start always writing program using ORG directive along with starting address ORG 2000H (Remember to mention the type of number as HEX by append H after the number specifying address) b. End your program with RET/ HLT/END 5. Save your program with .asm extension 6. Emulate your program either pressing F5 or by clicking emulate on the ribbon 7. After emulating two windows will open a. Original source code b. Emulator 8. In the emulator you can view the memory from view memory 9. After opening memory (RAM) windows you can access each memory location as and when required (The memory is specified by the logical address Base Address : offset) 10. Now you can run the program either single step or simply full execution using run option in the emulator window