SlideShare ist ein Scribd-Unternehmen logo
1 von 71
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
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
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.
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.
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

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Computer system architecture
Computer system architectureComputer system architecture
Computer system architecture
 
Assembly Language
Assembly LanguageAssembly Language
Assembly Language
 
Cpu ppt cse
Cpu ppt cseCpu ppt cse
Cpu ppt cse
 
Computer architecture
Computer architectureComputer architecture
Computer architecture
 
Boot process
Boot processBoot process
Boot process
 
Processors and its Types
Processors and its TypesProcessors and its Types
Processors and its Types
 
Operating systems
Operating systemsOperating systems
Operating systems
 
Basic Computer Architecture
Basic Computer ArchitectureBasic Computer Architecture
Basic Computer Architecture
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
 
Introduction to Computer Architecture and Organization
Introduction to Computer Architecture and OrganizationIntroduction to Computer Architecture and Organization
Introduction to Computer Architecture and Organization
 
Pentium processor
Pentium processorPentium processor
Pentium processor
 
The Basic Organization of Computers
The Basic Organization of ComputersThe Basic Organization of Computers
The Basic Organization of Computers
 
Control unit
Control  unitControl  unit
Control unit
 
Booting
BootingBooting
Booting
 
Computer organisation -morris mano
Computer organisation  -morris manoComputer organisation  -morris mano
Computer organisation -morris mano
 
Von Neumann Architecture
Von Neumann ArchitectureVon Neumann Architecture
Von Neumann Architecture
 
Kernel (OS)
Kernel (OS)Kernel (OS)
Kernel (OS)
 
Instruction pipeline: Computer Architecture
Instruction pipeline: Computer ArchitectureInstruction pipeline: Computer Architecture
Instruction pipeline: Computer Architecture
 
Central Processing Unit
Central Processing UnitCentral Processing Unit
Central Processing Unit
 
Computer Organization and Assembly Language
Computer Organization and Assembly LanguageComputer Organization and Assembly Language
Computer Organization and Assembly Language
 

Andere mochten auch

0 introduction to computer architecture
0 introduction to computer architecture0 introduction to computer architecture
0 introduction to computer architectureaamc1100
 
Computer architecture
Computer architectureComputer architecture
Computer architectureSanjeev Patel
 
Computer Architecture and organization
Computer Architecture and organizationComputer Architecture and organization
Computer Architecture and organizationBadrinath Kadam
 
Computer Architecture – An Introduction
Computer Architecture – An IntroductionComputer Architecture – An Introduction
Computer Architecture – An IntroductionDilum Bandara
 
Computer architecture
Computer architecture Computer architecture
Computer architecture Ashish Kumar
 
Computer architecture and organization
Computer architecture and organizationComputer architecture and organization
Computer architecture and organizationTushar B Kute
 
Basic Computer Organization and Design
Basic Computer Organization and DesignBasic Computer Organization and Design
Basic Computer Organization and Designmekind
 
Computer architecture
Computer architectureComputer architecture
Computer architectureRozase Patel
 
CArcMOOC 04.01 - Von Neumann and CPU micro-architecture
CArcMOOC 04.01 - Von Neumann and CPU micro-architectureCArcMOOC 04.01 - Von Neumann and CPU micro-architecture
CArcMOOC 04.01 - Von Neumann and CPU micro-architectureAlessandro Bogliolo
 
Huffman Tree And Its Application
Huffman Tree And Its ApplicationHuffman Tree And Its Application
Huffman Tree And Its ApplicationPapu Kumar
 
Computer architecture short note (version 8)
Computer architecture short note (version 8)Computer architecture short note (version 8)
Computer architecture short note (version 8)Nimmi Weeraddana
 
Pragmatic optimization in modern programming - modern computer architecture c...
Pragmatic optimization in modern programming - modern computer architecture c...Pragmatic optimization in modern programming - modern computer architecture c...
Pragmatic optimization in modern programming - modern computer architecture c...Marina Kolpakova
 

Andere mochten auch (20)

0 introduction to computer architecture
0 introduction to computer architecture0 introduction to computer architecture
0 introduction to computer architecture
 
Computer architecture
Computer architectureComputer architecture
Computer architecture
 
Ntroduction to computer architecture and organization
Ntroduction to computer architecture and organizationNtroduction to computer architecture and organization
Ntroduction to computer architecture and organization
 
Computer Architecture and organization
Computer Architecture and organizationComputer Architecture and organization
Computer Architecture and organization
 
Computer Architecture – An Introduction
Computer Architecture – An IntroductionComputer Architecture – An Introduction
Computer Architecture – An Introduction
 
Computer architecture
Computer architecture Computer architecture
Computer architecture
 
Computer architecture and organization
Computer architecture and organizationComputer architecture and organization
Computer architecture and organization
 
Various type of register
Various type of registerVarious type of register
Various type of register
 
Cpu registers
Cpu registersCpu registers
Cpu registers
 
Basic Computer Organization and Design
Basic Computer Organization and DesignBasic Computer Organization and Design
Basic Computer Organization and Design
 
Registers
RegistersRegisters
Registers
 
Chapter 6 register
Chapter 6 registerChapter 6 register
Chapter 6 register
 
Huffman Encoding Pr
Huffman Encoding PrHuffman Encoding Pr
Huffman Encoding Pr
 
Huffman tree
Huffman tree Huffman tree
Huffman tree
 
Cache memory
Cache memoryCache memory
Cache memory
 
Computer architecture
Computer architectureComputer architecture
Computer architecture
 
CArcMOOC 04.01 - Von Neumann and CPU micro-architecture
CArcMOOC 04.01 - Von Neumann and CPU micro-architectureCArcMOOC 04.01 - Von Neumann and CPU micro-architecture
CArcMOOC 04.01 - Von Neumann and CPU micro-architecture
 
Huffman Tree And Its Application
Huffman Tree And Its ApplicationHuffman Tree And Its Application
Huffman Tree And Its Application
 
Computer architecture short note (version 8)
Computer architecture short note (version 8)Computer architecture short note (version 8)
Computer architecture short note (version 8)
 
Pragmatic optimization in modern programming - modern computer architecture c...
Pragmatic optimization in modern programming - modern computer architecture c...Pragmatic optimization in modern programming - modern computer architecture c...
Pragmatic optimization in modern programming - modern computer architecture c...
 

Ähnlich wie Computer architecture

Ähnlich wie Computer architecture (20)

Microprocessor
MicroprocessorMicroprocessor
Microprocessor
 
Ppt Lesson 04
Ppt Lesson 04Ppt Lesson 04
Ppt Lesson 04
 
3. Component of computer - System Unit ( CSI-321)
3. Component of computer - System Unit  ( CSI-321) 3. Component of computer - System Unit  ( CSI-321)
3. Component of computer - System Unit ( CSI-321)
 
18. the components of the system unit
18. the components of the system unit18. the components of the system unit
18. the components of the system unit
 
Hardware
HardwareHardware
Hardware
 
COMPUTER BASIC AND FUNDAMENTAL AND ITS ORGANISATION.pptx
COMPUTER BASIC AND FUNDAMENTAL AND ITS ORGANISATION.pptxCOMPUTER BASIC AND FUNDAMENTAL AND ITS ORGANISATION.pptx
COMPUTER BASIC AND FUNDAMENTAL AND ITS ORGANISATION.pptx
 
Microcontroller part 1
Microcontroller part 1Microcontroller part 1
Microcontroller part 1
 
11. Computer Systems Hardware 1
11. Computer Systems   Hardware 111. Computer Systems   Hardware 1
11. Computer Systems Hardware 1
 
Computer architecture
Computer architectureComputer architecture
Computer architecture
 
The system unit ch # 4
The system unit ch # 4The system unit ch # 4
The system unit ch # 4
 
Computer.pptx
Computer.pptxComputer.pptx
Computer.pptx
 
Components of a computer
Components of a computerComponents of a computer
Components of a computer
 
COMPONENTS OF SYSTEM UNIT
COMPONENTS OF SYSTEM UNITCOMPONENTS OF SYSTEM UNIT
COMPONENTS OF SYSTEM UNIT
 
Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
 
History of computer hardware
History of computer hardwareHistory of computer hardware
History of computer hardware
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
 
Components of the System Unit.pdf
Components of the System Unit.pdfComponents of the System Unit.pdf
Components of the System Unit.pdf
 
Basic Organisation and fundamental Of Computer.pptx
Basic Organisation and fundamental Of Computer.pptxBasic Organisation and fundamental Of Computer.pptx
Basic Organisation and fundamental Of Computer.pptx
 
Processing Devices
Processing DevicesProcessing Devices
Processing Devices
 
The system unit
The system unitThe system unit
The system unit
 

Mehr von International Islamic University (20)

Hash tables
Hash tablesHash tables
Hash tables
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 
Graph 1
Graph 1Graph 1
Graph 1
 
Graph 2
Graph 2Graph 2
Graph 2
 
Graph 3
Graph 3Graph 3
Graph 3
 
Greedy algorithm
Greedy algorithmGreedy algorithm
Greedy algorithm
 
Dynamic programming
Dynamic programmingDynamic programming
Dynamic programming
 
Quick sort
Quick sortQuick sort
Quick sort
 
Merge sort
Merge sortMerge sort
Merge sort
 
Linear timesorting
Linear timesortingLinear timesorting
Linear timesorting
 
Facial Expression Recognitino
Facial Expression RecognitinoFacial Expression Recognitino
Facial Expression Recognitino
 
Lecture#4
Lecture#4Lecture#4
Lecture#4
 
Lecture#3
Lecture#3 Lecture#3
Lecture#3
 
Lecture#2
Lecture#2 Lecture#2
Lecture#2
 
Case study
Case studyCase study
Case study
 
Arrays
ArraysArrays
Arrays
 
Pcb
PcbPcb
Pcb
 
Data transmission
Data transmissionData transmission
Data transmission
 
Basic organization of computer
Basic organization of computerBasic organization of computer
Basic organization of computer
 
Sorting techniques
Sorting techniquesSorting techniques
Sorting techniques
 

Kürzlich hochgeladen

Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operationalssuser3e220a
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptxJonalynLegaspi2
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...DhatriParmar
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvRicaMaeCastro1
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Association for Project Management
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
 

Kürzlich hochgeladen (20)

Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operational
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of EngineeringFaculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
 

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.
  • 9.
  • 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
  • 15.
  • 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.
  • 31.
  • 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.
  • 37.
  • 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.