Itec 100 ch7
Itec 100 ch7
Itec 100 ch7
CU (control unit)
Performs fetch/execute cycle
Subcomponents:
7-2
7-3
7-4
Concept of Registers
Small, permanent storage locations within the
CPU used for a particular purpose
Manipulated directly by the Control Unit
Wired for specific function
Size in bits or bytes (not in MB like memory)
Can hold data, an address or an instruction
How many registers does the LMC have?
What are the registers in the LMC?
Copyright 2010 John Wiley & Sons, Inc.
7-5
Registers
Use of Registers
Scratchpad for currently executing program
User-visible registers
Hold intermediate results or data values, e.g., loop counters
Equivalent to LMCs calculator
Typically several dozen in current CPUs
7-6
Special-Purpose Registers
Program Count Register (PC)
Also called instruction pointer
7-7
Register Operations
Stores values from other locations
(registers and memory)
Addition and subtraction
Shift or rotate data
Test contents for conditions such as
zero or positive
7-8
Operation of Memory
Each memory location has a unique address
Address from an instruction is copied to the
MAR which finds the location in memory
CPU determines if it is a store or retrieval
Transfer takes place between the MDR and
memory
MDR is a two way register
7-9
Data
7-10
MAR-MDR Example
7-11
7-12
7-13
Memory Capacity
Determined by two factors
1. Number of bits in the MAR
7-14
7-15
Nonvolatile Memory
ROM
Read-only Memory
Holds software that is not expected to change
over the life of the system
EEPROM
Electrically Erasable Programmable ROM
Flash Memory
7-16
Fetch-Execute Cycle
Two-cycle process because both
instructions and data are in memory
Fetch
Decode or find instruction, load from
memory into register and signal ALU
Execute
Performs operation that instruction requires
Move/transform data
Copyright 2010 John Wiley & Sons, Inc.
7-17
7-18
2. MDR IR
3. IR[address] MAR
4. MDR A
5. PC + 1 PC
7-19
3. IR[address] MAR
4. A MDR*
5. PC + 1 PC
7-20
2. MDR IR
3. IR[address] MAR
4. A + MDR A
5. PC + 1 PC
7-21
LMC Fetch/Execute
SUBTRACT
IN
OUT
HALT
PC MAR
PC MAR
PC MAR
PC MAR
MDR IR
MDR IR
MDR IR
MDR IR
IR[addr] MAR
IOR A
A IOR
A MDR A
PC + 1 PC
PC + 1 PC
PC + 1 PC
BRANCH
BRANCH on Condition
PC MAR
PC MAR
MDR IR
MDR IR
IR[addr] PC
If condition false: PC + 1 PC
If condition true: IR[addr] PC
7-22
Bus
The physical connection that makes it possible
to transfer data from one location in the
computer system to another
Group of electrical or optical conductors for
carrying signals from one location to another
Wires or conductors printed on a circuit board
Line: each conductor in the bus
4 kinds of signals
1. Data
2. Addressing
3. Control signals
4. Power (sometimes)
Copyright 2010 John Wiley & Sons, Inc.
7-23
Bus Characteristics
7-24
Bus Categorizations
Parallel vs. serial buses
Direction of transmission
Simplex unidirectional
Half duplex bidirectional, one direction at a time
Full duplex bidirectional simultaneously
Method of interconnection
Point-to-point single source to single destination
7-25
Serial
1 bit transmitted at a timed
Single data line pair and a few control lines
For many applications, throughput is higher than for parallel
because of the lack of electrical interference
Copyright 2010 John Wiley & Sons, Inc.
7-26
Broadcast
bus
Example:
Ethernet
Shared among
multiple devices
Copyright 2010 John Wiley & Sons, Inc.
7-27
Classification of Instructions
Data Movement (load, store)
Most common, greatest flexibility
Involve memory and registers
Whats this size of a word ? 16? 32? 64 bits?
Arithmetic
Operators + - / * ^
Integers and floating point
Boolean Logic
Often includes at least AND, XOR, and NOT
7-28
7-29
7-30
7-31
Stack Instructions
Stack instructions
LIFO method for organizing information
Items removed in the reverse order from that in which they
are added
Push
Copyright 2010 John Wiley & Sons, Inc.
Pop
7-32
7-33
7-34
7-35
7-36
Instruction Elements
OPCODE: task
Source OPERAND(s)
Result OPERAND
Addresses
OPCODE
Source
OPERAND
Result
OPERAND
7-37
Instruction Format
Machine-specific template that specifies
Length of the op code
Number of operands
Length of operands
Simple
32-bit
Instruction
Format
7-38
Instructions
Instruction
Direction given to a computer
Causes electrical or optical signals to be sent through
specific circuits for processing
Instruction set
Design defines functions performed by the processor
Differentiates computer architecture by the
Number of instructions
Complexity of operations performed by individual instructions
Data types supported
Format (layout, fixed vs. variable length)
Use of registers
Addressing (size, modes)
7-39
Register Deferred
Also immediate, indirect, indexed
Copyright 2010 John Wiley & Sons, Inc.
7-40
7-41
7-42