Top Banner
56
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: MicroProcessors
Page 2: MicroProcessors

Presented

To

Sir Usman Hummayu

Page 3: MicroProcessors

Presenters

Muhammad Umar RiazMuhammad Uzair Rasheed

Muhammad Shuaib Aslam

Page 4: MicroProcessors

4

Topic :

Microprocessor 8 Bit 16 Bit 32 Bit

Page 5: MicroProcessors

Introduction to 8 bit(8085) Microprocessor

Presented by- Muhammad Umar Riaz 2009-CPE-30 Department of Computer Engineering

UCE&T Multan

Page 6: MicroProcessors

Microprocessor

Brain of the computer silicon chip that contains a CPU First microprocessors emerged in

the early 1970. A microprocessor is designed to

perform arithmetic and logic operations

Page 7: MicroProcessors

8BIT MICROPROCSSORS

8085

Page 8: MicroProcessors
Page 9: MicroProcessors

INTRODUCTION

The features of INTEL 8085 are :

• It is an 8 bit processor.

• It is a single chip N-MOS device with 40 pins.

• It has multiplexed address and data bus.(AD0-AD7).

• It works on 5 Volt dc power supply.

• The maximum clock frequency is 3 MHz while minimum frequency is 500kHz.

• It provides 74 instructions with 5 different addressing modes.

Page 10: MicroProcessors

8085 INTRODUCTION

It provides 16 address lines so it can access 2^16 =64K bytes of memory.

It generates 8 bit I/O address so it can access 2^8=256 input ports.

It provides Acc ,one flag register ,6 general purpose registers and two special purpose registers(SP,PC).

It provides serial lines SID ,SOD.So serial peripherals can be interfaced with 8085 directly.

Page 11: MicroProcessors

8085 ARCHITECTURE

Page 12: MicroProcessors

Arithmetic and Logical group

Accumulator: It is 8 bit general purpose register. It is connected to ALU. So most of the operations are done in Acc.

Temporary register: It is not available for user All the arithmetic and logical operations are

done in the temporary register but user can’t access it.

Flag: It is a group of 5 flip flops used to know status of various operations done.

The Flag Register along with Accumulator is called PSW

or Program Status Word.

Page 13: MicroProcessors

Arithmetic and Logical group

Flag Register is given by:

S:Sign flag is set when result of an operation is negative.

Z:Zero flag is set when result of an operation is 0.Ac:Auxiliary carry flag is set when there is a carry

out of lower nibble or lower four bits of the operation.

CY:Carry flag is set when there is carry generated by an operation.

P:Parity flag is set when result contains even number of 1’s.

Rest are don’t care flip flops.

S Z X AC X P X CY

Page 14: MicroProcessors

Register Group

Temporary registers (W,Z):These are not available for user. These are loaded only when there is an operation being performed.

General purpose:There are six general purpose registers in 8085 namely B,C,D,E,H,L.These are used for various data manipulations.

Special purpose :There are two special purpose registers in 8085:

1. SP :Stack Pointer.

2. PC:Program Counter.

Page 15: MicroProcessors

Register Group

Stack Pointer: This is a temporary storage memory 16 bit register. Since there are only 6 general purpose registers, there is a need to reuse them .

Whenever stack is to be used previous values are PUSHED on stack and then after the program is over these values are POPED back.

Program Counter: It is 16 bit register used to point the location from which the next instruction is to be fetched.

When a single byte instruction is executed PC is automatically incremented by 1.

Upon reset PC contents are set to 0000H and next instruction is fetched onwards.

Page 16: MicroProcessors

INSTRUCTION REGISTER,DECODER & CONTROL

Instruction register:When an instruction is fetched , it is executed in instruction register.This register takes the Opcode value only.

Instruction decoder: It decodes the instruction from instruction register and then to control block.

Timing and control:This is the control section of µP.It accepts clock input .

Page 17: MicroProcessors

INSTRUCTIONS SET OF 8085

DATA TRANSFER GROUP

MOV Rd, Rs.(Move data from Rs to Rd).

Example:

MOV C,B. Move the content of register B to C.

Initially After execution

B=10H. B=10H.

C=20H. C=10H.

Flags Affected :No flags affected.

Addressing mode: Register.

Page 18: MicroProcessors

ARITHMETIC GROUP

ADD R (ADD register content with Acc and result in A ).

Example:

ADD C. (ADD the content of C with A).

Suppose the Data at C register is 10H.

Initially After execution

. C= 10H ,A=10H A=20H,C=10H.

Flags Affected :All flags are modified.

Addressing mode: Register

Page 19: MicroProcessors

LOGICAL GROUP

ANA R (Logically AND register content with Acc and result in A ).

Example:

ANA C (AND the content of C with A).

Suppose the Data at C register is 10H.

Initially After execution

C= 10H ,A=10H A=10H,C=10H.Flags Affected :S,Z,P are modified Cy=reset,AC=set.Addressing mode:Register.

Page 20: MicroProcessors

8085 Memory Interfacing

• Generally µP 8085 can address 64 kB of memory .

• Generally EPROMS are used as program memory and RAM as data memory.

• We can interface Multiple RAMs and EPROMS to single µP .

• Memory interfacing includes 3 steps :

1. Select the chip.

2. Identify register.

3. Enable appropriate buffer.

Page 21: MicroProcessors

8085 Memory Interfacing

The diagram of 2k interfacing is shown below:

A15-A8

LatchAD7-AD0

D7- D0

A7- A0

8085

ALE

IO/MRDWR

2K ByteMemory

Chip

WRRD

CS

A10- A0

A15- A113:8DECODER

Page 22: MicroProcessors

8085 Memory Interfacing

• In this example we saw that some address lines are used for interfacing while others are for decoding.

• It is called absolute decoding.

• We sometimes don’t requires that many address lines.So we ignore them.But this may lead to shadowing or multiple address.

• This type of decoding is called linear decoding or partial decoding.

• In partial decoding wastage of address takes place but it requires less hardware and cost is also less as compared with absolute one.

Page 23: MicroProcessors

Introduction to 16 bit(8086) Microprocessor

Presented by- Muhammad Uzair Rasheed

2009-CPE-03 Department of Computer Engineering

UCE&T BZU Multan

Page 24: MicroProcessors

The first 16 bit Microprocessor 8080

16-bit address bus (1974) Used in Altair computer

(early hobbyist PC) Characteristics

6 mm process 4500 transistors 2 MHz 8-bit word size

Page 25: MicroProcessors

Slide 25

8086 / 8088

16-bit processor (1978-9) IBM PC and PC XT Revolutionary products

Characteristics 3 mm process 29k transistors 5-10 MHz 16-bit word size

Page 26: MicroProcessors

16 bit Microprocessor(8086)

INTEL launched 8086 in 1978 8086 is a 16-bit microprocessor with

16-bit Data Bus 20-bit Address Bus

Page 27: MicroProcessors

8086 Internal Architecture 8086 employs parallel processing 8086 CPU has two parts which operate

at the same time Bus Interface Unit Execution Unit

CPU functions1. Fetch

2. Decode3. Execute

8086 CPU

Bus Interface Unit (BIU)

Execution Unit(EU)

Page 28: MicroProcessors

Bus Interface Unit

Sends out addresses for memory locations.

Fetches Instructions from memory. Reads/Writes data to memory. Sends out addresses for I/O ports. Reads/Writes data to Input/Output

ports.

Page 29: MicroProcessors

Execution Unit

Tells BIU (addresses) where to fetch instructions or data.

Decodes & Executes instructions.

Page 30: MicroProcessors

Architecture Diagram of 8086

Page 31: MicroProcessors

AH AL

BH BL

CH CL

DH DL

STACK POINTER (SP)

BASE POINTER (BP)

SOURCE INDEX (SI)

DESTINATION INDEX (DI)

EXTRA SEGMENT (ES)

CODE SEGMENT (CS)

STACK SEGMENT (SS)

DATA SEGMENT (DS)

INSTRUCTION POINTER (IP)

6 5 4 3 2 1

CONTROL SYSTEM

ARITHMETICLOGIC UNIT

FLAGS

Instruction Queue

OPERANDS

∑ MemoryInterface

EU

BIU

InstructionDecoder

Page 32: MicroProcessors

Execution Unit

Main components are Instruction Decoder Control System Arithmetic Logic Unit General Purpose Registers Flag Register Pointer & Index registers

Page 33: MicroProcessors

Instruction DecoderTranslates instructions fetched from

memory into a series of actions which EU carries out.Control System

Generates control signals to perform the internal operations of the microprocessor.

Arithmetic Logic UnitEU has a 16-bit ALU which can ADD,

SUBTRACT, AND, OR, increment, decrement, complement.

Page 34: MicroProcessors

General Purpose Registers

EU has 8 general purpose registers.

Can be individually used for storing 8-bit data.

AL register is also called Accumulator.

Two registers can also be combined to form 16-bit registers.

The valid register pairs are – AX, BX, CX, DX.

AH AL

BH BL

CH CL

DH DL

AH AL AX

BH BL BX

CH CL CX

DH DL DX

Page 35: MicroProcessors

Flag Register

8086 has a 16-bit flag register. Contains 9 active flags. There are two types of flags in 8086

Conditional flags – six flags, set or reset by EU on the basis of results of some arithmetic operations.

Control flags – three flags, used to control certain operations of the processor.

Page 36: MicroProcessors

Bus Interface Unit

Main Components are Instruction Queue Segment Registers Instruction Pointer

Page 37: MicroProcessors

AH AL

BH BL

CH CL

DH DL

STACK POINTER (SP)

BASE POINTER (BP)

SOURCE INDEX (SI)

DESTINATION INDEX (DI)

EXTRA SEGMENT (ES)

CODE SEGMENT (CS)

STACK SEGMENT (SS)

DATA SEGMENT (DS)

INSTRUCTION POINTER (IP)

6 5 4 3 2 1

CONTROL SYSTEM

ARITHMETICLOGIC UNIT

FLAGS

Instruction Queue

OPERANDS

∑ MemoryInterface

EU

BIU

InstructionDecoder

Page 38: MicroProcessors

Instruction Queue 8086 employs parallel processing. When EU is busy decoding or

executing current instruction, the buses of 8086 may not be in use.

At that time, BIU can use buses to fetch upto six instruction bytes for the following instructions.

BIU stores these pre-fetched bytes in a FIFO register called Instruction Queue.

When EU is ready for its next instruction, it simply reads the instruction from the queue in BIU.

Page 39: MicroProcessors

Pipelining

EU of 8086 does not have to wait in between for BIU to fetch next instruction byte from memory.

So the presence of a queue in 8086 speeds up the processing.

Fetching the next instruction while the current instruction executes is called pipelining.

Page 40: MicroProcessors

Memory Segmentation

8086 has a 20-bit address bus So it can address a maximum of

1MB of memory 8086 can work with only four 64KB

segments at a time within this 1MB range

These four memory segments are called Code segment Stack segment Data segment Extra segment

Page 41: MicroProcessors

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

Memory

0000016

FFFFF16

1MB Address Range

64KB Memory Segment

Only 4 such segments can be addressed at a time

4

5

6

7

Page 42: MicroProcessors

Code SegmentThat part of memory from where BIU

is currently fetching instruction code bytes. Stack Segment

A section of memory set aside to store addresses and data while a subprogram executes.

Data & Extra SegmentsUsed for storing data values to be

used in the program.

Page 43: MicroProcessors

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

Memory

0000016

FFFFF16

1MB Address Range

Code Segment

Stack Segment

Data & Extra Segments

Page 44: MicroProcessors

Instruction Pointer (IP) Register

a 16-bit register. Holds 16-bit offset, of the next

instruction byte in the code segment.

Page 45: MicroProcessors

Stack Segment (SS) Register Stack Pointer (SP) Register

It is located in BIU. SP register holds a 16-bit offset from

the start of stack segment. It is located in EU

Page 46: MicroProcessors

Other Pointer & Index Registers Base Pointer (BP) register. Source Index (SI) register. Destination Index (DI) register.

Can be used for temporary storage of data

Main use is to hold data in one of the segments.

Page 47: MicroProcessors

Introduction to 32 bit(80386) Microprocessor

Presented by- Muhammad Shuaib Aslam

2009-CPE-15 Department of Computer Engineering

UCE&T Multan

Page 48: MicroProcessors

Microprocessor

Microprocessor is multipurpose, programmable logic device that reads the binary instruction from storage device called memory, accepts the binary data as input and processes data according to those instructions, and provides the results as output. Actually microprocessor is a semiconductor chip consisting of electronic circuit. It is capable of performing various computing functions and making decisions to change the sequence of program Execution.

Page 49: MicroProcessors

Microprocessor is broadly divided into three parts. Arithmetic logic Unit : Arithmetic logic unit, the part of a computer that

performs all arithmetic computations, such as addition and multiplication, and all comparison operations. The ALU is one component of the CPU (central processing unit).

Registers: A register is one of a small set of data holding places

that are part of a computer processor . A register may hold a computer instruction , a storage address, or any kind of data

Control Unit : The control unit is the circuitry that controls the flow of

information through the processor, and coordinates the activities of the other units within it.

Page 50: MicroProcessors

History of 80386

The Intel 80386, also known as the i386, or just 386, was a 32-bit microprocessor introduced by Intel in 1985. The first versions had 275,000 transistors and were used as the central processing unit (CPU) of many workstations and high end personal computers of the time.

The 80386 could correctly execute most code intended for earlier 16-bit x86 processors such as the 8088 and 80286 that. Following the same tradition, modern 64-bit x86 processors are able to run most programs written for older chips, all the way back to the original 16-bit 8086 of 1978. Over the years, successively newer implementations of the same architecture have become several hundreds of times faster than the original 80386 (and thousands of times faster than the 8086).

Page 51: MicroProcessors
Page 52: MicroProcessors

The 80386 was launched in October 1985, but full-function chips were first delivered in the third quarter of 1986. Mainboards for 80386-based computer systems were and expensive at first, but manufacturing was rationalized upon the 80386's mainstream adoption. The first personal computer to make use of the 80386 was designed and manufactured by Compaq and marked the first time a fundamental component in the IBM PC compatible de facto-standard was updated by a company other than IBM.

In May 2006, Intel announced that 80386 production would stop at the end of September 2007Although it had long been obsolete as a personal computer CPU, Intel and others had continued making the chip for embedded systems. Such systems using an 80386 or one of many derivatives are common in aerospace technology, among others.

Page 53: MicroProcessors
Page 54: MicroProcessors

•The Instruction unit decodes the opcode bytes received from the 16-byte instruction code queue and arranges them in a 3- instruction decoded instruction queue.

•After decoding them pass it to the control section for deriving the necessary control signals. The barrel shifter increases the speed of all shift and rotate operations.

• The multiply / divide logic implements the bit-shift-rotate algorithms to complete the operations in minimum time.

•Even 32- bit multiplications can be executed within one microsecond by the multiply / divide logic.

Page 55: MicroProcessors

THE END

Page 56: MicroProcessors

Thank You

Have a Nice Day

56www.eazynotes.com

Gursharan Singh [email protected]

n