Anatomy of a Computer RAM ROM CPU etc

  • Slides: 22
Download presentation
Anatomy of a Computer RAM, ROM, CPU, etc. [This material can be found in

Anatomy of a Computer RAM, ROM, CPU, etc. [This material can be found in Chapt. 3 of Discovering Computers 2000 (Shelly, Cashman and Vermaat). ]

A chip off the old block z. Millions of transistors are connected into what

A chip off the old block z. Millions of transistors are connected into what is called an integrated circuit or chip z. The most important chip in a computer is the microprocessor z. The microprocessor houses the Central Processing Unit (CPU), the “brain” of the computer z. Ex. The Pentium II is a microprocessor

How many? z. Word size and bus width z. Computing means moving bits around,

How many? z. Word size and bus width z. Computing means moving bits around, so an important question is how many bits can be handled at one time zanalogy: two-lane, four-lane or eight-lane highway

How fast? z. Each of the computer’s manipulations (instructions) begins a “tick” of the

How fast? z. Each of the computer’s manipulations (instructions) begins a “tick” of the clock z. So the faster the clock ticks, the faster the computer z. Clock speed: a measure of how fast the computer is, given in MHz (megahertz millions of cycles per second) z. Middle number written on La. Salle’s computers

How fast? (Cont. ) z. Sometimes one instruction can be started before the previous

How fast? (Cont. ) z. Sometimes one instruction can be started before the previous one was complete z. Like have a batter on deck z. So another measure of speed is useful z. Instructions per second, another measure of speed, is measured in MIPS (millions of instructions per second)

The mother of all circuit boards zchips and other things are connected together on

The mother of all circuit boards zchips and other things are connected together on what is called a circuit board zthe mother board, a. k. a. the system board, holds the main components of the computer y. CPU yclock yconnectors yexpansion slots, ETC.

The fan and the sink z. The chips, especially the microprocessor can get hot

The fan and the sink z. The chips, especially the microprocessor can get hot zheat sink: the strangely shaped metal or ceramic structure sitting on the processor that serves to draw away the heat zthere’s also a little fan near the processor; that’s often what you hear on old computers

A link to the outside world z. The process of putting information into or

A link to the outside world z. The process of putting information into or getting information out of a computer is called interfacing or input/output (IO) zports are sockets, typically in the back of a computer, where one plugs in the cable connecting the computer to the IO devices

Two types zserial ydata sent one bit at a time yfor modems and some

Two types zserial ydata sent one bit at a time yfor modems and some printers ycable can be very long yex. MIDI, USB zparallel ydata sent eight bits at a time ylimit on length of cable yex. SCSI

SCSI port z. Small computer system interface zpronounced “scuzzy” zallows more than one device

SCSI port z. Small computer system interface zpronounced “scuzzy” zallows more than one device to be connected to a single port zdaisy chain: getting the output for a second output device from the first (rather than directly from the computer), the output for a third can come from the second and so on

A connector in every port z. Ports have connectors, as do cables zconnectors come

A connector in every port z. Ports have connectors, as do cables zconnectors come in two varieties ymale: have pins sticking out yfemale: have holes to receive pins

Analog to Digital z. Any measurement that can be converted to an electronic signal

Analog to Digital z. Any measurement that can be converted to an electronic signal (voltage or current) can be directly fed into a computer zthe original data is often continuous (analog) and must be converted into digital form z. This signal can be fed in through a port (typically the RS-232 port) so long as the appropriate software is installed

In the cards z. Expansion Slot: A socket designed to hold the circuit board

In the cards z. Expansion Slot: A socket designed to hold the circuit board for the device, such as a sound or video card, that adds capability to the computer system z. Adapter cards: additional circuitry and chips that extend your PC’s capabilities allowing you to customize it

Some types of cards zvideo or graphics card: enhances computer’s ability to convert output

Some types of cards zvideo or graphics card: enhances computer’s ability to convert output into video and send it to the monitor z. Sound card: improves your computer’s sound capabilities, be it input (microphone) or output (speakers) zinternal modem: allows computer to connect to networks via phone lines and such

Plug and play zrefers to computer’s capability to figure out what to do when

Plug and play zrefers to computer’s capability to figure out what to do when new expansion cards and devices are added zthis way the user does not have to know how to “configure” the system

Memories z. Saving information we have entered (e. g. onto floppies) is referred to

Memories z. Saving information we have entered (e. g. onto floppies) is referred to as “storage; ” it is long term and slow by computer standards (storage memory) z. Before we save the data, it is in the computer’s memory, i. e. in memory chips, which hold the information temporarily z. Memory also holds the instructions a computer needs to operate

ROM z. Read Only Memory z. This memory is loaded up by the manufacturer

ROM z. Read Only Memory z. This memory is loaded up by the manufacturer (some is programmable) zcontains low-level instructions for the computer z. Not lost when the computer is turned off z“nonvolatile” memory z“stored program concept”

RAM z. Random Access Memory z. The memory the user uses z. The programs

RAM z. Random Access Memory z. The memory the user uses z. The programs one loads and the data one enters are here z. Lost when the computer is turned off z“volatile” memory zrandom?

Random Vs. Sequential z. A cassette tape is sequential access; you have to go

Random Vs. Sequential z. A cassette tape is sequential access; you have to go through song one and two to get to song three z. A CD is random access; you can jump directly to song three

Some Types of RAM z. Dynamic RAM (D-RAM): dynamic means changing, which for memory

Some Types of RAM z. Dynamic RAM (D-RAM): dynamic means changing, which for memory is not necessarily a good thing, so dynamic memory must be continually refreshed y. Synchronous DRAM — when the memory update and clock are better coordinated (“in synch”) z. Static RAM (SRAM) doesn’t need constant refreshing, is faster but more expensive than dynamic

Cache zpronounced “cash” zit’s an area of high-speed memory (often SRAM) z. Instead of

Cache zpronounced “cash” zit’s an area of high-speed memory (often SRAM) z. Instead of looking through the slower RAM, data is looked for here first, a speedy intermediary z. You often encounter the term while surfing the web; data from a web site can be stored in a cache

Buffer and Clipboard z. Buffer: where data coming in (from input devices) or going

Buffer and Clipboard z. Buffer: where data coming in (from input devices) or going out (to output devices) is stored until the transaction is complete z. Clipboard: Memory location where data is placed during an application such as word processing (cutting or copying puts data on the clipboard); it is also used to transfer data from one application to another (e. g. from Excel to Word)