Machine Architecture and Number Systems

Slides:



Advertisements
Similar presentations
INTRODUCTION OF COMPUTER
Advertisements

Computer Architecture. Central Processing Unit (CPU)- micro processor The Personal Computer.
Main Memory Lecture 2 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Computer Hardware.
System Environment Part 1 The Register Level. Module Content “Systems environment” is a term used to describe the hardware and software structures which.
CS 0008 Day 2 1. Today Hardware and Software How computers store data How a program works Operators, types, input Print function Running the debugger.
CMSC 104, Version 9/01 1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The.
Aug CMSC 104, LECT-021 Machine Architecture and Number Systems Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY.
Introduction to Computers Rabie A. Ramadan, PhD. 2 Class Information Website ses/2012/intro/
1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting.
Binary Numbers.
Lesson 2 — How Does A Computer Process Data?
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Computer Hardware Introduction. Computer Hardware Introduction The basic form of a computer is this: PROCESSING MEMORY INPUTOUTPUT But let’s look inside.
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.
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 1: An Overview of Computers and Programming Languages.
Lesson 3 — How a Computer Processes Data Unit 1 — Computer Basics.
Computers Are Your Future Chapter 1 Slide 1 Introduction to the Computers & Internet Chapter 1 Concepts of Information Technology IT.
Aug CMSC 104, LECT-021 Machine Architecture Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY of NORTH CAROLINA.
Development of Computers. Hardware 1. Original concept: Charles Babbage 1840’s 2. 4 basic components of a computer system: input store mill output (Now:
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.
Computer Programming (1) Code & No.: CS 102 CREDIT HOURS: 5 UNIT Lecture 3.0 hours/week Lab: 2.0 hour/on every week a. This course introduces the students.
The Computer System.
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),
Binary Decimal Hexadecimal
CMSC 1041 Machine Architecture An Introduction to Computer Components.
Hardware Information Created by Nasih 1. Hardware  The physical components of a computer system, including any peripheral equipment such as printers,
 A computer is an electronic device that receives data (input), processes data, stores data, and produces a result (output).  It performs only three.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
CMSC 104, LECT02 1 Machine Architecture An Introduction to Computer Components.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Chapter 1 Looking Inside the Computer System.
24/06/20161 Hardware Processor components & ROM. 224/06/2016 Learning Objectives Describe the function and purpose of the control unit, memory unit and.
Introduction to Programming. Key terms  CPU  I/O Devices  Main memory  Secondary memory  Operating system  User interface  Application  GUI 
UMBC CMSC 104 – Section 01, Fall UMBC CMSC 104, Section 01 - Fall 2016  Nothing. Enjoy your weekend! 2.
Computer Graphics HARDWARE. Computers  Computers are automatic, electronic machines that –accept data & instructions from a user (INPUT) –store the data.
A+ Guide to Managing and Maintaining Your PC, 7e Chapter 1 Introducing Hardware.
Chapter 2 content Basic organization of computer What is motherboard
GCSE COMPUTER SCIENCE Computers 1.2 Memory, Storage and Binary.
Computer Architecture and Number Systems
CPU Lesson 2.
Computer Science II Chapter 1.
Chapter 1: An Overview of Computers and Programming Languages
A+ Guide to Managing and Maintaining Your PC, 7e
Chapter 7.2 Computer Architecture
Introduction to Computer Architecture
Computer Architecture
Number System conversions
Chapter 1: An Overview of Computers and Programming Languages
C++ Programming: From Problem Analysis to Program Design
Introduction to Computers
Machine Architecture and Number Systems
Computer Based Technology:
Introduction to Computers
Introduction to Computer Architecture
Machine Architecture and Number Systems
Logical Computer System
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
Chapter Four Data Representation in Computers By Bezawit E.
Notes from Last Class Office Hours: GL Accounts?
Machine Architecture and Number Systems
Networks & I/O Devices.
Presentation transcript:

Machine Architecture and Number Systems CMSC 104, Lecture 2 John Y. Park [This lecture used dblock-spr-08 as a starting point, which in turn was a slight elaboration of evans-fall-06]

Why Are We in this Course? Remember: “There are no stupid questions: just stupid people who don’t know they should be asking something.”

Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting from Binary to Decimal Converting from Decimal to Binary The Hexadecimal Number System

Some People Think A Computer is…

Some People Think A Computer is…

Major Computer Components Central Processing Unit (CPU) Bus Main Memory (RAM) Secondary Storage Media I / O Devices This division into components is somewhat symbolic, more of a conceptual decomposition. (E.g., smart disk controllers, sub-buses, cache vs. main RAM)

Schematic Diagram of a Computer Diagram taken from Java Concepts, Fourth Edition

The CPU Central Processing Unit The “brain” of the computer Controls all other computer functions In PCs (personal computers) also called the microprocessor or simply processor.

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.

Main Memory Main memory holds information such as computer programs, numeric data, or documents created by a word processor. Main memory is made up of capacitors. If a capacitor is charged, then its state is said to be 1, or ON. We could also say the bit is set. If a capacitor does not have a charge, then its state is said to be 0, or OFF. We could also say that the bit is reset or cleared.

Main Memory (con’t) Memory is divided into cells, where each cell contains 8 bits (a 1 or a 0). Eight bits is called a byte. Each of these cells is uniquely numbered. The number associated with a cell is known as its address. Main memory is volatile storage. That is, if power is lost, the information in main memory is lost. - There are other byte sizes (e.g., DEC PDP-10: 10 bits). - This affects writing portable code (i.e., never assume) - Not all main mem is volatile: core mem used in Challenger in 1986!

Main Memory (con’t) Other computer components can get the information held at a particular address in memory, known as a READ, or store information at a particular address in memory, known as a WRITE. Writing to a memory location alters its contents. Reading from a memory location does not alter its contents.

Main Memory (con’t) 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 (sequential access). We can go directly to the address we want and access the data (direct or random access). That is why we call main memory RAM (Random Access Memory).

Main Memory (con’t) “Stupid Question” #1: Why does adding more RAM make computers faster (sometimes)? Answer is much more complicated than you think: has to do with swapping/paging, multiprocessing

Secondary Storage Media Disks -- floppy, hard, removable (random access) Tapes (sequential access) CDs (random access) DVDs (random access) Secondary storage media store files that contain computer programs data other types of information This type of storage is called persistent (permanent) storage because it is non-volatile. Generally much slower

I/O (Input/Output) Devices Information input and output is handled by I/O (input/output) devices. More generally, these devices are known as peripheral devices. Examples: monitor keyboard mouse disk drive (floppy, hard, removable) CD or DVD drive printer scanner

Bits, Bytes, and Words A bit is a single binary digit (a 1 or 0). A byte is 8 bits (usually… but not always!) 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? 2 bits? (hint: portions of a byte )

Number Systems The on and off states of the capacitors in RAM can be thought of as the values 1 and 0, respectively. Therefore, thinking about how information is stored in RAM requires knowledge of the binary (base 2) number system. Let’s review the decimal (base 10) number system first.

The Decimal Number System The decimal number system is a positional number system. Example: 5 6 2 1 1 X 100 = 1 103 102 101 100 2 X 101 = 20 6 X 102 = 600 5 X 103 = 5000

The Decimal Number System The decimal number system is also known as base 10. The values of the positions are calculated by taking 10 to some power. Why is the base 10 for decimal numbers? Because we use 10 digits, the digits 0 through 9. The decimal number system, and other number systems, are symbolic representations of concrete quantities [Mod: added line about symbolic reps]

The Binary Number System The binary number system is also known as base 2. The values of the positions are calculated by taking 2 to some power. Why is the base 2 for binary numbers? Because we use 2 digits, the digits 0 and 1.

The Binary Number System The binary number system is also a positional numbering system. Instead of using ten digits, 0 - 9, the binary system uses only two digits, 0 and 1. Example of a binary number and the values of the positions: 1 0 0 1 1 0 1 26 25 24 23 22 21 20

Converting from Binary to Decimal 1 0 0 1 1 0 1 1 X 20 = 1 26 25 24 23 22 21 20 0 X 21 = 0 1 X 22 = 4 20 = 1 24 = 16 1 X 23 = 8 21 = 2 25 = 32 0 X 24 = 0 22 = 4 26 = 64 0 X 25 = 0 23 = 8 1 X 26 = 64 7710

Converting from Binary to Decimal Practice conversions: Binary Decimal 11101 1010101 100111

Geek Joke #1 Seen on a random T-shirt: There are 10 kinds of people in the world: Those who understand binary …and those who don’t

Converting from Decimal to Binary Make a list of the binary place values up to the number being converted. Perform successive divisions by 2, placing the remainder of 0 or 1 in each of the positions from right to left. Continue until the quotient is zero. Example: 4210 25 24 23 22 21 20 32 16 8 4 2 1 1 0 1 0 1 0

Converting from Binary to Decimal Practice conversions: Decimal Binary 59 82 175

Working with Large Numbers 0 1 0 1 0 0 0 0 1 0 1 0 0 1 1 1 = ? Humans can’t work well with binary numbers; there are too many digits to deal with. Memory addresses and other data can be quite large. Therefore, we sometimes use the hexadecimal and octal number system.

The Hexadecimal Number System The hexadecimal number system is also known as base 16. The values of the positions are calculated by taking 16 to some power. Why is the base 16 for hexadecimal numbers ? Because we use 16 symbols, the digits 0 through 9 and the letters A through F.

The Hexadecimal Number System Binary Decimal Hexadecimal Binary Decimal Hexadecimal 0 0 0 1010 10 A 1 1 1 1011 11 B 10 2 2 1100 12 C 11 3 3 1101 13 D 100 4 4 1110 14 E 101 5 5 1111 15 F 110 6 6 111 7 7 1000 8 8 1001 9 9

The Hexadecimal Number System Example of a hexadecimal number and the values of the positions: 3 C 8 B 0 5 1 166 165 164 163 162 161 160

The Octal Number System The hexadecimal number system is also known as base 8. The values of the positions are calculated by taking 8 to some power. Why is the base 8 for hexadecimal numbers ? Because we use 8 symbols, the digits 0 through 7.

The Octal Number System Example of an octal number and the values of the positions: 1 3 0 0 2 4 85 84 83 82 81 80 Binary equivalent: 1 011 000 000 010 100 = 1011000000010100

Example of Equivalent Numbers Binary: 1 0 1 0 0 0 0 1 0 1 0 0 1 1 12 Decimal: 2064710 Hexadecimal: 50A716 Notice how the number of digits gets smaller as the base increases.