7. Peripherals 7.1 Introduction of peripheral devices Computer Studies (AL)

Slides:



Advertisements
Similar presentations
Computer Organization, Bus Structure
Advertisements

Accessing I/O Devices Processor Memory BUS I/O Device 1 I/O Device 2.
I/O Organization popo.
Parts of a Computer.
Computer Hardware 4 Main Types.
P3- Represent how data flows around a computer system
INTRODUCTION OF COMPUTER
FIU Chapter 7: Input/Output Jerome Crooks Panyawat Chiamprasert
Computer Bits and Parts Parts of the computer system.
Computer Components.
Using Computers CS French Chapter 1.
Introduction to Computer Systems
1 Sec (2.1) Computer Architectures. 2 For temporary storage of information, the CPU contains cells, or registers, that are conceptually similar to main.
CS 104 Introduction to Computer Science and Graphics Problems Basic Organization & Concepts 09/09/2008 Yang Song (Prepared by Yang Song and Suresh Solaimuthu)
Computer Hardware.
Basic Input/Output Operations
Introduction to the Computer
I/O Subsystem Organization and Interfacing Cs 147 Peter Nguyen
0 What is a computer?  Simply put, a computer is a sophisticated electronic calculating machine that:  Accepts input information,  Processes the information.
Input, Output, Processing and Storage
CMSC 104, Version 9/01 1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The.
Computer Architecture Lecture 01 Fasih ur Rehman.
Aug CMSC 104, LECT-021 Machine Architecture and Number Systems Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY.
An Introduction To Computer Hardware
Computer System Overview Chapter 1. Operating System Exploits the hardware resources of one or more processors Provides a set of services to system users.
1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting.
Input/OUTPUT [I/O Module structure].
Configuration.
Input/ Output By Mohit Sehgal. What is Input/Output of a Computer? Connection with Machine Every machine has I/O (Like a function) In computing, input/output,
Interrupts and DMA CSCI The Role of the Operating System in Performing I/O Two main jobs of a computer are: –Processing –Performing I/O manage and.
1. Introduction 2. Methods for I/O Operations 3. Buses 4. Liquid Crystal Displays 5. Other Types of Displays 6. Graphics Adapters 7. Optical Discs 10/01/20151Input/Output.
Input/Output 2 What is I/O? How we get the CPU to communicate with devices From the computer’s point of view, it’s just 1’s and 0’s Gets interpreted.
What is a computer? Computer is a device for processing information.
Computer Science Web quest. Input devices Input devices are used to give the computer information so it does what the operator wants it to do. There are.
Parts of a Computer - Introduction
Accessing I/O Devices Processor Memory BUS I/O Device 1 I/O Device 2.
Aug CMSC 104, LECT-021 Machine Architecture Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY of NORTH CAROLINA.
Computer System Internal components - The processor - Main memory - I / O controllers - Buses External components (peripherals). These include: - keyboard.
Input-Output Organization
INTRODUCTION.  Upon completing this topic, you should be able to: Illustrate a basic elements of digital computer system and their functions, Depicts.
By: Victoria Cain CPU- the component of a computer system that PROCESSES basic operations of the system. Monitor- a cathode-ray tube used for display.
Computer Basics Common Components
Computer Hardware A computer is made of internal components Central Processor Unit Internal External and external components.
Machine Architecture and Number Systems
Machine Architecture CMSC 104, Section 4 Richard Chang 1.
Computer Architecture Lecture – 4.  Discussed individual functional units of the computer.  But to form a fully computational unit, they must be connected.
Parts and Operation of a Computer
IT3002 Computer Architecture
 Input is data you put into your computer like:  Keyboards  Mouse  Data from another computer  Webcam INPUT.
بسم الله الرحمن الرحيم MEMORY AND I/O.
INPUT, Output & storage devices
Introduction To Computers
I/O: Input-Output By: Tommy Zeng. What is I/O? I/O – short for “Input – Output” How a computer interacts with its users Input – gets information from.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Basic concepts of a computer system V1.0 (21/11/2005)
Peripherals on or near an edge or constituting an outer boundary; the outer area; "Russia's peripheral provinces"; "peripheral suburbs" (computer science)
1 Chapter 1 Basic Structures Of Computers. Computer : Introduction A computer is an electronic machine,devised for performing calculations and controlling.
Sara Naheed Amjad Information Technology
Computer Organization
Sara Naheed Amjad Information Technology
Chapter 7.2 Computer Architecture
Input/Output.
08/28/06 parts of the computer.
Machine Architecture and Number Systems
Machine Architecture and Number Systems
Machine Architecture and Number Systems
Computer Electronic device Accepts data - input
Machine Architecture and Number Systems
08/28/06 parts of the computer.
Presentation transcript:

7. Peripherals 7.1 Introduction of peripheral devices Computer Studies (AL)

Reference Carl Hamacher, “Computer Organization fifth edition (2002)”, McGraw Hill

Content Functional Characteristics of peripheral devices and associated media Input / Output devices Buses Example of data transfer between I/O and CPU. Backing Store (discuss in other topic) Access time Transfer rate

Basic functional units in a computer system Input device System Unit CPU Main memory Output deviceSecondary Storage device Key: Data flow

Functional characteristics of peripheral devices Input devices Keyboard, mouse, scanner, etc Output devices Printer, monitor, speaker Storage devices Backing store: Hard disk, floppy disc

BUS Connection of the devices in a computer system. Address bus Carry the address Data bus Carry the data Control bus Carry the control signal

Accessing I/O devices Bus enables all the devices connected to it to exchange information Each I/O device is assigned a unique set of addresses. When processor places a particular address on the address bus, the device that recognized this address responds to the commands issued on the control bus. The processor requests either a read or a write operation, and the requested data are transferred over the data bus.

Accessing I/O devices When I/O devices and the memory share the same address space, the arrangement is called memory-mapped I/O. That is, the device-control registers are mapped into the address space of the processor. The CPU executes I/O requests using the standard data- transfer data-transfer instructions to read and write the device-control registers. With Memory-mapped I/O, any machine instruction that can access memory can be used to transfer data to or from an I/O device.

Example Address of input (e.g. Keyboard) buffer: DATAIN Move DATAIN, R0 Read the data from DATAIN and stores them into processor register R0. Move R0, DATAOUT Sends the contents of register R0 to location DATAOUT, which may be output data buffer of a display unit or a printer.