1 / 21

COMS 161 Introduction to Computing

COMS 161 Introduction to Computing. Title: Computing Basics Date: September 15, 2004 Lecture Number: 10. Announcements. May miss later part of office hours today. Review. Digitization Computer System Basics Finite discrete states Instructions cause state transitions

cally-lowe
Télécharger la présentation

COMS 161 Introduction to Computing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. COMS 161Introduction to Computing Title: Computing Basics Date: September 15, 2004 Lecture Number: 10

  2. Announcements • May miss later part of office hours today

  3. Review • Digitization • Computer System Basics • Finite discrete states • Instructions cause state transitions • Fetch-execute cycle • Indirection provides flexibility

  4. Outline • Computer System Basics

  5. Computer Systems • Slight variant of the add instruction • add val1, val2, val3 • Fetch the values (operands) to be added • Read the memory at the location of val2 • Put the value on one of the adder inputs • Read the memory at the location of val3 • Put the value on the other adder inputs • Execute the add • Put result in memory at location val1

  6. Computer Systems • Seemingly simple instruction like add • Require several simpler steps to execute • As complex as computers seem, they still do simple things • Moving data from one place to another • Simple arithmetic operations • Illusion of complexity • Perpetuated by the speed of simple operations

  7. Computer Systems • Composed of two major items • Hardware • Electronic devices that perform specific tasks • Two basic groups • Processing unit • The brain of the computer • Peripherals • Software • Programs the hardware executes

  8. Basic Computer Components • All computers, large or small, have the same basic parts • Input/output (I/O) • Processor • Memory • The software (instructions forthe processor) are stored in the same memory with the data

  9. Basic Computer Components • The main parts of a computer are on the motherboard

  10. The von Neumann Architecture • All modern computers follow the logical model of computing called the von Neumann Architecture: • Stored-program design (program instructions in memory) • Computer organized into three main parts: • CPU • Main Memory • Primary storage • I/O Subsystem • Input and output devices (peripherals) • Secondary storage(mass storage) von Neumann’s 1945 paper can be found at http://www.wps.com/projects/EDVAC/

  11. The CPU

  12. Fetch Decode Execute Central Processing Unit • The CPU has two main components: • Control unit • Implements the program interpretation cycle • Determines which instruction to next fetch from memory • Decodes the instruction • Makes sure that it gets executed • Coordinates activities of all other parts of the computer • ALU (arithmetic-logic unit) • Actually executes the programmed instructions

  13. Central Processing Unit • The Intel Pentium-M

  14. Central Processing Unit • A wafer containing several hundred CPU’s

  15. Main Memory • Work area for the CPU • Containsmillions of storage cells • 256MBytes, 512MBytes, 1GByte • Information in memory • Program instructions • Numbers for arithmetic • Text character codes (ASCII) • Digital codes representing pictures • …

  16. Main Memory • SIMMS • Single In-Line Memory Modules • Small circuit boards holding memory chips

  17. 0x3550 Data Bus 0x3554 Memory Control Unit 0x3558 0x355c 0x3560 Address Bus 0x3564 0x3568 0x356c Main Memory • Composed of individual memory cells • Cells are grouped into words • Words are accessed via a unique address unique memory address

  18. Main memory is generally Random Access Memory (RAM) Readable Writable General use programs and data Volatile disappears when powered off Computers also generally have Read Only Memory (ROM) Readable Permanent (not writable) Special purpose boot instructions basic operations (BIOS) Non-volatile unaffected by power-off ROM is not part of main memory Main Memory

  19. Booting • Without power everything in main memory is lost • How does a computer start itself?

  20. Booting • Special start-up instructions are stored in ROM • BIOS (basic input-output system)

  21. Booting • BIOS loads the operating system from disk into main memory • After instructions are loaded into memory, the CPU executes them

More Related