100% found this document useful (1 vote)
86 views

Mic Project

This document is a certificate and report for a micro project completed by students at Government Polytechnic, Jintur. The project involved writing an 8086 assembly language program to perform all arithmetic operations. It provides details of the students, guide, aims of the project, resources used, the program code, outputs, and skills developed. The certificate verifies that the students satisfactorily completed the micro project for their MIC course.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
86 views

Mic Project

This document is a certificate and report for a micro project completed by students at Government Polytechnic, Jintur. The project involved writing an 8086 assembly language program to perform all arithmetic operations. It provides details of the students, guide, aims of the project, resources used, the program code, outputs, and skills developed. The certificate verifies that the students satisfactorily completed the micro project for their MIC course.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

GOVERNMENT POLYTECHNIC, JINTUR

MICRO PROJECT
Academic year: 2022-23

TITLE OF PROJECT
Write a program to perform all arithmetic operation in
8086
Program: computer engineering
Course: MIC Course code: 22415
Roll no Student name Enrollment no
CO237 Prathamesh Mansukh Satale 2100940069
CO241 Omkar Ganesh Karkelwar 2100940075
CO242 Naresh Govind More 2100940078

Guided By: Y.S. Salame sir


MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
Certificate
This is to certify that Mr. ………………………………………………………………………………………..
of Forth Semester of Diploma in computer engineering of Institute, Govt. Polytechnic,Jintur
(0094) has completed the Micro Project satisfactorily in Subject - MIC (22415) for the
academic year 2022-23 as prescribed in the curriculum.

Place: government polytechnic, Jintur Enrollment No:…………………………..…………

Date: ……………………………………… Exam. Seat No: …………………………………….

Subject Teacher Head of The Department Principal

Seal of
Institution
Annexure-I

A MICRO PROJECT ON “WRITE A PROGRAM TO PERFORM ALL


ARITHMETIC OPERATION IN 8086 "
A micro-project proposal

1.0 Aims/Benefits of the micro project


To learn about the microprocessor instructions and developing a program. To develop a logic of
develop program.

2.0 Course outcome addressed


Develop an assembly language program using assembler

3.0 Action plane

4.0 Resources used

Sr no Name of resource used Specification quantity

1 textbook The 8088 &8086 1


Microprocessors
2 internet - -

3 Laptop Intel i5-11th gen 1


processor, 8GB RAM
Annexure-II
Micro-Project Report
Write a program to perform all arithmetic operation in 8086
.model small
.data
n1 dw 0006h
n2 dw 0003h
addn dw ?
subt dw ?
mult dw ?
divn dw ?
.code
mov ax,@data
mov ds,ax
mov ax,n1
add ax,n2
mov addn,ax
mov ax, n1
sub ax,n2
mov subt,ax
mov ax,n1
mul n2
mov mult,ax
mov ax,n1
div n2
mov divn,ax
mov ah,4ch
int 21h
end
..
..

..

.
3.0 Outputs of the Micro-Project

In this micro project, we get all the I knowledge of how to develop a program in assembly
language programming.

Output:
4.0 Skill Developed / Learning outcomes of this Micro-Project
a) a. Develop group discussion skills.
b) b. Communication skills improved.
c) c. MS WORD skills developed.
d) d. logic developed to write programs.

Conclusion

In this microproject we have developed a program to reverse block transfer. Logic is developed
to write a program.

Reference
Micro processor book

You might also like