Computer Design & Organization

Slides:



Advertisements
Similar presentations
Machine cycle.
Advertisements

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 Systems. Computer System Components Computer Networks.
Midterm Wednesday Chapter 1-3: Number /character representation and conversion Number arithmetic Combinational logic elements and design (DeMorgan’s Law)
Overview The von Neumann Machine - the programmable digital computer Introducing the LC-3 Computer - A “toy” computer for us to learn from Computer machine.
Overview von Neumann Model Components of a Computer Some Computer Organization Models The Computer Bus An Example Organization: The LC-3.
KEY COMPONENTS OF A COMPUTER SYSTEM ANDREW LOLAVAR.
Basic Operational Concepts of a Computer
1-1 Chapter 1 - Introduction Computer Architecture and Organization by M. Murdocca and V. Heuring © 2007 M. Murdocca and V. Heuring Computer Architecture.
Computer Systems 1 Fundamentals of Computing The CPU & Von Neumann.
Basic Microcomputer Design. Inside the CPU Registers – storage locations Control Unit (CU) – coordinates the sequencing of steps involved in executing.
Chapter Contents 1.1 Overview 1.2 A Brief History
Computer Architecture and Organization Introduction.
Computer Science 210 Computer Organization The von Neumann Architecture.
Chapter 1 Introduction. Objectives To explain the definition of computer architecture To discuss the history of computers To describe the von-neumann.
1-1 Chapter 1 - Introduction Department of In formation Technology, Radford University ITEC 352 Computer Organization ITEC 352 Computer Organization.
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.
Computer Science 101 Computer Systems Organization.
Computer Architecture Memory, Math and Logic. Basic Building Blocks Seen: – Memory – Logic & Math.
Computer Hardware A computer is made of internal components Central Processor Unit Internal External and external components.
Computer Structure & Architecture 7b - CPU & Buses.
Computer Architecture 2 nd year (computer and Information Sc.)
Assessment Covering… Von Neuman architecture Registers – purpose and use, the fetch execute cycle.
1-1 Computer Organization Part The von Neumann Model The von Neumann model consists of five major components: (1) input unit; (2) output unit;
Computer Organization Part 1
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.
Von Neumann Architecture Stored-Program Architecture.
1 Chapter 1 Basic Structures Of Computers. Computer : Introduction A computer is an electronic machine,devised for performing calculations and controlling.
Chapter I: Introduction to Computer Science. Computer: is a machine that accepts input data, processes the data and creates output data. This is a specific-purpose.
Riyadh Philanthropic Society For Science Prince Sultan College For Woman Dept. of Computer & Information Sciences CS 251 Introduction to Computer Organization.
Computer Architecture 1 CPU IAS (The computer’s main memory) Store (e.g. Disk, DVD) Input/output Interfaces Clock Bus Keyboard, printer, mouse monitor,
Computer Organization Exam Review CS345 David Monismith.
OCR GCSE Computer Science Teaching and Learning Resources
Computer Organization and Architecture Lecture 1 : Introduction
8085 Microprocessor Architecture
Computers’ Basic Organization
Basic Computer Organization and Design
Von Neumann architecture
Computer Organization
The Stored Program Computer
CSNB COMPUTER SYSTEM CHAPTER 1 INTRODUCTION CSNB153 computer system.
Computer Science 210 Computer Organization
Chapter 4 The Von Neumann Model
Components of Computer
Microprocessor and Assembly Language
Introduction to Computer Engineering
Computer Architecture
Chapter 4 The Von Neumann Model
System Architecture 1 Chapter 2.
Chapter 4 The Von Neumann Model
Number Representations and Basic Processor Architecture
ECEG-3202 Computer Architecture and Organization
Intro to Architecture & Organization
Ghifar Parahyangan Catholic University August 22, 2011
ECEG-3202 Computer Architecture and Organization
Chapter 5: Computer Systems Organization
A primer on Computers and Programs
Computer Architecture
The Stored Program Computer
October 29 Review for 2nd Exam Ask Questions! 4/26/2019
Computer Organization and Assembly Languages Yung-Yu Chuang 2005/09/29
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.
Introduction to Computer Engineering
Computer Architecture
Introduction to Computer Engineering
Introduction to Computer Engineering
Presentation transcript:

Computer Design & Organization Introduction Computer architecture: deals with the functional behavior of a computer system as viewed by a programmer (like the size of a data type – 32 bits to an integer). Computer organization: deals with structural relationships that are not visible to the programmer (like clock frequency or the size of the physical memory). There is a concept of levels in computer architecture: The basic idea is that there are many levels at which a computer can be considered, from the highest level, where the user is running programs, to the lowest level, consisting of transistors and wires. Dr. Faisal Alzyoud

Levels of Machines There are a number of levels in a computer (the exact number is open to debate), from the user level down to the transistor level. Progressing from the top level downward, the levels become less abstract as more of the internal structure of the computer becomes visible. Dr. Faisal Alzyoud

Computer Science View of the World Dr. Faisal Alzyoud

The von Neumann Model The von Neumann model consists of five major components: (1) input unit; (2) output unit; (3) arithmetic logic unit; (4) memory unit; (5)control unit. Dr. Faisal Alzyoud

The System Bus Model A refinement of the von Neumann model, the system bus model has a CPU (ALU and control), memory, and an input/output unit. Communication among components is handled by a shared pathway called the system bus, which is made up of the data bus, the address bus, and the control bus. There is also a power bus, and some architecture may also have a separate I/O bus. Dr. Faisal Alzyoud

The Fetch-Execute Cycle The steps that the control unit carries out in executing a program are: (1) Fetch the next instruction to be executed from memory. (2) Decode the opcode. (3) Read operand(s) from main memory, if any. (4) Execute the instruction and store results. (5) Go to step 1. This is known as the fetch-execute cycle. Dr. Faisal Alzyoud

A Typical Computer System Dr. Faisal Alzyoud

The Motherboard Dr. Faisal Alzyoud