CMSC 104, LECT02 1 Machine Architecture An Introduction to Computer Components.

Slides:



Advertisements
Similar presentations
 2002 Prentice Hall Hardware Basics: Inside The Box Chapter 2.
Advertisements

Computer Performance & Storage Devices Computer Technology.
CMSC 104, Version 9/01 1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The.
11:15:01 Storage device. Computer memory Primary storage 11:15:01.
Aug CMSC 104, LECT-021 Machine Architecture and Number Systems Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY.
Lesson 3 — How a Computer Processes Data
B.A. (Mahayana Studies) Introduction to Computer Science November March The Motherboard A look at the brains of the computer, the.
 Memory Memory  Types of Memory Types of Memory  Memory Representation Memory Representation  Random Access Memory Random Access Memory  Read Only.
Computer Systems. Basic Components Auxiliary Storage OutputProcessor Main Memory Input.
Ch Review1 Review Chapter Microcomputer Systems Hardware, Software, and the Operating System.
Computer architecture Microprocessor based computers.
1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting.
Lesson 2 — How Does A Computer Process Data?
Hardware & Software The CPU & Memory.
1 Bits, Bytes, and Binary Numbers Bits and bytes are small pieces of computerized data that communicate commands to a computer’s CPU: A bit is either a.
CMSC 1041 Machine Architecture An Introduction to Computer Components.
Machine Architecture CMSC 104, Section 4 Richard Chang 1.
CMSC104 Lecture 2 Remember to report to the lab on Wednesday.
Components of a Computer Prepared by: Mrs. McCallum-Rodney.
TheTeacher Computing Data Storage Computing. TheTeacher Computing Primary Storage One of the fundamental properties of a computer is that it can store.
Introduction to Computer Architecture. What is binary? We use the decimal (base 10) number system Binary is the base 2 number system Ten different numbers.
Lesson 3 — How a Computer Processes Data Unit 1 — Computer Basics.
Introduction to Computer Architecture. What is binary? We use the decimal (base 10) number system Binary is the base 2 number system Ten different numbers.
SKILL AREA: 1.2 MAIN ELEMENTS OF A PERSONAL COMPUTER.
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.
Development of Computers. Hardware 1. Original concept: Charles Babbage 1840’s 2. 4 basic components of a computer system: input store mill output (Now:
Parts of the Computer System
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Computer Fundamentals/ Organizing Your Work/ 1 of 16.
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.
CMSC Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number.
University of Sargodha, Lahore Campus Prepared by Ali Saeed.
Memory The term memory is referred to computer’s main memory, or RAM (Random Access Memory). RAM is the location where data and programs are stored (temporarily),
CMSC 1041 Machine Architecture An Introduction to Computer Components.
Levi Garner. Topics  Computer Storage Devices  Storage Media and Storage Devices  Memory and Storage.
4 1 Computer Hardware Ch.5-A,B,C,D; Ch.4-B FALL 2000 Rob Wolfe.
IC 3 BASICS, Internet and Computing Core Certification Computing Fundamentals Lesson 2 How Does a Computer Process Data?
1 Lesson 1 Computers and Computer Systems Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Computers Inside & Out. How have computers affected your life? How has technology affected your life?
Computer Performance & Storage Devices Computer Technology.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Chapter 1 Looking Inside the Computer System.
Introduction to Programming. Key terms  CPU  I/O Devices  Main memory  Secondary memory  Operating system  User interface  Application  GUI 
INTRODUCTION TO COMPUTERS. A computer system is an electronic device used to input data, process data, store data for later use and produce output in.
Part 3 Ms. T. N. Jones1. Vocabulary 1. A design for health, safety, and comfort 2. A tool used to put data into a computer, such as a keyboard, mouse,
Computer Architecture and Number Systems
STORAGE DEVICES Towards the end of this unit you will be able to identify the type of storage devices and their storage capacity.
Parts of a Computer.
Introduction to Computer Architecture
STORAGE DEVICES Towards the end of this unit you will be able to identify the type of storage devices and their storage capacity.
COMPUTER MEMORY & DATA STORAGE
Machine Architecture and Number Systems
COMPUTER MEMORY & DATA STORAGE
STORAGE DEVICES Towards the end of this unit you will be able to identify the type of storage devices and their storage capacity.
Computers: Hardware and Software
Computer Based Technology:
Computer Hardware Prepared by:- Mr. Pawan Kumar
Introduction to Computer Architecture
Machine Architecture and Number Systems
GCSE OCR 3 Memory Computer Science J276 Unit 1
Machine Architecture and Number Systems
Machine Architecture and Number Systems
Machine Architecture and Number Systems
Machine Architecture and Number Systems
Overview 1. Inside a PC 2. The Motherboard 3. RAM the 'brains' 4. ROM
Notes from Last Class Office Hours: GL Accounts?
Objectives Describe the difference between RAM and ROM
Machine Architecture and Number Systems
Presentation transcript:

CMSC 104, LECT02 1 Machine Architecture An Introduction to Computer Components

CMSC 104, LECT02 2 Major Computer Components Central Processing Unit (CPU) Bus Main Memory (RAM) Secondary Storage I / O Devices Starting the computer

CMSC 104, LECT02 3 CPU Central Processing Unit The Brain Controls all other computer functions

CMSC 104, LECT02 4 The Bus Computer components are connected by a bus A bus is a group of parallel wires that carry control signals and data between components

CMSC 104, LECT02 5 Main Memory Main memory is made up of capacitors If the capacitor is charged, then its state is said to be 1 or ON. We could also say the the bit is set. If the capacitor does not have a charge, then its state is 0 or OFF. We could also say that the bit is reset or cleared.

CMSC 104, LECT02 6 Size of Capacitors Has decreased dramatically over the last 20 years. Now we can fit several million capacitors on a chip the size of a dime. As this technology becomes older, we can expect the price of memory to decrease. Is it already decreasing ? ABSOLUTELY !

CMSC 104, LECT02 7 Memory, the continuing saga Memory is divided into cells, where each cell contains 8 bits. Remember that 8 bits is called a byte. Each of these cells is numbered. The number associated with a cell is known as its address. Volatile storage

CMSC 104, LECT02 8 Reading & Writing In addition to the circuitry that holds the bits, there are other circuits that allow other components to oGet the value of the data held at a particular address - known as a READ. oOR store data at that address - known as a WRITE.

CMSC 104, LECT02 9 Memory Access All addresses in memory can be accessed in the same amount of time. We DO NOT have to start at address 0 and read everything until we get to the address we really want. We can go directly to the address we want and access the data. That is why we call Main Memory RAM - Random Access Memory

CMSC 104, LECT02 10 Secondary Storage Disks -- floppy, hard, removable Tapes (sequential access) CDs Stores files oprograms odata files (binary, text) odirectory structure Persistent storage

CMSC 104, LECT02 11 I/O I/O is handled by peripheral devices. A peripheral device is some machine that is not an integral part of the computer. Examples: omonitor okeyboard omouse odisk drive oprinter oscanner

CMSC 104, LECT02 12 Media Many I/O devices work in conjunction with media A medium holds information (programs, data, text files) Examples: floppy disk (not the drive itself) hard disk (not the drive itself) magnetic tape (not the drive itself)

CMSC 104, LECT02 13 Bits, Bytes, and Words A byte is 8 bits A word is 32 bits or 4 bytes Long word = 8 bytes = 64 bits Quad word = 16 bytes = 128 bits Programming languages use these standard number of bits when organizing data storage and access. What do you call 4 bits ?? (hint: it is a small byte)

CMSC 104, LECT02 14 Booting the Computer The term boot comes from the expression pulling yourself up by your bootstraps. It refers to the computer’s start-up procedure. When the computer is first turned on, it reads start-up instructions found in the ROM chips.

CMSC 104, LECT02 15 Booting the Computer (continued) These instructions cause the computer to do a series of tests. Each of the components is tested. The last thing that happens during boot is that the operating system is loaded from the hard disk into RAM. The computer cannot do anything until the operating system is loaded, because the operating system manages all of the basic functions of the computer.