SlideShare a Scribd company logo
1 of 30
Download to read offline
General Aspects of Computer Organization
(Lecture-2)
R S Ananda Murthy
Associate Professor
Department of Electrical & Electronics Engineering,
Sri Jayachamarajendra College of Engineering,
Mysore 570 006
R S Ananda Murthy General Aspects of Computer Organization
Specific Learning Outcomes
After completing this lecture the student should be able to –
Describe different types of computers.
Distinguish between embedded system and a general
purpose computer.
Briefly describe the evolution of x86, ARM and AVR family
of computers.
R S Ananda Murthy General Aspects of Computer Organization
Current Spectrum of Computers
Type Example Applications
Disposable Computers Greeting cards, RFID applications
Microcontrollers Watches, cars, appliances
Mobile and Game Computers Home video games and smart phones
Personal Computers Desktop or notebook computer
Servers Network servers
Mainframe Computers Batch data processing in a bank
Source: Andrew S Tanenbaum and Todd Austin,
“Structured Computer Organization”, 6th Edition, p. 31
R S Ananda Murthy General Aspects of Computer Organization
Disposable Computers
Singing greeting cards, shown on the left side, have single
chips powered by battery.
Radio Frequency IDentification (RFID) chips smaller than
0.5 mm×0.5 mm, shown on the right side, contain tiny
radio transponder and a built-in unique 128-bit ID number.
RFID chips are powered by the incoming radio signal long
enough to transmit the ID number to the querying antenna.
R S Ananda Murthy General Aspects of Computer Organization
Microcontrollers
Embedded systems have single-chip computers known as
microcontrollers.
Microcontrollers are available in different packages as
shown above.
Microcontrollers come with word lengths of 4-bit, 8-bit,
16-bit, and 32-bit.
R S Ananda Murthy General Aspects of Computer Organization
What is an Embedded System?
Any device or equipment having a special purpose
computer which is not a general purpose computer with
associated hardware and software that is designed to
perform a dedicated task.
Hardware and software which may be part of a larger
system which is expected to function without human
intervention.
A system that can monitor and/or control external
environment with sensors and actuators.
Most of the embedded systems operate in real time.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A digital camera uses a 32-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A cell phone uses a 32-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A microwave oven uses a 16-bit or 32-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A vending machine uses an 8-bit or 16-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
An ATM uses a 32-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A washing machine uses a 16-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A printer uses a 16-bit microcontroller.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
A modern car uses several 32-bit microcontrollers.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
This robot uses a 64-bit processor.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
This DVD player uses a 32-bit processor.
R S Ananda Murthy General Aspects of Computer Organization
Examples of Embedded Systems
This smart energy meter uses a 32-bit processor.
R S Ananda Murthy General Aspects of Computer Organization
What is Not an Embedded System?
A general purpose computer is NOT an embedded system.
R S Ananda Murthy General Aspects of Computer Organization
Features of Gaming Computers
64-bit multiple core CPU operating at high clock speed,
more R/W memory, large high speed secondary storage,
high speed Graphics Processing Unit (GPU), additional
input devices like joysticks, large HD monitor, good quality
speakers.
R S Ananda Murthy General Aspects of Computer Organization
Typical Features of Servers
64-bit multiple processors fault-tolerant architecture
operating at high clock speed, more R/W memory, large
high speed secondary storage, remote configuration
capability with high speed connectivity.
R S Ananda Murthy General Aspects of Computer Organization
Mainframes
These are old room-sized computers with huge data
storage capability, running typically 40-50 years old legacy
software.
R S Ananda Murthy General Aspects of Computer Organization
Supercomputers
Multiple processors fault-tolerant parallel processing
architecture operating at high clock speed, more R/W
memory, large high speed secondary storage, remote
configuration capability with high speed connectivity.
R S Ananda Murthy General Aspects of Computer Organization
Computer Families – x86, ARM, AVR
Nearly all PC’s (including Windows, Linux PCs and Macs)
and server systems belong to x86 family which was
originally started by Intel Corporation.
The ARM architecture dominates the mobile market. For
example, most smartphones and tablet computers are
based on ARM processors.
The AVR architecture is now predominant in low-cost
microcontrollers used in many embedded systems like
washing machines, televisions, cars, microwave ovens etc.
R S Ananda Murthy General Aspects of Computer Organization
Founders of Intel Corporation
Andy Grove, Robert Noyce, and Gordon Moore (Source: Intel)
R S Ananda Murthy General Aspects of Computer Organization
Evolution of Intel x86 Family
Source: A. S.Tanenbaum and Todd Austin, “Structured
Computer Organization”, p. 40, 6th Edition, PHI, 2013.
R S Ananda Murthy General Aspects of Computer Organization
Evolution of ARM Architecture
In early 1980s, U.K.-based company Acron Computer
makes successful launch of BBC Micro Personal Computer
which had an an 8-bit microprocessor, called 6502,
manufactured by a company called MOS Technology, as
CPU.
In 1985, Acron released their own 32-bit CPU with 26-bit
address bus, called Acron-RISC Machine (ARM) which
borrowed ideas from Berkeley RISC project.
Acron released their PC called Archimedes based on ARM
CPU. This became very popular.
Acron-RISC Machine was renamed as Advanced RISC
Machine (ARM) when ARM developers at Acron left the
company and started their own company called ARM.
R S Ananda Murthy General Aspects of Computer Organization
Evolution of ARM Architecture
In 1993 Apple releases its Newton computer which used
ARM 610 CPU.
In mid 1990s, ARM collaborated with Digital Equipment
Corporation (DEC) to develop a high-speed, low-power
version ARM called StrongARM for applications in
low-power hand-held devices.
In 1994 ARM7 architecture was released which is widely
used even today in mobile devices.
At present ARM does not manufacture any processors but
creates designs and ARM-based developer tools and
libraries and licenses them to system designers and chip
manufacturers.
R S Ananda Murthy General Aspects of Computer Organization
Evolution of AVR Architecture
In 1996, at Norwegian Institute of Technology, students
Alf-Egil Bogen and Vegard Wollan designed an 8-bit RISC
CPU chip called AVR (Alf and Vegard’s RISC).
Atmel Norway bought AVR design and in 1997 released
their first AVR microcontroller AT90S1200 which was
pin-compatible with Intel 8051 which was the most popular
microcontroller at that time.
Arduino was started in 2005 as a project to develop
low-cost development boards for students by Massimo
Banzi and David Cuartielles at the Interaction Design
Institute, Ivrea, Italy.
Arduino makes AVR architecture very popolar in low-end
embedded system applications.
R S Ananda Murthy General Aspects of Computer Organization
Microcontroller Classes in the AVR Family
Source: A. S.Tanenbaum and Todd Austin, “Structured
Computer Organization”, p. 48, 6th Edition, PHI, 2013.
R S Ananda Murthy General Aspects of Computer Organization
License
This work is licensed under a
Creative Commons Attribution 4.0 International License.
R S Ananda Murthy General Aspects of Computer Organization

More Related Content

What's hot

Origin of Microprocessor and Classification of Microprocessor
Origin of Microprocessor and  Classification of Microprocessor Origin of Microprocessor and  Classification of Microprocessor
Origin of Microprocessor and Classification of Microprocessor Vijay Kumar
 
8051 microcontroller and embedded system
8051 microcontroller and embedded system8051 microcontroller and embedded system
8051 microcontroller and embedded systemsb108ec
 
Unit-I Basic Embedded System Notes
Unit-I Basic Embedded System NotesUnit-I Basic Embedded System Notes
Unit-I Basic Embedded System NotesDr. Pankaj Zope
 
Embedded Platform Architecture - I
Embedded Platform Architecture - IEmbedded Platform Architecture - I
Embedded Platform Architecture - IMuhammad Asif
 
Basic concepts of microprocessors jahid
Basic concepts of microprocessors jahidBasic concepts of microprocessors jahid
Basic concepts of microprocessors jahidSelf-employed
 
Embedded system (Chapter 1)
Embedded system (Chapter 1)Embedded system (Chapter 1)
Embedded system (Chapter 1)Ikhwan_Fakrudin
 
Evolution Of Microprocessor
Evolution Of MicroprocessorEvolution Of Microprocessor
Evolution Of Microprocessorguest3870d0
 
Microprocessors and microcontrollers
Microprocessors and microcontrollersMicroprocessors and microcontrollers
Microprocessors and microcontrollersVivek Kumar
 
Introduction to-microprocessor
Introduction to-microprocessorIntroduction to-microprocessor
Introduction to-microprocessorankitnav1
 
microprocessor-and-microcontroller
microprocessor-and-microcontrollermicroprocessor-and-microcontroller
microprocessor-and-microcontrollerjhcid
 
Microprocessor
MicroprocessorMicroprocessor
Microprocessormaruthisai
 
Introduction to microcontroller
Introduction to microcontrollerIntroduction to microcontroller
Introduction to microcontrollerRajib Roy
 
Introduction to microprocessor
Introduction to microprocessorIntroduction to microprocessor
Introduction to microprocessorKashyap Shah
 
introduction to microprocessor and microcomputer
introduction to microprocessor and microcomputerintroduction to microprocessor and microcomputer
introduction to microprocessor and microcomputerSatya P. Joshi
 
Microprocessor Fundamentals
Microprocessor FundamentalsMicroprocessor Fundamentals
Microprocessor FundamentalsDiwaker Pant
 
Ec 8691 mpmc converted (1) (1) (1)
Ec 8691 mpmc converted (1) (1) (1)Ec 8691 mpmc converted (1) (1) (1)
Ec 8691 mpmc converted (1) (1) (1)Kanimozhi142
 

What's hot (20)

Origin of Microprocessor and Classification of Microprocessor
Origin of Microprocessor and  Classification of Microprocessor Origin of Microprocessor and  Classification of Microprocessor
Origin of Microprocessor and Classification of Microprocessor
 
8051 microcontroller and embedded system
8051 microcontroller and embedded system8051 microcontroller and embedded system
8051 microcontroller and embedded system
 
Unit-I Basic Embedded System Notes
Unit-I Basic Embedded System NotesUnit-I Basic Embedded System Notes
Unit-I Basic Embedded System Notes
 
Embedded Platform Architecture - I
Embedded Platform Architecture - IEmbedded Platform Architecture - I
Embedded Platform Architecture - I
 
Basic concepts of microprocessors jahid
Basic concepts of microprocessors jahidBasic concepts of microprocessors jahid
Basic concepts of microprocessors jahid
 
Embedded system (Chapter 1)
Embedded system (Chapter 1)Embedded system (Chapter 1)
Embedded system (Chapter 1)
 
Arduino Family
Arduino FamilyArduino Family
Arduino Family
 
Evolution Of Microprocessor
Evolution Of MicroprocessorEvolution Of Microprocessor
Evolution Of Microprocessor
 
Microprocessors and microcontrollers
Microprocessors and microcontrollersMicroprocessors and microcontrollers
Microprocessors and microcontrollers
 
MD JAHID HASAN
MD JAHID HASANMD JAHID HASAN
MD JAHID HASAN
 
Introduction to-microprocessor
Introduction to-microprocessorIntroduction to-microprocessor
Introduction to-microprocessor
 
microprocessor-and-microcontroller
microprocessor-and-microcontrollermicroprocessor-and-microcontroller
microprocessor-and-microcontroller
 
Micro controller & Micro processor
Micro controller & Micro processorMicro controller & Micro processor
Micro controller & Micro processor
 
Microprocessor
MicroprocessorMicroprocessor
Microprocessor
 
Introduction to microcontroller
Introduction to microcontrollerIntroduction to microcontroller
Introduction to microcontroller
 
Introduction to microprocessor
Introduction to microprocessorIntroduction to microprocessor
Introduction to microprocessor
 
introduction to microprocessor and microcomputer
introduction to microprocessor and microcomputerintroduction to microprocessor and microcomputer
introduction to microprocessor and microcomputer
 
Microprocessor Fundamentals
Microprocessor FundamentalsMicroprocessor Fundamentals
Microprocessor Fundamentals
 
Ec 8691 mpmc converted (1) (1) (1)
Ec 8691 mpmc converted (1) (1) (1)Ec 8691 mpmc converted (1) (1) (1)
Ec 8691 mpmc converted (1) (1) (1)
 
Chapter1a
Chapter1aChapter1a
Chapter1a
 

Viewers also liked

Introduction to-Tex-and-LaTeX
Introduction to-Tex-and-LaTeXIntroduction to-Tex-and-LaTeX
Introduction to-Tex-and-LaTeXrsamurti
 
Transformers
TransformersTransformers
Transformersrsamurti
 
Design of Microwave oven using 8051 micro controller
Design of Microwave oven using 8051 micro controllerDesign of Microwave oven using 8051 micro controller
Design of Microwave oven using 8051 micro controllerGautham Reddy
 
L3 instruction-execution-steps
L3 instruction-execution-stepsL3 instruction-execution-steps
L3 instruction-execution-stepsrsamurti
 
Lecture-5 : Semiconductor Power Switching Devices-2
Lecture-5 : Semiconductor Power Switching Devices-2Lecture-5 : Semiconductor Power Switching Devices-2
Lecture-5 : Semiconductor Power Switching Devices-2rsamurti
 
L13 interrupts-in-atmega328 p
L13 interrupts-in-atmega328 pL13 interrupts-in-atmega328 p
L13 interrupts-in-atmega328 prsamurti
 
Lecture-3 : More Applications of Power Electronics
Lecture-3 : More Applications of Power ElectronicsLecture-3 : More Applications of Power Electronics
Lecture-3 : More Applications of Power Electronicsrsamurti
 
Lecture-7 : Semiconductor Power Switching Devices-4
Lecture-7 : Semiconductor Power Switching Devices-4Lecture-7 : Semiconductor Power Switching Devices-4
Lecture-7 : Semiconductor Power Switching Devices-4rsamurti
 
Lecture-2 : Applications of Power Electronics
Lecture-2 : Applications of Power ElectronicsLecture-2 : Applications of Power Electronics
Lecture-2 : Applications of Power Electronicsrsamurti
 
L14 kb-lcd-interfacing-with-atmega328 p
L14 kb-lcd-interfacing-with-atmega328 pL14 kb-lcd-interfacing-with-atmega328 p
L14 kb-lcd-interfacing-with-atmega328 prsamurti
 
L12 c-language-programming-of-atmega328 p
L12 c-language-programming-of-atmega328 pL12 c-language-programming-of-atmega328 p
L12 c-language-programming-of-atmega328 prsamurti
 
L9 understanding-atmega328 p-2
L9 understanding-atmega328 p-2L9 understanding-atmega328 p-2
L9 understanding-atmega328 p-2rsamurti
 
Three phase-circuits
Three phase-circuitsThree phase-circuits
Three phase-circuitsrsamurti
 
L16 usart-atmega328 p
L16 usart-atmega328 pL16 usart-atmega328 p
L16 usart-atmega328 prsamurti
 
L8 understanding-atmega328 p-1
L8 understanding-atmega328 p-1L8 understanding-atmega328 p-1
L8 understanding-atmega328 p-1rsamurti
 
Synchronous generators
Synchronous generatorsSynchronous generators
Synchronous generatorsrsamurti
 
L11 assembly-language-programming-of-atmega328 p
L11 assembly-language-programming-of-atmega328 pL11 assembly-language-programming-of-atmega328 p
L11 assembly-language-programming-of-atmega328 prsamurti
 
L10 assembly-language-programming-of-atmega328 p
L10 assembly-language-programming-of-atmega328 pL10 assembly-language-programming-of-atmega328 p
L10 assembly-language-programming-of-atmega328 prsamurti
 
L15 timers-counters-in-atmega328 p
L15 timers-counters-in-atmega328 pL15 timers-counters-in-atmega328 p
L15 timers-counters-in-atmega328 prsamurti
 
Lecture-4 : Semiconductor Power Switching Devices-1
Lecture-4 : Semiconductor Power Switching Devices-1Lecture-4 : Semiconductor Power Switching Devices-1
Lecture-4 : Semiconductor Power Switching Devices-1rsamurti
 

Viewers also liked (20)

Introduction to-Tex-and-LaTeX
Introduction to-Tex-and-LaTeXIntroduction to-Tex-and-LaTeX
Introduction to-Tex-and-LaTeX
 
Transformers
TransformersTransformers
Transformers
 
Design of Microwave oven using 8051 micro controller
Design of Microwave oven using 8051 micro controllerDesign of Microwave oven using 8051 micro controller
Design of Microwave oven using 8051 micro controller
 
L3 instruction-execution-steps
L3 instruction-execution-stepsL3 instruction-execution-steps
L3 instruction-execution-steps
 
Lecture-5 : Semiconductor Power Switching Devices-2
Lecture-5 : Semiconductor Power Switching Devices-2Lecture-5 : Semiconductor Power Switching Devices-2
Lecture-5 : Semiconductor Power Switching Devices-2
 
L13 interrupts-in-atmega328 p
L13 interrupts-in-atmega328 pL13 interrupts-in-atmega328 p
L13 interrupts-in-atmega328 p
 
Lecture-3 : More Applications of Power Electronics
Lecture-3 : More Applications of Power ElectronicsLecture-3 : More Applications of Power Electronics
Lecture-3 : More Applications of Power Electronics
 
Lecture-7 : Semiconductor Power Switching Devices-4
Lecture-7 : Semiconductor Power Switching Devices-4Lecture-7 : Semiconductor Power Switching Devices-4
Lecture-7 : Semiconductor Power Switching Devices-4
 
Lecture-2 : Applications of Power Electronics
Lecture-2 : Applications of Power ElectronicsLecture-2 : Applications of Power Electronics
Lecture-2 : Applications of Power Electronics
 
L14 kb-lcd-interfacing-with-atmega328 p
L14 kb-lcd-interfacing-with-atmega328 pL14 kb-lcd-interfacing-with-atmega328 p
L14 kb-lcd-interfacing-with-atmega328 p
 
L12 c-language-programming-of-atmega328 p
L12 c-language-programming-of-atmega328 pL12 c-language-programming-of-atmega328 p
L12 c-language-programming-of-atmega328 p
 
L9 understanding-atmega328 p-2
L9 understanding-atmega328 p-2L9 understanding-atmega328 p-2
L9 understanding-atmega328 p-2
 
Three phase-circuits
Three phase-circuitsThree phase-circuits
Three phase-circuits
 
L16 usart-atmega328 p
L16 usart-atmega328 pL16 usart-atmega328 p
L16 usart-atmega328 p
 
L8 understanding-atmega328 p-1
L8 understanding-atmega328 p-1L8 understanding-atmega328 p-1
L8 understanding-atmega328 p-1
 
Synchronous generators
Synchronous generatorsSynchronous generators
Synchronous generators
 
L11 assembly-language-programming-of-atmega328 p
L11 assembly-language-programming-of-atmega328 pL11 assembly-language-programming-of-atmega328 p
L11 assembly-language-programming-of-atmega328 p
 
L10 assembly-language-programming-of-atmega328 p
L10 assembly-language-programming-of-atmega328 pL10 assembly-language-programming-of-atmega328 p
L10 assembly-language-programming-of-atmega328 p
 
L15 timers-counters-in-atmega328 p
L15 timers-counters-in-atmega328 pL15 timers-counters-in-atmega328 p
L15 timers-counters-in-atmega328 p
 
Lecture-4 : Semiconductor Power Switching Devices-1
Lecture-4 : Semiconductor Power Switching Devices-1Lecture-4 : Semiconductor Power Switching Devices-1
Lecture-4 : Semiconductor Power Switching Devices-1
 

Similar to L2 types-of-computers

Ch 1 introduction and 2 computer software 1
Ch 1 introduction  and 2 computer software 1Ch 1 introduction  and 2 computer software 1
Ch 1 introduction and 2 computer software 1rjsuthar56
 
Introduction To Embedded Systems
Introduction To Embedded SystemsIntroduction To Embedded Systems
Introduction To Embedded SystemsVishwa Mohan
 
Report on evolution of processor by sandesh agrawal
Report on evolution of processor by sandesh agrawalReport on evolution of processor by sandesh agrawal
Report on evolution of processor by sandesh agrawalSandesh Agrawal
 
Computer Based Presentation.pptx
Computer Based Presentation.pptxComputer Based Presentation.pptx
Computer Based Presentation.pptxShivamYadav362790
 
microprocessor
microprocessormicroprocessor
microprocessorillpa
 
Computer Hardware Introduction
Computer Hardware IntroductionComputer Hardware Introduction
Computer Hardware IntroductionSeenivasan SR
 
Computer Hardware Introduction
Computer Hardware IntroductionComputer Hardware Introduction
Computer Hardware IntroductionSeenivasan SR
 
Android and processors
Android and processorsAndroid and processors
Android and processorsAdarsh Gowda
 
all coputer parts.pptx
all coputer parts.pptxall coputer parts.pptx
all coputer parts.pptxchere3
 
BRACU_SPRING24_EEE373_L1_Introduction.pptx
BRACU_SPRING24_EEE373_L1_Introduction.pptxBRACU_SPRING24_EEE373_L1_Introduction.pptx
BRACU_SPRING24_EEE373_L1_Introduction.pptxSKTAHMEDSALIMRAFID
 
18CS44-MODULE1-PPT.pptx
18CS44-MODULE1-PPT.pptx18CS44-MODULE1-PPT.pptx
18CS44-MODULE1-PPT.pptxKokilaK25
 
MICROCONTROLLRES NOTES.pdf
MICROCONTROLLRES NOTES.pdfMICROCONTROLLRES NOTES.pdf
MICROCONTROLLRES NOTES.pdfHitendraThakur4
 

Similar to L2 types-of-computers (20)

O045057780
O045057780O045057780
O045057780
 
Ch 1 introduction and 2 computer software 1
Ch 1 introduction  and 2 computer software 1Ch 1 introduction  and 2 computer software 1
Ch 1 introduction and 2 computer software 1
 
Introduction To Embedded Systems
Introduction To Embedded SystemsIntroduction To Embedded Systems
Introduction To Embedded Systems
 
Report on evolution of processor by sandesh agrawal
Report on evolution of processor by sandesh agrawalReport on evolution of processor by sandesh agrawal
Report on evolution of processor by sandesh agrawal
 
Computer Based Presentation.pptx
Computer Based Presentation.pptxComputer Based Presentation.pptx
Computer Based Presentation.pptx
 
Tutorial Embedded System
Tutorial Embedded System Tutorial Embedded System
Tutorial Embedded System
 
microprocessor
microprocessormicroprocessor
microprocessor
 
Computer Hardware Introduction
Computer Hardware IntroductionComputer Hardware Introduction
Computer Hardware Introduction
 
Computer Hardware Introduction
Computer Hardware IntroductionComputer Hardware Introduction
Computer Hardware Introduction
 
Android and processors
Android and processorsAndroid and processors
Android and processors
 
Unit-1.pptx
Unit-1.pptxUnit-1.pptx
Unit-1.pptx
 
all coputer parts.pptx
all coputer parts.pptxall coputer parts.pptx
all coputer parts.pptx
 
BRACU_SPRING24_EEE373_L1_Introduction.pptx
BRACU_SPRING24_EEE373_L1_Introduction.pptxBRACU_SPRING24_EEE373_L1_Introduction.pptx
BRACU_SPRING24_EEE373_L1_Introduction.pptx
 
18CS44-MODULE1-PPT.pptx
18CS44-MODULE1-PPT.pptx18CS44-MODULE1-PPT.pptx
18CS44-MODULE1-PPT.pptx
 
Lecture
LectureLecture
Lecture
 
Lecture
LectureLecture
Lecture
 
IT Lecture
IT LectureIT Lecture
IT Lecture
 
Lecture-It104
Lecture-It104Lecture-It104
Lecture-It104
 
It
ItIt
It
 
MICROCONTROLLRES NOTES.pdf
MICROCONTROLLRES NOTES.pdfMICROCONTROLLRES NOTES.pdf
MICROCONTROLLRES NOTES.pdf
 

Recently uploaded

Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONjhunlian
 
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...Amil Baba Dawood bangali
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
System Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingSystem Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingBootNeck1
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncssuser2ae721
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - GuideGOPINATHS437943
 
Research Methodology for Engineering pdf
Research Methodology for Engineering pdfResearch Methodology for Engineering pdf
Research Methodology for Engineering pdfCaalaaAbdulkerim
 

Recently uploaded (20)

Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
 
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...
NO1 Certified Black Magic Specialist Expert Amil baba in Uae Dubai Abu Dhabi ...
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
System Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event SchedulingSystem Simulation and Modelling with types and Event Scheduling
System Simulation and Modelling with types and Event Scheduling
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - Guide
 
Research Methodology for Engineering pdf
Research Methodology for Engineering pdfResearch Methodology for Engineering pdf
Research Methodology for Engineering pdf
 

L2 types-of-computers

  • 1. General Aspects of Computer Organization (Lecture-2) R S Ananda Murthy Associate Professor Department of Electrical & Electronics Engineering, Sri Jayachamarajendra College of Engineering, Mysore 570 006 R S Ananda Murthy General Aspects of Computer Organization
  • 2. Specific Learning Outcomes After completing this lecture the student should be able to – Describe different types of computers. Distinguish between embedded system and a general purpose computer. Briefly describe the evolution of x86, ARM and AVR family of computers. R S Ananda Murthy General Aspects of Computer Organization
  • 3. Current Spectrum of Computers Type Example Applications Disposable Computers Greeting cards, RFID applications Microcontrollers Watches, cars, appliances Mobile and Game Computers Home video games and smart phones Personal Computers Desktop or notebook computer Servers Network servers Mainframe Computers Batch data processing in a bank Source: Andrew S Tanenbaum and Todd Austin, “Structured Computer Organization”, 6th Edition, p. 31 R S Ananda Murthy General Aspects of Computer Organization
  • 4. Disposable Computers Singing greeting cards, shown on the left side, have single chips powered by battery. Radio Frequency IDentification (RFID) chips smaller than 0.5 mm×0.5 mm, shown on the right side, contain tiny radio transponder and a built-in unique 128-bit ID number. RFID chips are powered by the incoming radio signal long enough to transmit the ID number to the querying antenna. R S Ananda Murthy General Aspects of Computer Organization
  • 5. Microcontrollers Embedded systems have single-chip computers known as microcontrollers. Microcontrollers are available in different packages as shown above. Microcontrollers come with word lengths of 4-bit, 8-bit, 16-bit, and 32-bit. R S Ananda Murthy General Aspects of Computer Organization
  • 6. What is an Embedded System? Any device or equipment having a special purpose computer which is not a general purpose computer with associated hardware and software that is designed to perform a dedicated task. Hardware and software which may be part of a larger system which is expected to function without human intervention. A system that can monitor and/or control external environment with sensors and actuators. Most of the embedded systems operate in real time. R S Ananda Murthy General Aspects of Computer Organization
  • 7. Examples of Embedded Systems A digital camera uses a 32-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 8. Examples of Embedded Systems A cell phone uses a 32-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 9. Examples of Embedded Systems A microwave oven uses a 16-bit or 32-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 10. Examples of Embedded Systems A vending machine uses an 8-bit or 16-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 11. Examples of Embedded Systems An ATM uses a 32-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 12. Examples of Embedded Systems A washing machine uses a 16-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 13. Examples of Embedded Systems A printer uses a 16-bit microcontroller. R S Ananda Murthy General Aspects of Computer Organization
  • 14. Examples of Embedded Systems A modern car uses several 32-bit microcontrollers. R S Ananda Murthy General Aspects of Computer Organization
  • 15. Examples of Embedded Systems This robot uses a 64-bit processor. R S Ananda Murthy General Aspects of Computer Organization
  • 16. Examples of Embedded Systems This DVD player uses a 32-bit processor. R S Ananda Murthy General Aspects of Computer Organization
  • 17. Examples of Embedded Systems This smart energy meter uses a 32-bit processor. R S Ananda Murthy General Aspects of Computer Organization
  • 18. What is Not an Embedded System? A general purpose computer is NOT an embedded system. R S Ananda Murthy General Aspects of Computer Organization
  • 19. Features of Gaming Computers 64-bit multiple core CPU operating at high clock speed, more R/W memory, large high speed secondary storage, high speed Graphics Processing Unit (GPU), additional input devices like joysticks, large HD monitor, good quality speakers. R S Ananda Murthy General Aspects of Computer Organization
  • 20. Typical Features of Servers 64-bit multiple processors fault-tolerant architecture operating at high clock speed, more R/W memory, large high speed secondary storage, remote configuration capability with high speed connectivity. R S Ananda Murthy General Aspects of Computer Organization
  • 21. Mainframes These are old room-sized computers with huge data storage capability, running typically 40-50 years old legacy software. R S Ananda Murthy General Aspects of Computer Organization
  • 22. Supercomputers Multiple processors fault-tolerant parallel processing architecture operating at high clock speed, more R/W memory, large high speed secondary storage, remote configuration capability with high speed connectivity. R S Ananda Murthy General Aspects of Computer Organization
  • 23. Computer Families – x86, ARM, AVR Nearly all PC’s (including Windows, Linux PCs and Macs) and server systems belong to x86 family which was originally started by Intel Corporation. The ARM architecture dominates the mobile market. For example, most smartphones and tablet computers are based on ARM processors. The AVR architecture is now predominant in low-cost microcontrollers used in many embedded systems like washing machines, televisions, cars, microwave ovens etc. R S Ananda Murthy General Aspects of Computer Organization
  • 24. Founders of Intel Corporation Andy Grove, Robert Noyce, and Gordon Moore (Source: Intel) R S Ananda Murthy General Aspects of Computer Organization
  • 25. Evolution of Intel x86 Family Source: A. S.Tanenbaum and Todd Austin, “Structured Computer Organization”, p. 40, 6th Edition, PHI, 2013. R S Ananda Murthy General Aspects of Computer Organization
  • 26. Evolution of ARM Architecture In early 1980s, U.K.-based company Acron Computer makes successful launch of BBC Micro Personal Computer which had an an 8-bit microprocessor, called 6502, manufactured by a company called MOS Technology, as CPU. In 1985, Acron released their own 32-bit CPU with 26-bit address bus, called Acron-RISC Machine (ARM) which borrowed ideas from Berkeley RISC project. Acron released their PC called Archimedes based on ARM CPU. This became very popular. Acron-RISC Machine was renamed as Advanced RISC Machine (ARM) when ARM developers at Acron left the company and started their own company called ARM. R S Ananda Murthy General Aspects of Computer Organization
  • 27. Evolution of ARM Architecture In 1993 Apple releases its Newton computer which used ARM 610 CPU. In mid 1990s, ARM collaborated with Digital Equipment Corporation (DEC) to develop a high-speed, low-power version ARM called StrongARM for applications in low-power hand-held devices. In 1994 ARM7 architecture was released which is widely used even today in mobile devices. At present ARM does not manufacture any processors but creates designs and ARM-based developer tools and libraries and licenses them to system designers and chip manufacturers. R S Ananda Murthy General Aspects of Computer Organization
  • 28. Evolution of AVR Architecture In 1996, at Norwegian Institute of Technology, students Alf-Egil Bogen and Vegard Wollan designed an 8-bit RISC CPU chip called AVR (Alf and Vegard’s RISC). Atmel Norway bought AVR design and in 1997 released their first AVR microcontroller AT90S1200 which was pin-compatible with Intel 8051 which was the most popular microcontroller at that time. Arduino was started in 2005 as a project to develop low-cost development boards for students by Massimo Banzi and David Cuartielles at the Interaction Design Institute, Ivrea, Italy. Arduino makes AVR architecture very popolar in low-end embedded system applications. R S Ananda Murthy General Aspects of Computer Organization
  • 29. Microcontroller Classes in the AVR Family Source: A. S.Tanenbaum and Todd Austin, “Structured Computer Organization”, p. 48, 6th Edition, PHI, 2013. R S Ananda Murthy General Aspects of Computer Organization
  • 30. License This work is licensed under a Creative Commons Attribution 4.0 International License. R S Ananda Murthy General Aspects of Computer Organization