SlideShare a Scribd company logo
1 of 28
Download to read offline
Central Processing Unit - I
Processor Organization ( 1 )
• The aims of the processor are to
– Fetching an instruction from memory
(through the bus);
– Fetch the instruction (fetch);
– Fetch the instruction (fetch);
– Execute the instruction (execute);
– identify the next instruction ready to be
fetched and executed
Processor Organization ( 2 )
• The three components of the processor :
(1) The Arithmetic and Logical Unit (ALU)
• Made up of circuits that perform the arithmetic and logical
execution within the processor.
execution within the processor.
• It has no internal storage.
(2) The Control Unit (CU)
• It contains circuits that direct and coordinate proper
sequence, interpret each instruction and apply the proper
signals to the ALU and registers.
Processor Organization ( 3 )
(3) The Registers
• Registers are high speed temporary data storage area
within the processor to support execution activities.
• Both instructions or data can be stored in registers for
processing by the ALU.
• All processors have a certain number of registers, the
exact number varies between different CPUs.
Processor Organization ( 4 )
• The advantages of using registers:
– Reducing instruction (program) length
• Memory address usually requires many bits,
referencing registers requires only a few bits.
– Cutting down execution time
• Using register in complex expressions and storing
results instead of writing back to memory, the number
of CPU clock cycle (time) can be reduced.
Processor Organization ( 5 )
– Ease of programming
• In processing a block of data consecutively in memory, one
can store starting address of block in register. To retrieve
can store starting address of block in register. To retrieve
data item, one can simply increment the address in register,
corresponding to consecutive data in data block. In doing so,
fewer number of instructions are needed.
Types of Registers ( 1 )
– Instruction Register (IR)
• It holds the instruction that is currently being executed.
• Its output is available to the control unit which
•
generated the timing signals that control the various
processing elements involved in executing the
instruction.
Types of Registers ( 2 )
– Program Counter (PC)
• It holds the address of the instruction to be fetched and
executed.
• During the execution of an instruction, its contents are
• During the execution of an instruction, its contents are
updated to point to the next instruction to be executed.
– Stack Pointer (SP)
• It contains the address of a section of memory known
as stack which may be used for temporary storage of
data or addresses.
Types of Registers ( 3 )
– Memory Address Register (MAR)
• It holds the address in memory to or from which data are
to be transferred.
to be transferred.
– Memory Data Register (MDR)
• It contains the data to be written into or read out of the
addressed memory location.
Types of Registers ( 4 )
– Status Register (SR) / Conditional Code Register
(CCR) / Status Flags
• A register with individual bits (flags) to indicate condition of
the processor as a result of an arithmetic/logical operations.
• Common status flags:
• Common status flags:
– Carry (C)
– Positive result (P)
– Zero result (Z)
– Negative result (N)
– arithmetic oVerflow (V)
Program Execution
Fetch and Execute Cycle (1)
• A sequence of instructions (program) to be executed by a
computer are first loaded into consecutive memory locations
through the input unit.
• Execution of the program starts when the Program Counter
• Execution of the program starts when the Program Counter
(PC) is set to point to the first instruction.
• The CPU fetches one instruction at a time and performs the
specified operation.
• The CPU must keep track of the memory address of the next
instruction by the PC.
• The cycle is repeated for the next instruction.
Fetch and Execute Cycle (2)
• The processor executes a program in memory is equivalent to
execute the program in a series of fetch/execute operations for
individual instruction as :
– (i) At the start of the instruction, the PC contains the address of the
– (i) At the start of the instruction, the PC contains the address of the
instruction to be executed.
– (ii) Fetch the instruction pointed to by the PC from memory into
Instruction Register (IR).
– (iii) Update PC to point to the following instruction.
– (iv) Decode the instruction by the control unit (CU).
Fetch phase ends here.
Fetch and Execute Cycle (3)
– (v) If the instruction uses data in memory, determine where they are.
– (vi) Fetch data, if any, into registers.
• (it may be necessary to repeat fetching data,
depending on the instruction)
depending on the instruction)
– (vii) Execute the instruction.
– (viii) Store the results in place as specified by the instruction.
– (ix) Go to (i) and execute next instruction.
Fetch and Execute Cycle (4)
• The fetch cycle (to fetch & decode instruction)
is the same for all types of instructions
• The execute cycle is determined by the
• The execute cycle is determined by the
instruction fetched from memory in the fetch
cycle.
Single Bus
Organization
inside a
Processor ( 1 )
lines
Data
Address
lines
bus
Memory
PC
MAR
MDR
Y
bus
IR
Control signals
Instruction
decoder and
Internal processor
control logic
Single-bus organization
Carry-in
ALU
Y
Z
Add
XOR
Sub
TEMP
R0
control
ALU
lines
R n 1
-
( )
A B
MUX
Select
Constant 4
Single-bus organization
General-
purpose
registers
Single Bus
Organization ( 2 )
• The data and address lines of the external memory bus are
connected to the internal processor bus via the memory data
register, MDR, and the memory address register, MAR,
respectively.
respectively.
• The MUX selects either the output of register Y or a constant
value 4 (it is assumed that each instruction is 4 bytes and this
constant is used to increment the contents of the PC) to be
provided as input A of the ALU.
Single Bus Organization ( 3 )
Functions of the CPU
• Most of the operations needed to execute an instruction can
be carried out by performing the following functions in some
specified sequence.
– Transfer a word of data from one register to another or to the ALU.
– Perform an arithmetic or logic operation and store the result in a
register.
– Fetch the contents of a given memory location and load them into a
register.
– Store a word of data from a register into a given memory location.
Single Bus Organization ( 4 )
Register Transfers
• To transfer the contents of R1 to R4,
the following actions are needed.
– Enable the output of R1 by setting R1out
to 1. This places the contents of R1 on
Riin
Ri
bus
Internal processor
to 1. This places the contents of R1 on
the CPU bus.
– Enable the input of R4 by setting R4in to
1. This loads data from the CPU bus
into register R4.
Riout
Single Bus Organization ( 5 )
Performing Operation
• To add the contents of R1 to that of R2
and store the result in R3 may be as
follows. (Names are given for those signals to
be activated.)
Yin
Y
Riin
Ri
Riout
bus
Internal processor
Constant 4
be activated.)
– 1. R1out, Yin
– 2. R2out, SelectY, Add, Zin
– 3. Zout, R3in
B
A
Z
ALU
Zin
Zout
Constant 4
MUX
Select
Single Bus Organization ( 6 )
Fetching from Memory
• To load the data pointed by R1 into R2.
• Assume that MARout is enabled all the time.
R1 , MAR , Read
Memory-b us
data lines
Internal processor
bus
MDR
MDR
– R1out, MARin, Read
– MDRinE, WMFC
– MDRout, R2in
MDR
data lines bus
MDRout
MDRout E
MDRin
MDRinE
Single Bus Organization ( 7 )
Fetching from Memory
• During memory Read and Write operations, the timing must
be coordinated with the (different) response of the addressed
device on the memory bus.
• The WMFC (Wait for Memory-Function-Completed) signal
•
causes the processor waits for the arrival of the MFC signal.
• The MFC signal is set by the addressed device when the
contents of the specified location have been read and are
available on the data lines of the memory bus.
Single Bus Organization ( 8 )
Storing in Memory
• To store the contents of R2 into the memory location specified
by R1.
– R1out, MARin
– R2 , MDR , Write
– R2out, MDRin, Write
– MDRoutE, WMFC
Execution of a Complete Instruction
Step Action
1 PCout, MARin , Read,Select4,
Add, Zin
2 Zout, PCin , Yin , WMFC
Data
Address
lines
bus
Memory
PC
MAR
MDR
bus
Control signals
Instruction
decoder and
Internal processor
control logic
Add (R3), R1
3 MDRout, IRin
4 R3
out , MARin , Read
5 R1
out , Yin , WMFC
6 MDRout, SelectY,
Add, Zin
7 Zout, R1in , End
lines
Data
Carry-in
ALU
Y
Z
Add
XOR
Sub
IR
TEMP
R0
control
ALU
lines
R n 1
-
( )
A B
MUX
Select
Constant 4
Execution of Branch Instructions
• A branch instruction replaces the contents of
PC with the branch target address, which is
usually obtained by adding an offset X given in
the branch instruction.
the branch instruction.
• The offset X is usually the difference between
the branch target address and the address
immediately following the branch instruction.
• Conditional branch
Execution of Unconditional Branch
Instruction
Step Action
1 PCout , MAR in , Read, Select4,Add, Zin
2 Zout, PCin , WMFC
3 MDRout , IRin
4 Offset-field-of-IR
out, Add, Zin
5 Zout, PCin , End
Control sequence for an unconditional branch instruction.
Execution of Conditional Branch
Instruction – Branch on Negative (BN)
Step Action
1 PCout , MAR in , Read, Select4,Add, Zin
2 Zout, PCin , WMFC
3 MDRout , IRin
4 Offset-field-of-IR
out, Add, Zin
5 Zout, PCin , End
Control sequence for an conditional branch instruction.
, If N=0, End
Multiple-Bus Organization
Bus A Bus B Bus C
PC
Re
gister
file
Constant 4
Incrementer
Memory b
us
data lines
Instruction
decoder
ALU
MDR
A
B
R
MUX
Address
lines
MAR
IR
Multiple-Bus Organization
• Add R4, R5, R6
Step Action
1 PCout, R=B, MAR in , Read, IncPC
1 PCout, R=B, MAR in , Read, IncPC
2 WMFC
3 MDRoutB, R=B, IRin
4 R4outA, R5outB, SelectA, Add, R6in, End
Control sequence for the instruction. Add R4,R5,R6,
for the three-bus organization

More Related Content

What's hot

Unit2 control unit
Unit2 control unitUnit2 control unit
Unit2 control unitAshim Saha
 
Control unit design
Control unit designControl unit design
Control unit designDhaval Bagal
 
Control unit-implementation
Control unit-implementationControl unit-implementation
Control unit-implementationWBUTTUTORIALS
 
Unit 3 basic processing unit
Unit 3   basic processing unitUnit 3   basic processing unit
Unit 3 basic processing unitchidabdu
 
Basic Computer Organization and Design
Basic Computer Organization and DesignBasic Computer Organization and Design
Basic Computer Organization and DesignKamal Acharya
 
Control Unit Design
Control Unit DesignControl Unit Design
Control Unit DesignVinit Raut
 
COMPUTER ORGNAIZATION NOTES
COMPUTER ORGNAIZATION NOTESCOMPUTER ORGNAIZATION NOTES
COMPUTER ORGNAIZATION NOTESDr.MAYA NAYAK
 
basic computer programming and micro programmed control
basic computer programming and micro programmed controlbasic computer programming and micro programmed control
basic computer programming and micro programmed controlRai University
 
Computer Organization and Architecture.
Computer Organization and Architecture.Computer Organization and Architecture.
Computer Organization and Architecture.CS_GDRCST
 
Micro operation control of processor
Micro operation control of processorMicro operation control of processor
Micro operation control of processorMuhammad Ishaq
 
Computer architecture control unit
Computer architecture control unitComputer architecture control unit
Computer architecture control unitMazin Alwaaly
 
MicroProgrammed Explained .
MicroProgrammed Explained .MicroProgrammed Explained .
MicroProgrammed Explained .Muhammad Umar
 
15 control-computer organization and archietecture-CO-COA
15 control-computer organization and archietecture-CO-COA15 control-computer organization and archietecture-CO-COA
15 control-computer organization and archietecture-CO-COAJay Patel
 

What's hot (20)

Unit2 control unit
Unit2 control unitUnit2 control unit
Unit2 control unit
 
Control unit design
Control unit designControl unit design
Control unit design
 
Computer Organization
Computer OrganizationComputer Organization
Computer Organization
 
Control unit-implementation
Control unit-implementationControl unit-implementation
Control unit-implementation
 
Unit 3 basic processing unit
Unit 3   basic processing unitUnit 3   basic processing unit
Unit 3 basic processing unit
 
Basic Computer Organization and Design
Basic Computer Organization and DesignBasic Computer Organization and Design
Basic Computer Organization and Design
 
Control unit
Control  unitControl  unit
Control unit
 
Control Unit Design
Control Unit DesignControl Unit Design
Control Unit Design
 
Control Memory
Control MemoryControl Memory
Control Memory
 
Microprogrammed Control Unit
Microprogrammed Control UnitMicroprogrammed Control Unit
Microprogrammed Control Unit
 
COMPUTER ORGNAIZATION NOTES
COMPUTER ORGNAIZATION NOTESCOMPUTER ORGNAIZATION NOTES
COMPUTER ORGNAIZATION NOTES
 
basic computer programming and micro programmed control
basic computer programming and micro programmed controlbasic computer programming and micro programmed control
basic computer programming and micro programmed control
 
Addressing sequencing
Addressing sequencingAddressing sequencing
Addressing sequencing
 
Computer Organization and Architecture.
Computer Organization and Architecture.Computer Organization and Architecture.
Computer Organization and Architecture.
 
Micro operation control of processor
Micro operation control of processorMicro operation control of processor
Micro operation control of processor
 
Computer architecture control unit
Computer architecture control unitComputer architecture control unit
Computer architecture control unit
 
MicroProgrammed Explained .
MicroProgrammed Explained .MicroProgrammed Explained .
MicroProgrammed Explained .
 
Control unit
Control unitControl unit
Control unit
 
15 control-computer organization and archietecture-CO-COA
15 control-computer organization and archietecture-CO-COA15 control-computer organization and archietecture-CO-COA
15 control-computer organization and archietecture-CO-COA
 
2.computer org.
2.computer org.2.computer org.
2.computer org.
 

Similar to Central processing unit i

Computer Organization and Architechuture basics
Computer Organization and Architechuture basicsComputer Organization and Architechuture basics
Computer Organization and Architechuture basicsLucky Sithole
 
Computer Organisation & Architecture (chapter 1)
Computer Organisation & Architecture (chapter 1) Computer Organisation & Architecture (chapter 1)
Computer Organisation & Architecture (chapter 1) Subhasis Dash
 
COMPUTER ORGANIZATION NOTES Unit 7
COMPUTER ORGANIZATION NOTES Unit 7COMPUTER ORGANIZATION NOTES Unit 7
COMPUTER ORGANIZATION NOTES Unit 7Dr.MAYA NAYAK
 
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdf
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdfSAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdf
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdfDrKalaavathiBuvanesh
 
Computer Organization for third semester Vtu SyllabusModule 4.ppt
Computer Organization  for third semester Vtu SyllabusModule 4.pptComputer Organization  for third semester Vtu SyllabusModule 4.ppt
Computer Organization for third semester Vtu SyllabusModule 4.pptShilpaKc3
 
basic-processing-unit computer organ.ppt
basic-processing-unit computer organ.pptbasic-processing-unit computer organ.ppt
basic-processing-unit computer organ.pptssuser702532
 
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...Rai University
 
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...Rai University
 
F453 computer science fde cycle
F453 computer science fde cycleF453 computer science fde cycle
F453 computer science fde cycleMark Gibbs
 
MCA-I-COA- overview of register transfer, micro operations and basic computer...
MCA-I-COA- overview of register transfer, micro operations and basic computer...MCA-I-COA- overview of register transfer, micro operations and basic computer...
MCA-I-COA- overview of register transfer, micro operations and basic computer...Rai University
 
Computer Organization : CPU, Memory and I/O organization
Computer Organization : CPU, Memory and I/O organizationComputer Organization : CPU, Memory and I/O organization
Computer Organization : CPU, Memory and I/O organizationAmrutaMehata
 
Computer organisation and architecture updated unit 2 COA ppt.pptx
Computer organisation and architecture updated unit 2 COA ppt.pptxComputer organisation and architecture updated unit 2 COA ppt.pptx
Computer organisation and architecture updated unit 2 COA ppt.pptxMalligaarjunanN
 
Central Processing Unit (Instruction Circle)
Central Processing Unit (Instruction Circle)Central Processing Unit (Instruction Circle)
Central Processing Unit (Instruction Circle)muhd afiq
 
Computer_Organization and architecture _unit 1.pptx
Computer_Organization and architecture _unit 1.pptxComputer_Organization and architecture _unit 1.pptx
Computer_Organization and architecture _unit 1.pptxManimegalaM3
 

Similar to Central processing unit i (20)

CAO.pptx
CAO.pptxCAO.pptx
CAO.pptx
 
Computer Organization and Architechuture basics
Computer Organization and Architechuture basicsComputer Organization and Architechuture basics
Computer Organization and Architechuture basics
 
Computer Organisation & Architecture (chapter 1)
Computer Organisation & Architecture (chapter 1) Computer Organisation & Architecture (chapter 1)
Computer Organisation & Architecture (chapter 1)
 
COMPUTER ORGANIZATION NOTES Unit 7
COMPUTER ORGANIZATION NOTES Unit 7COMPUTER ORGANIZATION NOTES Unit 7
COMPUTER ORGANIZATION NOTES Unit 7
 
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdf
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdfSAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdf
SAMPLE FOR MICRO PROGRAMMING CO_-_7th_UNIT.pdf
 
Computer Organization for third semester Vtu SyllabusModule 4.ppt
Computer Organization  for third semester Vtu SyllabusModule 4.pptComputer Organization  for third semester Vtu SyllabusModule 4.ppt
Computer Organization for third semester Vtu SyllabusModule 4.ppt
 
basic-processing-unit computer organ.ppt
basic-processing-unit computer organ.pptbasic-processing-unit computer organ.ppt
basic-processing-unit computer organ.ppt
 
Cpu & its execution of instruction
Cpu & its execution of instructionCpu & its execution of instruction
Cpu & its execution of instruction
 
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...
Bca 2nd sem-u-2.2-overview of register transfer, micro operations and basic c...
 
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...
B.sc cs-ii-u-2.2-overview of register transfer, micro operations and basic co...
 
CPU.ppd
CPU.ppdCPU.ppd
CPU.ppd
 
Digital-Unit-III.ppt
Digital-Unit-III.pptDigital-Unit-III.ppt
Digital-Unit-III.ppt
 
F453 computer science fde cycle
F453 computer science fde cycleF453 computer science fde cycle
F453 computer science fde cycle
 
MCA-I-COA- overview of register transfer, micro operations and basic computer...
MCA-I-COA- overview of register transfer, micro operations and basic computer...MCA-I-COA- overview of register transfer, micro operations and basic computer...
MCA-I-COA- overview of register transfer, micro operations and basic computer...
 
INSTRUCTION CYCLE
INSTRUCTION CYCLEINSTRUCTION CYCLE
INSTRUCTION CYCLE
 
Chapter01 (1).ppt
Chapter01 (1).pptChapter01 (1).ppt
Chapter01 (1).ppt
 
Computer Organization : CPU, Memory and I/O organization
Computer Organization : CPU, Memory and I/O organizationComputer Organization : CPU, Memory and I/O organization
Computer Organization : CPU, Memory and I/O organization
 
Computer organisation and architecture updated unit 2 COA ppt.pptx
Computer organisation and architecture updated unit 2 COA ppt.pptxComputer organisation and architecture updated unit 2 COA ppt.pptx
Computer organisation and architecture updated unit 2 COA ppt.pptx
 
Central Processing Unit (Instruction Circle)
Central Processing Unit (Instruction Circle)Central Processing Unit (Instruction Circle)
Central Processing Unit (Instruction Circle)
 
Computer_Organization and architecture _unit 1.pptx
Computer_Organization and architecture _unit 1.pptxComputer_Organization and architecture _unit 1.pptx
Computer_Organization and architecture _unit 1.pptx
 

More from JyotiprakashMishra18

Program execution, straight line sequence and branching
Program execution, straight line sequence and branchingProgram execution, straight line sequence and branching
Program execution, straight line sequence and branchingJyotiprakashMishra18
 
Basic arithmetic, instruction execution and program
Basic arithmetic, instruction execution and programBasic arithmetic, instruction execution and program
Basic arithmetic, instruction execution and programJyotiprakashMishra18
 
Addressing modes examples and subroutines
Addressing modes examples and subroutinesAddressing modes examples and subroutines
Addressing modes examples and subroutinesJyotiprakashMishra18
 

More from JyotiprakashMishra18 (6)

Program execution, straight line sequence and branching
Program execution, straight line sequence and branchingProgram execution, straight line sequence and branching
Program execution, straight line sequence and branching
 
Memory (Computer Organization)
Memory (Computer Organization)Memory (Computer Organization)
Memory (Computer Organization)
 
Instruction types
Instruction typesInstruction types
Instruction types
 
Central processing unit ii
Central processing unit iiCentral processing unit ii
Central processing unit ii
 
Basic arithmetic, instruction execution and program
Basic arithmetic, instruction execution and programBasic arithmetic, instruction execution and program
Basic arithmetic, instruction execution and program
 
Addressing modes examples and subroutines
Addressing modes examples and subroutinesAddressing modes examples and subroutines
Addressing modes examples and subroutines
 

Recently uploaded

CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIkoyaldeepu123
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage examplePragyanshuParadkar1
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
Effects of rheological properties on mixing
Effects of rheological properties on mixingEffects of rheological properties on mixing
Effects of rheological properties on mixingviprabot1
 

Recently uploaded (20)

CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AI
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage example
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
Effects of rheological properties on mixing
Effects of rheological properties on mixingEffects of rheological properties on mixing
Effects of rheological properties on mixing
 

Central processing unit i

  • 2. Processor Organization ( 1 ) • The aims of the processor are to – Fetching an instruction from memory (through the bus); – Fetch the instruction (fetch); – Fetch the instruction (fetch); – Execute the instruction (execute); – identify the next instruction ready to be fetched and executed
  • 3. Processor Organization ( 2 ) • The three components of the processor : (1) The Arithmetic and Logical Unit (ALU) • Made up of circuits that perform the arithmetic and logical execution within the processor. execution within the processor. • It has no internal storage. (2) The Control Unit (CU) • It contains circuits that direct and coordinate proper sequence, interpret each instruction and apply the proper signals to the ALU and registers.
  • 4. Processor Organization ( 3 ) (3) The Registers • Registers are high speed temporary data storage area within the processor to support execution activities. • Both instructions or data can be stored in registers for processing by the ALU. • All processors have a certain number of registers, the exact number varies between different CPUs.
  • 5. Processor Organization ( 4 ) • The advantages of using registers: – Reducing instruction (program) length • Memory address usually requires many bits, referencing registers requires only a few bits. – Cutting down execution time • Using register in complex expressions and storing results instead of writing back to memory, the number of CPU clock cycle (time) can be reduced.
  • 6. Processor Organization ( 5 ) – Ease of programming • In processing a block of data consecutively in memory, one can store starting address of block in register. To retrieve can store starting address of block in register. To retrieve data item, one can simply increment the address in register, corresponding to consecutive data in data block. In doing so, fewer number of instructions are needed.
  • 7. Types of Registers ( 1 ) – Instruction Register (IR) • It holds the instruction that is currently being executed. • Its output is available to the control unit which • generated the timing signals that control the various processing elements involved in executing the instruction.
  • 8. Types of Registers ( 2 ) – Program Counter (PC) • It holds the address of the instruction to be fetched and executed. • During the execution of an instruction, its contents are • During the execution of an instruction, its contents are updated to point to the next instruction to be executed. – Stack Pointer (SP) • It contains the address of a section of memory known as stack which may be used for temporary storage of data or addresses.
  • 9. Types of Registers ( 3 ) – Memory Address Register (MAR) • It holds the address in memory to or from which data are to be transferred. to be transferred. – Memory Data Register (MDR) • It contains the data to be written into or read out of the addressed memory location.
  • 10. Types of Registers ( 4 ) – Status Register (SR) / Conditional Code Register (CCR) / Status Flags • A register with individual bits (flags) to indicate condition of the processor as a result of an arithmetic/logical operations. • Common status flags: • Common status flags: – Carry (C) – Positive result (P) – Zero result (Z) – Negative result (N) – arithmetic oVerflow (V)
  • 11. Program Execution Fetch and Execute Cycle (1) • A sequence of instructions (program) to be executed by a computer are first loaded into consecutive memory locations through the input unit. • Execution of the program starts when the Program Counter • Execution of the program starts when the Program Counter (PC) is set to point to the first instruction. • The CPU fetches one instruction at a time and performs the specified operation. • The CPU must keep track of the memory address of the next instruction by the PC. • The cycle is repeated for the next instruction.
  • 12. Fetch and Execute Cycle (2) • The processor executes a program in memory is equivalent to execute the program in a series of fetch/execute operations for individual instruction as : – (i) At the start of the instruction, the PC contains the address of the – (i) At the start of the instruction, the PC contains the address of the instruction to be executed. – (ii) Fetch the instruction pointed to by the PC from memory into Instruction Register (IR). – (iii) Update PC to point to the following instruction. – (iv) Decode the instruction by the control unit (CU). Fetch phase ends here.
  • 13. Fetch and Execute Cycle (3) – (v) If the instruction uses data in memory, determine where they are. – (vi) Fetch data, if any, into registers. • (it may be necessary to repeat fetching data, depending on the instruction) depending on the instruction) – (vii) Execute the instruction. – (viii) Store the results in place as specified by the instruction. – (ix) Go to (i) and execute next instruction.
  • 14. Fetch and Execute Cycle (4) • The fetch cycle (to fetch & decode instruction) is the same for all types of instructions • The execute cycle is determined by the • The execute cycle is determined by the instruction fetched from memory in the fetch cycle.
  • 15. Single Bus Organization inside a Processor ( 1 ) lines Data Address lines bus Memory PC MAR MDR Y bus IR Control signals Instruction decoder and Internal processor control logic Single-bus organization Carry-in ALU Y Z Add XOR Sub TEMP R0 control ALU lines R n 1 - ( ) A B MUX Select Constant 4 Single-bus organization General- purpose registers
  • 16. Single Bus Organization ( 2 ) • The data and address lines of the external memory bus are connected to the internal processor bus via the memory data register, MDR, and the memory address register, MAR, respectively. respectively. • The MUX selects either the output of register Y or a constant value 4 (it is assumed that each instruction is 4 bytes and this constant is used to increment the contents of the PC) to be provided as input A of the ALU.
  • 17. Single Bus Organization ( 3 ) Functions of the CPU • Most of the operations needed to execute an instruction can be carried out by performing the following functions in some specified sequence. – Transfer a word of data from one register to another or to the ALU. – Perform an arithmetic or logic operation and store the result in a register. – Fetch the contents of a given memory location and load them into a register. – Store a word of data from a register into a given memory location.
  • 18. Single Bus Organization ( 4 ) Register Transfers • To transfer the contents of R1 to R4, the following actions are needed. – Enable the output of R1 by setting R1out to 1. This places the contents of R1 on Riin Ri bus Internal processor to 1. This places the contents of R1 on the CPU bus. – Enable the input of R4 by setting R4in to 1. This loads data from the CPU bus into register R4. Riout
  • 19. Single Bus Organization ( 5 ) Performing Operation • To add the contents of R1 to that of R2 and store the result in R3 may be as follows. (Names are given for those signals to be activated.) Yin Y Riin Ri Riout bus Internal processor Constant 4 be activated.) – 1. R1out, Yin – 2. R2out, SelectY, Add, Zin – 3. Zout, R3in B A Z ALU Zin Zout Constant 4 MUX Select
  • 20. Single Bus Organization ( 6 ) Fetching from Memory • To load the data pointed by R1 into R2. • Assume that MARout is enabled all the time. R1 , MAR , Read Memory-b us data lines Internal processor bus MDR MDR – R1out, MARin, Read – MDRinE, WMFC – MDRout, R2in MDR data lines bus MDRout MDRout E MDRin MDRinE
  • 21. Single Bus Organization ( 7 ) Fetching from Memory • During memory Read and Write operations, the timing must be coordinated with the (different) response of the addressed device on the memory bus. • The WMFC (Wait for Memory-Function-Completed) signal • causes the processor waits for the arrival of the MFC signal. • The MFC signal is set by the addressed device when the contents of the specified location have been read and are available on the data lines of the memory bus.
  • 22. Single Bus Organization ( 8 ) Storing in Memory • To store the contents of R2 into the memory location specified by R1. – R1out, MARin – R2 , MDR , Write – R2out, MDRin, Write – MDRoutE, WMFC
  • 23. Execution of a Complete Instruction Step Action 1 PCout, MARin , Read,Select4, Add, Zin 2 Zout, PCin , Yin , WMFC Data Address lines bus Memory PC MAR MDR bus Control signals Instruction decoder and Internal processor control logic Add (R3), R1 3 MDRout, IRin 4 R3 out , MARin , Read 5 R1 out , Yin , WMFC 6 MDRout, SelectY, Add, Zin 7 Zout, R1in , End lines Data Carry-in ALU Y Z Add XOR Sub IR TEMP R0 control ALU lines R n 1 - ( ) A B MUX Select Constant 4
  • 24. Execution of Branch Instructions • A branch instruction replaces the contents of PC with the branch target address, which is usually obtained by adding an offset X given in the branch instruction. the branch instruction. • The offset X is usually the difference between the branch target address and the address immediately following the branch instruction. • Conditional branch
  • 25. Execution of Unconditional Branch Instruction Step Action 1 PCout , MAR in , Read, Select4,Add, Zin 2 Zout, PCin , WMFC 3 MDRout , IRin 4 Offset-field-of-IR out, Add, Zin 5 Zout, PCin , End Control sequence for an unconditional branch instruction.
  • 26. Execution of Conditional Branch Instruction – Branch on Negative (BN) Step Action 1 PCout , MAR in , Read, Select4,Add, Zin 2 Zout, PCin , WMFC 3 MDRout , IRin 4 Offset-field-of-IR out, Add, Zin 5 Zout, PCin , End Control sequence for an conditional branch instruction. , If N=0, End
  • 27. Multiple-Bus Organization Bus A Bus B Bus C PC Re gister file Constant 4 Incrementer Memory b us data lines Instruction decoder ALU MDR A B R MUX Address lines MAR IR
  • 28. Multiple-Bus Organization • Add R4, R5, R6 Step Action 1 PCout, R=B, MAR in , Read, IncPC 1 PCout, R=B, MAR in , Read, IncPC 2 WMFC 3 MDRoutB, R=B, IRin 4 R4outA, R5outB, SelectA, Add, R6in, End Control sequence for the instruction. Add R4,R5,R6, for the three-bus organization