EzhilsreeJ / EXPERIMENT--01-ALP-FOR-8086

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EXPERIMENT--01-ALP-FOR-8086

Name :EZHIL SREE J

Roll no : 212223230056

Date of experiment :16.08.2024

Aim: To Write and execute ALP on fundamental arithmetic and logical operations

Components required: 8086 emulator

Theory

Running The Emulator (emu8086) Intro 8086 Microprocessor Emulator, also known as EMU8086, is an emulator of the program 8086 microprocessor. It is developed with a built-in 8086 assembler. This application is able to run programs on both PC desktops and laptops. This tool is primarily designed to copy or emulate hardware. These include the memory of a program, CPU, RAM, input and output devices, and even the display screen. There are instructions to follow when using this emulator. It can be executed into one of the two ways: backward or forward. There are also examples of assembly source code included. With this, it allows the programming of assembly language, reverse engineering, hardware architecture, and creating miniature operating system (OS). The user interface of 8086 Microprocessor Emulator is simple and easy to manage. There are five major buttons with icons and titles included. These are “Load”, “Reload”, “Step Back”, “Single Step”, and “Run”. Above those buttons is the menu that includes “File”, “View”, “Virtual Devices”, “Virtual Drive”, and “Help”. Below the buttons is a series of choices that are usually in numbers and codes. At the leftmost part is an area called “Registers” with an indication of either “H” or “L”. The other side is divided into two, which enables users to manually reset, debug, flag, etc. What is 8086 emulator emu8086 is an emulator of Intel 8086 (AMD compatible) microprocessor with integrated 8086 assembler and tutorials for beginners. Emulator runs programs like the real microprocessor in step-by-step mode. it shows registers, memory, stack, variables and flags.

Running the Emulator :

  1. Download and install emu8086 (www.emu8086.com) It is usually installed in C:\EMU8086 subfolder in the “Windows” directory

  2. Run emu8086 icon (on the desktop or in the c:\EMU8086 folder of window) It has green color

  3. write the code for the appropriate program for ADDITION,SUBTRACTION, MULTIPLICATION, DIVISION operations

  4. Compile the program and check for the errors

  5. Run (once there is no syntax error)

  6. Click OK to see/view the output of your program on the Emulator screen.

  7. After running the program, another menu screen will be displayed, where you have the option to “View” symbol table,

image

  1. Click on emulate to start emulation

image

  1. If no errors are found click on run the program and check the status of various flags in the flags tab as shown below

image

Programs for arithmetic operations

Addition of 8 bit ALP

ORG 100h
MOV ax,11h;
MOV bx,20h;
ADD ax,bx;
HLT

Output

image

Subtraction of 8 bit numbers ALP

ORG 100h
MOV ax,31h;
MOV bx,20h;
SUB ax,bx;
HLT

Output

image

Multiplication alp

ORG 100h
MOV ax,31h;
MOV bx,20h;
MUL bx;
HLT

Output

image

Division alp

ORG 100h
MOV ax,10h;
MOV bx,05h;
DIV bx;
HLT

Output

image

Result :

Thus, To write and execute ALP on fundamental arithmetic operations is successful.

About