Mic Finally Done Abhi
Mic Finally Done Abhi
Mic Finally Done Abhi
On
Abhinandan Kakde
Vishal Akolkar
Nayan Akolkar
[
Acknowledgement
YourObediently
student
Abhinandan
kakde
••••••••••••••••••••••••••••••••• INDEX ••••••••••••••••••••••••••••••••••••
2. RATIONALE ......................................................................................... 3
5. ACTUALPROCEDUREFOLLOWED.......................................... 10-11
3
4. LITERATURE REVIEW
Factorial of a whole number 'n' is defined as the product of that number with every whole number
till 1. For example, the factorial of 4 is 4×3×2×1, which is equal to 24. It is represented using the
symbol '!' So, 24 is the value of 4! .
1) Directives:
a. DB (Define Byte):
The directive DB is used to define byte type variable. It can be used to define
single or multiple byte variables.
General form:-
Name of_ variable DB Initialization value
Ex:- NUM1 DB 10: Allot one memory location.
General form:-
ASSUME Seg _reg : Seg _name,…..Seg reg : Seg _name.
Where ASSUME is a assembler directive and Seg reg is any one of the segment register
i.e., DS, ES, SS, Sc _name is the name of the user defined segment and must be any valid
symbol except reserve keywords.
4
c. .CODE (Simplified Code Segment)
This simplified segment directive defines the code segment. All executable code
must be place in this segment. General form: -
.code
.data
e. .MODEL
This simplified segment directive creates default segments.
General form: -
.model memory models.
Memory models are:
1) TINY: Used for .com program.
2) SMALL: All data in one segment and all code in one segment.
3) MEDIUM: Data in more than one segment but code in one segment.
4) LARGE: Both data and code in more than one segment.
6
2) Instructions:
a. Mov Destination , Source
This data transfer instruction transfer data from source to destination. Source may be
register, memory location or immediate data. Destination may be register or memory
location. It can’t be immediate data.
b. MUL Source
This instruction multiplies and unsigned bytes from the source with an and unsigned
byte in the AL register or an unsigned word from the source with an and unsigned
word in the AX register.
When a byte is multiplied with the byte in Al then result is stored in AX register
because the result of multiplication of two 8 bit number can be as long as 16 bit.
When a word is multiplied with a word in AX then MSW the result in stored in DX
and MSW of result in AX register because result of multiplication of two 16 bit
number that is word can be as large as 32 bit . Operation:
If source is byte:
a.AX AL unsigned *8bitsource
If source is word:
a. DX:AX AX unsigned * 16 bit Source
EX: -
MUL CX
MUL BL
6
7
d. Loop Instruction
The LOOP instruction executes the group of instructions a number of times and it uses
relative addressing mode. The number of iterations will depend on the condition to be satisfied.
The CX register will perform the LOOP operation on the instructions to be iterated.
For every execution of LOOP instruction, the CX is automatically decremented by one without
affecting flags and performs a short jump to the target address. This loop will continue until the CX
becomes zero. When CX = 0, the execution of the loop will stop and the instructions after the
LOOP will start execution.
e. HLT Instruction :
The HLT instruction will cause the 8086 to stop fetching and executing instructions. The 8086 will
enter a halt state. The only ways to get the processor out of the halt state are with an interrupt
signal on the INTR pin, an interrupt signal on the NMI pin, or a reset signal on the RESET input.
8
Assembly language program development
tools: a. Editor:
b. Assembler:
Assembler is a program that translates assembly language program to the correct binary code
i.e. machine code for each instruction and generate the file called as object file with
extension .obj.
c. Linker:
Linker is a program which combines frequested, more than on separately
assembled module into one executable program and also generate .exe module.
d. Debugger:
Debugger is a program that allows the execution of a program in a single step mode under
the control of user. The process of locating and correcting error using debugger is known
as Debugging.
9
Ex: - DOS DEBUG COMMAND, TD (Turbo Debugger), MV (Microsoft Debugger).
5. PROCEDUREFOLLOWED
1.
6. OUTPUT OF MICROPROJECT
10
7. SKILL DEVELOPED / LEARNING OUTCOMES OF MICRO PROJECT
1. Communication
2. Leadership
11
3. Team management
4. Negotiation
5. Personal organization
6. Risk management
7. Critical thinking
8. Task management
12
8. APPLICATIONS OF MICRO – PROJECT
13
13