Microprocessor.  The CPU of Microcomputer is called microprocessor.  It is a CPU on a single chip (microchip).  It is called brain or heart of the.

Slides:



Advertisements
Similar presentations
The CPU The Central Presentation Unit What is the CPU?
Advertisements

Machine cycle.
Control path Recall that the control path is the physical entity in a processor which: fetches instructions, fetches operands, decodes instructions, schedules.
The CPU. Parts of the CPU Control Unit Arithmetic & Logic Unit Registers.
Computer Systems. Computer System Components Computer Networks.
The processor and main memory chapter 4, Exploring the Digital Domain The Development and Basic Organization of Computers.
 Central Processing Unit(CPU) Central Processing Unit(CPU)  Components of the CPU Components of the CPU  Actions Performed by CPU Actions Performed.
The Computer Processor
Chapter 8 CPU Dr. Bernard Chen Ph.D. University of Central Arkansas Spring 2009.
CPU Registers PC Arith Logic Unit Bus Interface I/O Bridge System bus Memory bus Main Memory USB Controller Graphics Adapter Disk Controller I/O Bus Mouse.
Lecture 13 - Introduction to the Central Processing Unit (CPU)
KEY COMPONENTS OF A COMPUTER SYSTEM ANDREW LOLAVAR.
CPU Fetch/Execute Cycle
Basic Operational Concepts of a Computer
Lecture 8 Presented By Dr. Shazzad Hosain Asst. Prof. EECS, NSU.
Basic Architecture Lecture 15. In general, if the number of bits is n, then the number of different combinations of 0s and 1s that can be made is 2 n.
Computer Science 210 Computer Organization The von Neumann Architecture.
Stack Stack Pointer A stack is a means of storing data that works on a ‘Last in first out’ (LIFO) basis. It reverses the order that data arrives and is.
Introduction to Computing Systems from bits & gates to C & beyond The Von Neumann Model Basic components Instruction processing.
The CPU Central Processing Unit. 2 Reminder - how it fits together processor (CPU) memory I/O devices bus.
Stages of Processing.  When a computer is given instructions, a series of tasks must take place in order for a result to be accomplished  To accomplish.
The Central Processing Unit (CPU) and the Machine Cycle.
Model Computer CPU Arithmetic Logic Unit Control Unit Memory Unit
General Concepts of Computer Organization Overview of Microcomputer.
Computer Science 101 Computer Systems Organization ALU, Control Unit, Instruction Set.
Fetch-execute cycle.
Computer Hardware A computer is made of internal components Central Processor Unit Internal External and external components.
Computer Structure & Architecture 7b - CPU & Buses.
Computer Studies/ICT SS2
Dale Roberts Department of Computer and Information Science, School of Science, IUPUI CSCI N305 Information Representation: Machine Instructions.
COMPILERS CLASS 22/7,23/7. Introduction Compiler: A Compiler is a program that can read a program in one language (Source) and translate it into an equivalent.
CPU The Central Processing Unit (CPU), has 3 main parts: Control Unit Arithmetic and Logic Unit Registers. These components are connected to the rest.
System Unit Working of CPU. The CPU CPU The CPU CPU stands for central processing unit. it is brain of computer It is most important component of the.
Dale & Lewis Chapter 5 Computing components
Central Processing Unit (CPU)
Computer operation is of how the different parts of a computer system work together to perform a task.
HOW COMPUTERS WORK THE CPU & MEMORY. THE PARTS OF A COMPUTER.
Question What technology differentiates the different stages a computer had gone through from generation 1 to present?
Computer Architecture Lecture 4 by Engineer A. Lecturer Aymen Hasan AlAwady 17/11/2013 University of Kufa - Informatics Center for Research and Rehabilitation.
Designing a CPU –Reading a programs instruction from memory –Decoding the instruction –Executing the instruction –Transferring Data to/From memory / IO.
The Processor & its components. The CPU The brain. Performs all major calculations. Controls and manages the operations of other components of the computer.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Chapter 20 Computer Operations Computer Studies Today Chapter 20.
Computer Operation. Binary Codes CPU operates in binary codes Representation of values in binary codes Instructions to CPU in binary codes Addresses in.
3.1.4 Hardware a. describe the function and purpose of the control unit, memory unit and ALU (arithmetic logic unit) as individual parts of a computer;
Riyadh Philanthropic Society For Science Prince Sultan College For Woman Dept. of Computer & Information Sciences CS 251 Introduction to Computer Organization.
Computer Operation What basic hardware components are inside a personal computer?
OCR GCSE Computer Science Teaching and Learning Resources
8085 Microprocessor Architecture
Lecture 13 - Introduction to the Central Processing Unit (CPU)
Computer Science 210 Computer Organization
Lecture on Microcomputer
Components of Computer
Microprocessor and Assembly Language
Computer Architecture
System Architecture 1 Chapter 2.
The fetch-execute cycle
The Processor and Machine Language
Functional Units.
COMS 161 Introduction to Computing
Basic Computer Organization
CPU Key Revision Points.
The Little Man Computer
GCSE OCR 1 The CPU Computer Science J276 Unit 1
A Top-Level View Of Computer Function And Interconnection
Information Representation: Machine Instructions
Objectives Describe common CPU components and their function: ALU Arithmetic Logic Unit), CU (Control Unit), Cache Explain the function of the CPU as.
Computer Architecture
COMPUTER ARCHITECTURE
Presentation transcript:

Microprocessor

 The CPU of Microcomputer is called microprocessor.  It is a CPU on a single chip (microchip).  It is called brain or heart of the computer system.  It is the processing unit of the computer system responsible for carrying out the processing job i.e execution of program.

Microprocessor (Contd…) Components of Microprocessor 1.ALU: Arithmetical and Logical unit responsible to perform Arithmetical (mathematical) and logical (comparison) operation of the data.

Microprocessor (Contd…) Components of Microprocessor 2. Control Unit:  Control Unit of the computer controls all the functions like input, output, storage and process.  It controls the flow of data/program between Main MemoryCPU Registers I/O deviceMain Memory  This unit decode the instruction and generate the control signal on the basis of instruction and instruct the ALU which operation is to be performed.

Microprocessor (Contd…) Components of Microprocessor 3. Registers:  Registers are the high speed temporary storage place where all the processing done by the ALU.  The few typical registers used in a CPU are Accumulator, Program Counter (PC), Instruction Register (IR), Memory Address Register (MAR) and Memory Data/Buffer Register (MBR/DR).

Microprocessor (Contd…) Instruction Execution For every instruction the CPU carries out four basic operations: i) Instruction Fetch (IF) ii) Instruction Decode (ID) iii) Instruction Execute (IE) iv) Result Store (RS)

Microprocessor (Contd…) Instruction Execution (Contd…) Instruction/Machine Cycle:  These four basic operation performed by the CPU in called instruction cycle.  The instruction cycle consist of fetch cycle and execute cycle.

Microprocessor (Contd…) Instruction Execution (Contd…) Fetch Cycle:  Instruction fetch involves reading of an instruction from the memory location to the CPU register. Execute Cycle  This cycle involves execution of the instruction.

Microprocessor (Contd…) Register Organization Typical register used in CPU are: Accumulator: It interact with ALU and stores the input or output operand. Data Register (DR): It contains the data to be written in the memory (write operation) or it receives the data from the memory (read operation). It also holds the instruction before storing in Instruction Register. Memory Address Register (MAR): It specifies the address of memory location from which data or instruction is to be accessed (for read operation) or to which the data is to be stored (for write operation). Program Counter (PC): It contains the address of next instruction to be executed. Instruction Register (IR): Holds the current instruction.

Microprocessor (Contd…) Fetch Cycle During this cycle the instruction which is to be executed next is brought fro the memory to the CPU.