SlideShare a Scribd company logo
Computer Architecture(Basics)
Sunawar Khan Ahsan
IIUI
COMPUTER ARCHITECTURE
TOPICS OF
DISCUSSION:-
DEFINITION HISTORY ROLE I/O DEVICES CPU MEMORY REGISTERS BUS
Definition
Section 1
Computer architecture??
Computer architecture is the conceptual
design and fundamental operational
structure of a computer system.
The design made a clear distinction
between architecture and implementation,
allowing IBM to release a suite of
compatible designs at different prices.
History of computer architecture:-
• The term architecture as applied to computer
design, was first used in 1964 by Gene Amdahl, G.
Anne Blaauw, and Frederick Brooks, Jr., the
designers of the IBM System/360.
• They joined the term to refer to those aspects of
the instruction set available to programmers,
independent of the hardware on which the
instruction set was implemented.
Frederick Brooks
Gene Amdahl
Role of Computer Architecture:-
The coordination of abstract levels of a
processor under changing forces, involving
design, measurement and evaluation.
 It also includes the overall fundamental
working principle of the internal logical
structure of a computer system.
Von Neumann Architecture
Section 2
Computer architecture
Components of computer architecture:-
The important components
I/O Devices
CPU(central
processing
unit)
Memory Register Buses
Components
Section 3
I/O Devices
 Its stands for Input and Output devices.
 Input devices:
These devices are used to communicate with the computer.
 Output devices:
These devices are used to communicate with the user.
Input devices:
Following are the examples of some input
devices:
Keyboard
Mouse
Joystick
Microphone
Scanner
Bar code reader
Output Devices:
Following are the examples of
some input devices:
Monitor
Speakers
Printers
Projectors
Computer architecture
Central Processing Unit
Section 4
CPU:
Central processing unit (CPU) is the portion of
a computer system that carries out
the instructions of a computer program, to
perform the basic arithmetical, logical,
and input/output operations of the system.
The CPU plays a role somewhat analogous to
the brain in the computer.
CPU is a small chip mounted on the circuit board
(mother board).
CPU also perform data processing.
PARTS:-
CPU.
CU ALU
CU:
It stands for “Control Unit”.
A control unit in general is a central part of
the machinery that controls its operation.
The CU reads the instruction from memory,
decodes and executes these instructions.
Its is also known as fetch-decode and execute
cycle.
EXAMPLES:-
A few examples of devices that require a
control unit are CPUs and GPUs.
ALU:
Its stands for “Arithmetic and Logical Unit”.
An arithmetic-logic unit (ALU) is the part of a
computer processor (CPU) that carries out
arithmetic and logic operations on the operands
in computer instruction words.
Operations
Operations
Arithmetic
operations.
Logical
operations.
Arithmetic operations:
Followings are some Arithmetic's operators:
Addition
Subtraction
Multiplication
Division
Logical operations:
These
operations
produce results
True
False
There are some
logical
operator:
AND
OR
NOT
Memory Unit
Section 5
Memory:
It is the very important part of any system.
The term memory identifies data storage that
comes in the form of chips, and the
word storage is used for memory that exists
on tapes or disks.
Some computers also use virtual memory.
TYPES :-
Types of Memory
Primary /
Main memory
Secondary Memory
/ Storage devices
Main Memory:
It is called working area of computer.
Refers to physical memory that is
internal to the computer.
Another term for main memory is RAM.
Computer cannot work without it.
Types of Main Memory:
Types of Main
Memory
RAM
(Random Access Memory)
ROM
(Read Only Memory)
RAM:
Main memory is usually referred as RAM.
It is also called volatile, or user memory.
The contents are lost as the electric supply is
cut-off.
One of the first home computer used 64
kilobytes of RAM memory but today’s modren
computers need a minimum of 64 MB
(recommended 128 MB or more)to run a
Windows.
Computer architecture
Types of RAM:
Types
• SRAM
• Static Random Access Memory
• DRAM
• Dynamic random Access Memory
SRAM:
Its stands for static random access memory.
No refreshing of electric states is required in SRAM.
These chips are faster than DRAM.
• Static random-access memory (SRAM) is a type
of semiconductor memory.
DRAM(dynamic random access memory)
It must have an electric current to maintain its
electric states.
Its design is less complex than SRAM.
Dynamic random-access memory (DRAM) is a
type of random-access memory that stores
each bit of data in a separate capacitor within
an integrated circuit.
DRAM:-
ROM:
It is obvious from name that the
contents of ROM are read only.
New data can not be written on it.
Its contents are permanent.
It is referred to non-volatile or system
memory.
When the power is switched off the
contents of ROM is not lost.
Computer architecture
Types of ROM:
PROM
EPROM
EEPROM
PROM (programmable read only memory)
It is initially blank and the manufacture writes
instruction and data with some special
devices.
Once the information is stored onto PROM
,then it cannot be changed.
EPROM:
It stands for erasable programmable read only
memory.
It is another type of ROM chip and it is possible
to erase the stored information and the chip can
be reprogrammed using special devices.
Information can be erased using ultraviolet rays.
EEPROM:
It stands for electrically erasable
programmable read only memory.
It is a kind of ROM chip can be re-written
using electrical devices.
The stored information on EEPROM can be
erased, modified or reprogrammed easily
using special devices.
Secondary Memory
This is the memory which is used to store the
data permanently.
There are some example of secondary memory:
CD (Compact disk)
Hard disk
Floppy disk
Flash drive
What is virtual memory?
In computing, virtual memory is
a memory management technique
developed for multitasking kernels.
Registers:
These are the high speed memory locations built into
the microprocessor.
It increase the performance of system.
Types of Registers:
PC (Program Counter)
IR (Instruction Register)
MAR (Memory Address Register)
MBR (Memory Buffer Register)
SP (Stack Pointer Register)
GPR (General Pointer Register A,B,C,D)
Address Register (CS, DS, ES, SS)
PC (Program Counter)
It hold the address of the next
instruction to be fetched and
executed.
PC REGISTER
IR (Instruction Register)
 It hold the current instruction that is being
executed.
MAR (Memory Address Register)
It holds the address of active memory location.
MBR (Memory Buffer Register)
It holds the contents of the memory
location read from or written in the
memory.
SP (Stack Pointer Register)
Arrangement of data is called stack data is
stored in or retrieved from stack using LIFO
(Last in First Out).
LIFO is also known FILO (First in Last Out).
GPR (General Purpose Register)
These registers are used to perform arithmetic
and logical operations.
GENERAL PURPOSES
There are four general purpose register:
Accumulator
Base register
Counter register
Data register
Accumulator:
It is used for Arithmetic and logical
operations.
Base register
 Base register is used for:
 Arithmetic
 Data movement
 Special addressing abilities.
Counter register
As the name show it is used for counting
purpose.
It acts as counter in loop.
Data register
It has special role in division and multiplication.
The size of these registers is from 1 to 4 bytes.
Address Register
It is a group of 4 registers:
 CS (Code Segment)
 DS (Data Segment)
 ES (Extra Segment)
 SS (Stack Segment)
Buses:
These are circuits provide a
communication path between two or
more devices of a digital computer.
All the components of a computer are
connected with a set of parallel lines.
These lines are called BUS.
There are two types of Buses:
System Bus
Expansion Bus
System Bus:
It is divided into three main
categories:
Control Bus
Address Bus
Data bus
SYSTEM BUS
Control Bus
These lines are used to transmits the
other control signals from one
component to another.
It also transmits the other control signals
like ACKS (acknowledgement signal).
CONTROL BUS
Address Bus
It carries the address of various memory
locations to perform read and write
operations.
It uses a few system bus lines to specify
the address of destination; these lines are
called address bus.
ADRESS BUS
Data Bus
Data bus is used to transfer the data
from one component to another.
These are 32 or 64 parallel lines reserved
on system bus.
DATA BUS
Expansion Bus:
The major components are connected to
the system bus and the remaining
components are connected to another
bus called expansion bus and the
expansion bus is connected to the
system bus.
EXPANSION BUS
Computer architecture

More Related Content

PDF
Computer architecture
PPTX
Basic Computer Architecture
PPT
Computer architecture
PPTX
CPU Architecture - Basic
PPTX
Computer Organization : CPU, Memory and I/O organization
PPTX
Computer architecture and organization
PPT
Coa module1
PPT
Computer Structure Slides
Computer architecture
Basic Computer Architecture
Computer architecture
CPU Architecture - Basic
Computer Organization : CPU, Memory and I/O organization
Computer architecture and organization
Coa module1
Computer Structure Slides

What's hot (20)

PPTX
DMA and DMA controller
PPTX
Computer Organisation & Architecture (chapter 1)
PPT
Cpu organisation
PPTX
Basic computer architecture
PPTX
Auxiliary memory
PPT
Instruction Set Architecture (ISA)
PPTX
General register organization (computer organization)
PPTX
Computer organization
PPT
Cache memory
PPTX
Basic Computer Organization and Design
PPTX
CISC & RISC Architecture
PPTX
RISC and CISC Processors
PPTX
Interrupt presentaion
PPTX
Input Output Organization
PPTX
Interrupts
PPTX
Introduction to computer architecture and organization
PPT
Computer architecture
PPTX
Computer arithmetic
PPTX
Multiprocessor
PPTX
Assembly Language
DMA and DMA controller
Computer Organisation & Architecture (chapter 1)
Cpu organisation
Basic computer architecture
Auxiliary memory
Instruction Set Architecture (ISA)
General register organization (computer organization)
Computer organization
Cache memory
Basic Computer Organization and Design
CISC & RISC Architecture
RISC and CISC Processors
Interrupt presentaion
Input Output Organization
Interrupts
Introduction to computer architecture and organization
Computer architecture
Computer arithmetic
Multiprocessor
Assembly Language
Ad

Viewers also liked (20)

PPT
0 introduction to computer architecture
PPT
Computer architecture
PPT
Ntroduction to computer architecture and organization
PPTX
Computer Architecture and organization
PPTX
Computer Architecture – An Introduction
PPT
Computer architecture
PPTX
BASIC COMPUTER ARCHITECTURE
PDF
Various type of register
PPTX
Cpu registers
PDF
Basic Computer Organization and Design
PPTX
Registers
PDF
Chapter 6 register
PDF
Huffman Encoding Pr
PPTX
Huffman tree
PPTX
Cache memory
PPT
Computer architecture
PDF
CArcMOOC 04.01 - Von Neumann and CPU micro-architecture
PPT
Huffman Tree And Its Application
PDF
Computer architecture short note (version 8)
PDF
Pragmatic optimization in modern programming - modern computer architecture c...
0 introduction to computer architecture
Computer architecture
Ntroduction to computer architecture and organization
Computer Architecture and organization
Computer Architecture – An Introduction
Computer architecture
BASIC COMPUTER ARCHITECTURE
Various type of register
Cpu registers
Basic Computer Organization and Design
Registers
Chapter 6 register
Huffman Encoding Pr
Huffman tree
Cache memory
Computer architecture
CArcMOOC 04.01 - Von Neumann and CPU micro-architecture
Huffman Tree And Its Application
Computer architecture short note (version 8)
Pragmatic optimization in modern programming - modern computer architecture c...
Ad

Similar to Computer architecture (20)

PPTX
UNIT -1 COMPUTER ORGANIZATION (1).pptxxc
PPTX
Computer system and organization types of memory
PPTX
Computer architecture unit 1 ppt for IT students
PPTX
3- Computer Architecture.pptx information technology
PPT
History of computer hardware
PPTX
20200909-XI-CSC-Computer chapter-1-1 of 6-Ppt.pptx
PPTX
11 cs unit 1 one shot_240427_202128 (1) (1).pptx
PDF
Components of a computer
PPTX
COMPUTER_ORGANIZATION (1).pptx
DOCX
CPU and memory
PPT
Components of a digital computer.ppt
PPTX
COMPUTER ORGANIZATION for beginner and a
PDF
11th-CS system overview ppt chapter-01.pdf
PPT
COA-Unit-1-Basics.ppt
PDF
MI Unit-1.pdf a detailed presentation on microprocessors
PPTX
COMPUTER SYSTEM OVERVIEW- A BREIF INTRODUCTION.pptx
PPTX
computer funda.pptx
PPT
DOC
Processing Data
PPTX
Computer architecture
UNIT -1 COMPUTER ORGANIZATION (1).pptxxc
Computer system and organization types of memory
Computer architecture unit 1 ppt for IT students
3- Computer Architecture.pptx information technology
History of computer hardware
20200909-XI-CSC-Computer chapter-1-1 of 6-Ppt.pptx
11 cs unit 1 one shot_240427_202128 (1) (1).pptx
Components of a computer
COMPUTER_ORGANIZATION (1).pptx
CPU and memory
Components of a digital computer.ppt
COMPUTER ORGANIZATION for beginner and a
11th-CS system overview ppt chapter-01.pdf
COA-Unit-1-Basics.ppt
MI Unit-1.pdf a detailed presentation on microprocessors
COMPUTER SYSTEM OVERVIEW- A BREIF INTRODUCTION.pptx
computer funda.pptx
Processing Data
Computer architecture

More from International Islamic University (20)

Recently uploaded (20)

PDF
01-Introduction-to-Information-Management.pdf
PPTX
Institutional Correction lecture only . . .
PDF
Basic Mud Logging Guide for educational purpose
PPTX
master seminar digital applications in india
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Classroom Observation Tools for Teachers
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Complications of Minimal Access Surgery at WLH
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
Insiders guide to clinical Medicine.pdf
01-Introduction-to-Information-Management.pdf
Institutional Correction lecture only . . .
Basic Mud Logging Guide for educational purpose
master seminar digital applications in india
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
FourierSeries-QuestionsWithAnswers(Part-A).pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPH.pptx obstetrics and gynecology in nursing
VCE English Exam - Section C Student Revision Booklet
102 student loan defaulters named and shamed – Is someone you know on the list?
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Classroom Observation Tools for Teachers
Microbial disease of the cardiovascular and lymphatic systems
Complications of Minimal Access Surgery at WLH
TR - Agricultural Crops Production NC III.pdf
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Insiders guide to clinical Medicine.pdf

Computer architecture

  • 2. COMPUTER ARCHITECTURE TOPICS OF DISCUSSION:- DEFINITION HISTORY ROLE I/O DEVICES CPU MEMORY REGISTERS BUS
  • 4. Computer architecture?? Computer architecture is the conceptual design and fundamental operational structure of a computer system. The design made a clear distinction between architecture and implementation, allowing IBM to release a suite of compatible designs at different prices.
  • 5. History of computer architecture:- • The term architecture as applied to computer design, was first used in 1964 by Gene Amdahl, G. Anne Blaauw, and Frederick Brooks, Jr., the designers of the IBM System/360. • They joined the term to refer to those aspects of the instruction set available to programmers, independent of the hardware on which the instruction set was implemented.
  • 7. Role of Computer Architecture:- The coordination of abstract levels of a processor under changing forces, involving design, measurement and evaluation.  It also includes the overall fundamental working principle of the internal logical structure of a computer system.
  • 10. Components of computer architecture:- The important components I/O Devices CPU(central processing unit) Memory Register Buses
  • 12. I/O Devices  Its stands for Input and Output devices.  Input devices: These devices are used to communicate with the computer.  Output devices: These devices are used to communicate with the user.
  • 13. Input devices: Following are the examples of some input devices: Keyboard Mouse Joystick Microphone Scanner Bar code reader
  • 14. Output Devices: Following are the examples of some input devices: Monitor Speakers Printers Projectors
  • 17. CPU: Central processing unit (CPU) is the portion of a computer system that carries out the instructions of a computer program, to perform the basic arithmetical, logical, and input/output operations of the system. The CPU plays a role somewhat analogous to the brain in the computer. CPU is a small chip mounted on the circuit board (mother board). CPU also perform data processing.
  • 19. CU: It stands for “Control Unit”. A control unit in general is a central part of the machinery that controls its operation. The CU reads the instruction from memory, decodes and executes these instructions. Its is also known as fetch-decode and execute cycle.
  • 20. EXAMPLES:- A few examples of devices that require a control unit are CPUs and GPUs.
  • 21. ALU: Its stands for “Arithmetic and Logical Unit”. An arithmetic-logic unit (ALU) is the part of a computer processor (CPU) that carries out arithmetic and logic operations on the operands in computer instruction words.
  • 23. Arithmetic operations: Followings are some Arithmetic's operators: Addition Subtraction Multiplication Division
  • 26. Memory: It is the very important part of any system. The term memory identifies data storage that comes in the form of chips, and the word storage is used for memory that exists on tapes or disks. Some computers also use virtual memory.
  • 27. TYPES :- Types of Memory Primary / Main memory Secondary Memory / Storage devices
  • 28. Main Memory: It is called working area of computer. Refers to physical memory that is internal to the computer. Another term for main memory is RAM. Computer cannot work without it.
  • 29. Types of Main Memory: Types of Main Memory RAM (Random Access Memory) ROM (Read Only Memory)
  • 30. RAM: Main memory is usually referred as RAM. It is also called volatile, or user memory. The contents are lost as the electric supply is cut-off. One of the first home computer used 64 kilobytes of RAM memory but today’s modren computers need a minimum of 64 MB (recommended 128 MB or more)to run a Windows.
  • 32. Types of RAM: Types • SRAM • Static Random Access Memory • DRAM • Dynamic random Access Memory
  • 33. SRAM: Its stands for static random access memory. No refreshing of electric states is required in SRAM. These chips are faster than DRAM. • Static random-access memory (SRAM) is a type of semiconductor memory.
  • 34. DRAM(dynamic random access memory) It must have an electric current to maintain its electric states. Its design is less complex than SRAM. Dynamic random-access memory (DRAM) is a type of random-access memory that stores each bit of data in a separate capacitor within an integrated circuit.
  • 36. ROM: It is obvious from name that the contents of ROM are read only. New data can not be written on it. Its contents are permanent. It is referred to non-volatile or system memory. When the power is switched off the contents of ROM is not lost.
  • 39. PROM (programmable read only memory) It is initially blank and the manufacture writes instruction and data with some special devices. Once the information is stored onto PROM ,then it cannot be changed.
  • 40. EPROM: It stands for erasable programmable read only memory. It is another type of ROM chip and it is possible to erase the stored information and the chip can be reprogrammed using special devices. Information can be erased using ultraviolet rays.
  • 41. EEPROM: It stands for electrically erasable programmable read only memory. It is a kind of ROM chip can be re-written using electrical devices. The stored information on EEPROM can be erased, modified or reprogrammed easily using special devices.
  • 42. Secondary Memory This is the memory which is used to store the data permanently. There are some example of secondary memory: CD (Compact disk) Hard disk Floppy disk Flash drive
  • 43. What is virtual memory? In computing, virtual memory is a memory management technique developed for multitasking kernels.
  • 44. Registers: These are the high speed memory locations built into the microprocessor. It increase the performance of system.
  • 45. Types of Registers: PC (Program Counter) IR (Instruction Register) MAR (Memory Address Register) MBR (Memory Buffer Register) SP (Stack Pointer Register) GPR (General Pointer Register A,B,C,D) Address Register (CS, DS, ES, SS)
  • 46. PC (Program Counter) It hold the address of the next instruction to be fetched and executed.
  • 48. IR (Instruction Register)  It hold the current instruction that is being executed.
  • 49. MAR (Memory Address Register) It holds the address of active memory location.
  • 50. MBR (Memory Buffer Register) It holds the contents of the memory location read from or written in the memory.
  • 51. SP (Stack Pointer Register) Arrangement of data is called stack data is stored in or retrieved from stack using LIFO (Last in First Out). LIFO is also known FILO (First in Last Out).
  • 52. GPR (General Purpose Register) These registers are used to perform arithmetic and logical operations.
  • 53. GENERAL PURPOSES There are four general purpose register: Accumulator Base register Counter register Data register
  • 54. Accumulator: It is used for Arithmetic and logical operations.
  • 55. Base register  Base register is used for:  Arithmetic  Data movement  Special addressing abilities.
  • 56. Counter register As the name show it is used for counting purpose. It acts as counter in loop.
  • 57. Data register It has special role in division and multiplication. The size of these registers is from 1 to 4 bytes.
  • 58. Address Register It is a group of 4 registers:  CS (Code Segment)  DS (Data Segment)  ES (Extra Segment)  SS (Stack Segment)
  • 59. Buses: These are circuits provide a communication path between two or more devices of a digital computer.
  • 60. All the components of a computer are connected with a set of parallel lines. These lines are called BUS. There are two types of Buses: System Bus Expansion Bus
  • 61. System Bus: It is divided into three main categories: Control Bus Address Bus Data bus
  • 63. Control Bus These lines are used to transmits the other control signals from one component to another. It also transmits the other control signals like ACKS (acknowledgement signal).
  • 65. Address Bus It carries the address of various memory locations to perform read and write operations. It uses a few system bus lines to specify the address of destination; these lines are called address bus.
  • 67. Data Bus Data bus is used to transfer the data from one component to another. These are 32 or 64 parallel lines reserved on system bus.
  • 69. Expansion Bus: The major components are connected to the system bus and the remaining components are connected to another bus called expansion bus and the expansion bus is connected to the system bus.