Control Unit Operation

40
Control Unit Operation Group 1 Michael Bouizza Rolando Abreu Carlos De Cossio Ricardo Urena Michael Hernandez Robert Romano Sun Li Yang

description

Group 1 Michael Bouizza Rolando Abreu Carlos De Cossio Ricardo Urena Michael Hernandez Robert Romano Sun Li Yang. Control Unit Operation. Micro-Operations. A computer executes a program Fetch/execute cycle Each cycle has a number of steps Called micro-operations - PowerPoint PPT Presentation

Transcript of Control Unit Operation

Page 1: Control Unit Operation

Control Unit Operation

Group 1

Michael BouizzaRolando Abreu

Carlos De CossioRicardo Urena

Michael HernandezRobert Romano

Sun Li Yang

Page 2: Control Unit Operation

Micro-Operations

A computer executes a program

Fetch/execute cycle

Each cycle has a number of steps

Called micro-operations

Atomic operation of CPU

Page 3: Control Unit Operation

Constituent Elements of Program Execution

Page 4: Control Unit Operation

Fetch - 4 Registers

Memory Address Register (MAR)

Memory Buffer Register (MBR)

Program Counter (PC)

Instruction Register (IR)

Page 5: Control Unit Operation

Fetch Sequence Address of next instruction is in PC Address (MAR) is placed on address bus Control unit issues READ command Result appears on data bus Data from data bus copied into MBR PC incremented by 1 Data (instruction) moved from MBR to IR MBR is now free for further data fetches

Page 6: Control Unit Operation

Fetch Sequence (symbolic)

t1: MAR <- (PC) t2: MBR <- (memory) PC <- (PC) +1 t3: IR <- (MBR) (tx = time unit/clock cycle)or t1: MAR <- (PC) t2: MBR <- (memory) t3: PC <- (PC) +1 IR <- (MBR)

Page 7: Control Unit Operation

Rules for Clock Cycle Grouping

Page 8: Control Unit Operation

Indirect Cycle

Page 9: Control Unit Operation

Interrupt Cycle

Page 10: Control Unit Operation

Execute Cycle (ADD)

ADD R1, X

Page 11: Control Unit Operation

Execute Cycle (ISZ)

ISZ X - increment and skip if zero

Page 12: Control Unit Operation

Execute Cycle (BSA)

BSA X - Branch and Save Address

Address of instruction following BSA is saved in X

Execution continues from X+1

Page 13: Control Unit Operation

Instruction Cycle Each phase decomposed into sequence of

elementary micro-operations Such as fetch, indirect, and interrupt cycles. Execute cycle

One sequence of micro-operations for each opcode

Assume new 2-bit register Instruction cycle code (ICC) designates which part

of cycle processor is in▪ 00: Fetch▪ 01: Indirect▪ 10: Execute▪ 11: Interrupt

Page 14: Control Unit Operation

Data Flow - Fetch Cycle

Page 15: Control Unit Operation

Data Flow – Indirect Cycle

Page 16: Control Unit Operation

Data Flow – Interrupt Cycle

Page 17: Control Unit Operation

Execute Cycle

Can take many forms, depending on the instruction located in the IR.

May Involve transferring data among registers, read/write from memory or I/O, and

This cycle may involve transferring data among registers, read or write from memory or I/O.

Page 18: Control Unit Operation

Functional Requirements

Define basic elements of processor Describe micro-operations processor

performs Determine functions control unit

must perform

Page 19: Control Unit Operation

CPU with the System Bus

Page 20: Control Unit Operation

Basic Elements of a Processor ALU Registers Internal data paths External data paths Control Unit

Page 21: Control Unit Operation

Types of Micro-operation Transfer data between registers

Transfer data from register to external

Transfer data from external to register

Perform arithmetic or logical ops

Page 22: Control Unit Operation

Functions of Control Unit

Sequencing Causing the CPU to step through a series

of micro-operations

Execution Causing the performance of each micro-

op

Page 23: Control Unit Operation

Control Signals

Page 24: Control Unit Operation

Control Signals Output

Electronic Signals that execute instructions

In CPU Causes Data Transfer Executes Instructions

In Control Bus Sends instructions out to I/O devices

Ex: Modem, Soundcard & Video card Sends signals to Memory

Page 25: Control Unit Operation

Modern I/O Controllers

Serial ATA Raid Controller on PCI Express

Page 26: Control Unit Operation

Control Signal Sequence – Fetch

MAR to PC Opens Communication Between PC and

MAR MBR to Memory

Steps Listed: Opens Communication Between MAR

and Address Bus Memory gets Read Control Signal Communication open Between Data Bus

and MBR

Page 27: Control Unit Operation

Data Paths and Control Signals

Page 28: Control Unit Operation

Internal Organization

Single internal bus Gates used in order to move through the buss Control Signals will send out electronics signals

to guide the transfer of information from the external systems bus

Temporary storage in registers are used for the proper functionality of ALU

Page 29: Control Unit Operation

CPU with Internal Bus

Page 30: Control Unit Operation

Intel 8085 CPU Block Diagram

Page 31: Control Unit Operation

Intel 8085 Pin Configuration

Page 32: Control Unit Operation

Intel 8085 OUT InstructionTiming Diagram

Page 33: Control Unit Operation

Hardwired Implementation

The control unit inputs signals are a combination of: Opcode Bits. Other signals such as interrupts, or

condition codes. Timing info (T1 to Tn). These signals

are essential for timing for proper sequencing through instruction cycles.

Page 34: Control Unit Operation

Control Unit with Decoded Inputs

Page 35: Control Unit Operation

Hardwired Implementation

Instruction register the part of the CPU’s control unit that stores the instruction currently being executed or decoded.

Op-code causes different control signals for each different instruction

Unique logic for each op-code Decoder takes encoded input and

produces single output n binary inputs and 2n outputs

Page 36: Control Unit Operation

Hardwired Implementation

Clock Repetitive sequence of pulses Useful for measuring duration of micro-

ops Must be long enough to allow signal

propagation Different control signals at different

times within instruction cycle Need a counter with different control

signals for t1, t2 etc.

Page 37: Control Unit Operation

Problems With Hard Wired Designs Complex sequencing & micro-

operation logic Difficult to design and test Inflexible design Difficult to add new instructions

Page 38: Control Unit Operation

Questions

What are a micro operations ? Why should you not read and write from the

same register at the same time ? what are the basic elements of a processor ? what happens when interupts are enabled ? Name 3 sub-cycles for the instruction cycles

Page 39: Control Unit Operation

More Questions

How many types of micro-operation? What are the inputs of the control signals? List modern I/O Devices What sends an electronic signals that organizes

various processor unit to execute an instruction ? What are advantages of hardware

implementation ?