8086 Microprocessor
8086 Microprocessor
E-tutorial
AMITY Microprocessor and
POLYTECHNIC Application
8086 Microprocessor
Intel 8086
MICROPROCESSOR
ARCHITECTURE
2
Features
• It is a 16-bit μp.
• 8086 has a 20 bit address bus can access up
to 220memory locations (1 MB).
• It can support up to 64K I/O ports.
• It provides 14, 16 -bit registers.
• Word size is 16 bits and double word size is
4 bytes.
• It has multiplexed address and data
bus AD0- AD15 and A16 – A19.
3
• 8086 is designed to operate in two modes,
Minimum and Maximum.
4
Intel 8086 Internal Architecture
5
Internal architecture of 8086
• 8086 has two blocks BIU and EU.
• Bus Interface Unit (BIU) and Execution Unit (EU)
• The BIU handles all transactions of data and
addresses on the buses for EU.
• The BIU performs all bus operations
such as
instruction fetching, reading and writing
operands for memory and calculating the
addresses ofthe memory operands. The
instruction are transferred to the
instruction
bytes queue.
6
• EU executes instructions from the
instruction system byte queue.
• BIU contains Instruction queue, Segment
registers, Instruction pointer, Address
adder.
• EU contains Control circuitry, Instruction
decoder, ALU, Pointer and Index
register, Flag register.
7
EXECUTION UNIT
• Decodes instructions fetched by the BIU
• Generate control signals,
• Executes instructions.
8 bits 8 bits
AH AL
AX Accumulator
BH BL Base
BX
CH CL Count
CX
DX DH DL
Data
SP Stack Pointer
Pointer
BP Base Pointer
SI
Source Index
Index
DI Destination Index
9
EXECUTION UNIT – General Purpose Registers
Register Purpose
AX Word multiply, word divide, word I /O
AL Byte multiply, byte divide, byte I/O, decimal
arithmetic
AH Byte multiply, byte divide
U U U U OF DF IF TF SF ZF U AF U PF U CF
U - Unused 12
EXECUTION UNIT – Flag Register
Flag Purpose
Carry (CF) Holds the carry after addition or the borrow after subtraction.
Also indicates some error conditions, as dictated by some
programs and procedures .
Parity (PF) PF=0;odd parity, PF=1;even parity.
Auxiliary (AF) Holds the carry (half – carry) after addition or borrow after
subtraction between bit positions 3 and 4 of the result
(for example, in BCD addition or subtraction.)
Zero (ZF) Shows the result of the arithmetic or logic operation.
Z=1; result is zero. Z=0; The result is non zero
Sign (SF) Holds the sign of the result after an arithmetic/logic
instruction
Positive execution. S=1; negative, S=0 13
Flag Purpose
A control flag.
Trap (TF) Enables the trapping through an on-chip debugging
feature.
A control flag.
Interrupt (IF) Controls the operation of the INTR (interrupt request)
I=0; INTR pin disabled. I=1; INTR pin enabled.
A control flag.
Direction (DF) It selects either the increment or decrement mode for DI
and /or SI registers during the string instructions.
Overflow occurs when signed numbers are added or
Overflow (OF) subtracted. An overflow indicates the result has exceeded
the capacity of the Machine
15
Execution unit – Flag Register
• Six of the flags are status indicators reflecting
properties of the last arithmetic or logical instruction.
• For example, if register AL = 7Fh and the instruction
ADD AL,1 is executed then the following happen
AL = 80h
CF = 0; there is no carry out of bit 7
PF = 0; 80h has an odd number of ones
AF = 1; there is a carry out of bit 3 into bit 4
ZF = 0; the result is not zero
SF = 1; bit seven is one
OF = 1; the sign bit has changed 16
BUS INTERFACE UNIT (BIU)
Contains
• 6-byte Instruction Queue (Q)
• The Segment Registers (CS, DS, ES, SS). The Instruction
• Pointer (IP).
• The Address Summing block (Σ)
17
THE QUEUE (Q)
1 MB
address 1Mbyte of
memory. Extra segment (64KB)
• The Complete physically
available memory may be Stack segment (64KB)
divided into a number of
logical segments.
FFFFF
19
The size of each segment is 64 KB
20
Cont. …….
• The 4 segments are Code, Data, Extra and Stack
segments.
• A Segment is a 64kbyte block of memory.
• The 16 bit contents of the segment registers in the BIU
actually point to the starting location of a particular
segment.
• Segments may be overlapped or non-overlapped
21
Segment registers
22
Memory Address Generation
Adder
23
24
Segment and Address register
combination
• CS:IP
• SS:SP SS:BP
• DS:BX DS:SI
EU BIU
AX AH AL
IP
BX BH BL Fetch &
D
store code CS DS ES SS
CX CH CL bytes in
E C
PIPELINE C
DX DH DL
O PIPELINE BX DI SP
C (or) O DI BP
SP D QUEUE
D IP SI
O
E
E
BP D O I
SI N
E U
T
R 26
DI
27