A computer consists of five functionally independent main parts.

Slides:



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

Machine cycle.
Chapter 1. Basic Structure of Computers
INTRODUCTION OF COMPUTER
MICRO PROCESSER The micro processer is a multipurpose programmable, clock driven, register based, electronic integrated device that has computing and decision.
COMPUTER ORGANIZATION CHAPTER SUBSYSTEM INTERCONNECTION.
Midterm Wednesday Chapter 1-3: Number /character representation and conversion Number arithmetic Combinational logic elements and design (DeMorgan’s Law)
Basic Input/Output Operations
The processor and main memory chapter 4, Exploring the Digital Domain The Development and Basic Organization of Computers.
Processor Types And Instruction Sets Barak Perelman CS147 Prof. Lee.
0 What is a computer?  Simply put, a computer is a sophisticated electronic calculating machine that:  Accepts input information,  Processes the information.
Lecture 13 - Introduction to the Central Processing Unit (CPU)
KEY COMPONENTS OF A COMPUTER SYSTEM ANDREW LOLAVAR.
Basic Structure of Computer Computer Architecture Lecture – 2.
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
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.
A Simple Computer consists of a Processor (CPU-Central Processing Unit), Memory, and I/O Memory Input Output Arithmetic Logic Unit Control Unit I/O Processor.
EXECUTION OF COMPLETE INSTRUCTION
Advanced Computer Architecture 0 Lecture # 1 Introduction by Husnain Sherazi.
CPU Design. Introduction – The CPU must perform three main tasks: Communication with memory – Fetching Instructions – Fetching and storing data Interpretation.
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.
General Concepts of Computer Organization Overview of Microcomputer.
Computer Architecture And Organization UNIT-II General System Architecture.
CS 111 – Sept. 15 Chapter 2 – Manipulating data by performing instructions “What is going on in the CPU?” Commitment: –Please read through section 2.3.
Input-Output Organization
Computer Hardware A computer is made of internal components Central Processor Unit Internal External and external components.
Computer Organization Instructors Course By: Lecturer: Shimaa Ibrahim Hassan TA: Eng: Moufeda Hussien Lecture: 9:45 Address:
THE MICROPROCESSOR A microprocessor is a single chip of silicon that performs all of the essential functions of a computer central processor unit (CPU)
C HAPTER 4 OS: C OMPUTER O RGANIZATION TOPICS: The Von Neumann Architecture The CPU.
Simple ALU How to perform this C language integer operation in the computer C=A+B; ? The arithmetic/logic unit (ALU) of a processor performs integer arithmetic.
To Compute: To Do Math. Information is collected by tallying data as it travels across circuits. The key part of integrated circuits are transistors.transistors.
Chapter 2 Data Manipulation © 2007 Pearson Addison-Wesley. All rights reserved.
Chapter 2 Data Manipulation © 2007 Pearson Addison-Wesley. All rights reserved.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
3.1 Components. Overview Identify component parts of a typical home PC from a photograph or diagram.
Block diagram of a computer system Basic components of a computer system using block diagrams: Cpu Memory Input and output unit Evolution of microprocessor.
E LEMENTS OF C OMPUTER P ROCESSING S YSTEM. W HAT IS COMPUTER ? Electronic device used to store, retrieve, and manipulate the data.
CPIT Program Execution. Today, general-purpose computers use a set of instructions called a program to process data. A computer executes the.
1 Chapter 1 Basic Structures Of Computers. Computer : Introduction A computer is an electronic machine,devised for performing calculations and controlling.
DIGITAL TECHNOLOGY. 20 Questions  Pair off with another student within your table.  Both of you are to think of your favorite in a specific category.
Functions of Processor Operation Addressing modes Registers i/o module interface Memory module interface Interrupts.
Computer Organization
I/O SYSTEMS MANAGEMENT Krishna Kumar Ahirwar ( )
What is a computer? Simply put, a computer is a sophisticated electronic calculating machine that: Accepts input information, Processes the information.
Lecture 13 - Introduction to the Central Processing Unit (CPU)
COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE
What is a computer? Simply put, a computer is a sophisticated electronic calculating machine that: Accepts input information, Processes the information.
Computer Design & Organization
Chapter 2 – Computer hardware
1 Input-Output Organization Computer Organization Computer Architectures Lab Peripheral Devices Input-Output Interface Asynchronous Data Transfer Modes.
Introduction of microprocessor
Components of Computer
CS703 - Advanced Operating Systems
Number Representations and Basic Processor Architecture
Computer Electronic device Accepts data - input
Functional Units.
Basic Computer Organization
Chapter 2: Data Manipulation
Overview of Computer Architecture and Organization
Chapter 14 Control Unit Operation
Fundamental of computer
Introduction to Computer Architecture
Chapter 5 Computer Organization
A Top-Level View Of Computer Function And Interconnection
Computer components is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format. Computer The computer.
Computer Science. The CPU The CPU is made up of 3 main parts : Cache ALU Control Unit.
Computer System.
Presentation transcript:

A computer consists of five functionally independent main parts

Basic Functional Units of a Computer Input – accepts coded information from human operators, from electromechanical devices (such as keyboards), or from other digital medium via digital communication lines. The information received is either stored in the memory or immediately used by the arithmetic and logic unit (ALU) to perform the desired operations. The results are sent back out through the output medium. All actions are coordinated through the control unit.

A Simple Computer consists of a Processor (CPU-Central Processing Unit), Memory, and I/O Memory Input Output Arithmetic And Logic Unit Control Unit I/O Processor Or CPU

Block Diagram for a Simple Computer

The Information Categorized as either instructions or data Instructions (or machine instructions) are explicit commands that –Govern the transfer of information within a computer as well as between the computer and its I/O devices. –Specify the arithmetic and logic operations to be performed.

Programs A list of instructions that performs a task is called a program. Usually the program is stored in memory. The program fetches the instructions from memory, one after another, and performs the desired operations. The computer is completely controlled by the stored program, except for possible interruption by an operator or by I/O devices connected to the machine. Data are numbers and encoded characters that are used as operands by the instructions.

Data Numbers and encoded characters that are used as operands by the instructions. We will break from looking at the functional units to look at data representations…..