Digital Systems Design 1

Slides:



Advertisements
Similar presentations
Dr. Ken Hoganson, © August 2014 Programming in R COURSE NOTES 2 Hoganson Language Translation.
Advertisements

INSTRUCTION SET ARCHITECTURES
Introduction to Computer Programming Nai-Wei Lin Department of Computer Science and Information Engineering National Chung Cheng University.
CSCI-235 Micro-Computers in Science Course Information & Introduction.
Midterm Wednesday Chapter 1-3: Number /character representation and conversion Number arithmetic Combinational logic elements and design (DeMorgan’s Law)
1 The development of modern computer systems Early electronic computers Mainframes Time sharing Microcomputers Networked computing.
CIS 260 Computer Programming I in C Prof. Timothy Arndt.
C.S. Choy95 COMPUTER ORGANIZATION Logic Design Skill to design digital components JAVA Language Skill to program a computer Computer Organization Skill.
An Introduction Chapter Chapter 1 Introduction2 Computer Systems  Programmable machines  Hardware + Software (program) HardwareProgram.
CS 1 •This is Computer Science 1. •Who is Professor Adams?
Wilhelm Schickhard (1623) Astronomer and mathematician Automatically add, subtract, multiply, and divide Blaise Pascal (1642) Mathematician Mass produced.
CCSE251 Introduction to Computer Organization
Welcome to Computing Presentation slides modified by M. A. Papalaskari from “Java Software Solutions Foundations of Program Design (3 rd ed.)” by John.
Computer system overview1 The Effects of Computers Pervasive in all professions How have computers affected my life? How have computers affected my life?
CMSC 120: Visualizing Information 1/29/08 Introduction to Computing.
IAS By : Hajer Ahmed Mohammed. ENIAC - details Decimal (not binary) Its memory contained 20 accumulators of 10 digits. 10 vacuum tubes represented each.
Chapter 4 The Von Neumann Model
Chapter 1 Introduction. Understand the concept of a black box, a data processor, and a programmable data processor. Define the von Neumann model and name.
CPIT 201 Introduction to Computing
Chapter 1 Introduction.
Introduction to Computer Engineering CS/ECE 252, Fall 2009 Prof. Mark D. Hill Computer Sciences Department University of Wisconsin – Madison.
Computer Architecture And Organization UNIT-II General System Architecture.
Module : Algorithmic state machines. Machine language Machine language is built up from discrete statements or instructions. On the processing architecture,
Indira Gandhi National Open University presents. A Video Lecture Course: Computer Platforms.
Introduction to Microprocessors
Von Neumann Computers Article Authors: Rudolf Eigenman & David Lilja
1 Chapter 2 Computer Evolution and Performance by Sameer Akram.
Computer Operation. Binary Codes CPU operates in binary codes Representation of values in binary codes Instructions to CPU in binary codes Addresses in.
Computer Architecture. Instruction Set “The collection of different instructions that the processor can execute it”. Usually represented by assembly codes,
Riyadh Philanthropic Society For Science Prince Sultan College For Woman Dept. of Computer & Information Sciences CS 251 Introduction to Computer Organization.
Computer Organization and Architecture Lecture 1 : Introduction
Computer Organization and Machine Language Programming CPTG 245
Basic Computer Organization and Design
Computer Organization and Architecture + Networks
Chapter 1: An Overview of Computers and Programming Languages
Chapter 1 Introduction.
What is a computer? Simply put, a computer is a sophisticated electronic calculating machine that: Accepts input information, Processes the information.
Control Unit Lecture 6.
Computer Architecture
What is a computer? Simply put, a computer is a sophisticated electronic calculating machine that: Accepts input information, Processes the information.
Chapter 4 The Von Neumann Model
Introduction to Computing & Programming
Introduction of microprocessor
Chapter 4 The Von Neumann Model
Chapter 1 Introduction.
Microcomputer Programming
Introduction to Computer Engineering
Micro-programmed Control Unit
Chapter 4 The Von Neumann Model
Chapter 4 The Von Neumann Model
Introduction to Computer Engineering
Morgan Kaufmann Publishers Computer Organization and Assembly Language
Chapter 5: Computer Systems Organization
A primer on Computers and Programs
Computer Architecture
Chapter 4 The Von Neumann Model
Introduction to Computer Programming
Introduction to Computer Architecture
The Stored Program Computer
Computer Evolution and Performance
CS 330 Programming Languages
Introduction to Computer Engineering
Chapter 0 Introduction Introduction Chapter 0.
Computer Operation 6/22/2019.
Introduction to Computer Engineering
Introduction to Computer Engineering
Introduction to Computer Engineering
Chapter 4 The Von Neumann Model
CSCI-100 Introduction to Computing
Presentation transcript:

Digital Systems Design 1 Digital Systems: Hardware Organization and Design June 4, 2019 Digital Systems Design 1 Basic Organization of Digital Computers June 4, 2019 Veton Këpuska Introduction

Objective of the Course Digital Systems: Hardware Organization and Design June 4, 2019 Objective of the Course Emphasis on the Designer’s Point of View Design carried out through a hardware description language (AHPL) for specifying the control sequence. Control Sequence is a step-by-step description of the functioning of the digital system. Control Sequences are easily translated into control unit hardware. With completion of Control Sequence Digital System is considered designed. Books on digital systems fall primarily into three categories: (1) largely software (2) switching theory (3) computer architecture and organization First two categories deal with subject related to digital systems however quite distinct from systems design point of view. Third category although useful as an introduction to digital systems fails to engage in design of the system. Intention of this course is to avoid merely to describe computer hardware and focus on design perspective. June 4, 2019 Veton Këpuska Introduction

Generic Digital System Digital Systems: Hardware Organization and Design June 4, 2019 Generic Digital System Vectors of Binary Information Digital System { Control Information Digital System – refers to any structure or device that processes or transmits digital information. Distinction is made between the (1) information to be processed or transmitted, and (2) control information that governs operation of the system. A vector, information of type (1) may be a a byte, 16-bit, 32-bit, 64-bit or 128-bit. Control information (2), typically requires less number of bits. Certain digital systems handle only control signals. Elevator control is one typical example. Sequential circuit design procedures are sufficient for designing such a system. However, they have been shown to be unsatisfactory for designing systems to process vectors of information. Consequently, computers have never been design that way. June 4, 2019 Veton Këpuska Introduction

Brief Overview of Computer Evolution Digital Systems: Hardware Organization and Design June 4, 2019 Brief Overview of Computer Evolution From Abacus to Mechanical Calculators Designed in17th Century by Pascal and Leibniz. First Device that is considered a computer in modern sense was proposed by Charles Babbage in 1830 (Analytical Engine). Howard Aiken of Harvard University in 1937 proposed Automatic Sequence Controlled Calculator -> Mark I sponsored by Harvard and IBM. Completed in August 7, 1944. Mark I was electromechanical machine. ENIAC first Digital Computer based on Vacuum Tubes: J.P. Eckert and J.W. Mauchly, and John von Neumann mathematical consultant. Great Speed of Electronic Devices => Unnecessary to have many parallel calculating elements. Storing the Program in Memory much the same manner as data => made possible to branch to alternate sequences of instructions. New Developments in electronics => EDVAC Von Neumann’s 5 basic principles that defines a computer: It must have an input medium, by means of which an essentially unlimited number of operands or instructions may be entered. It must have store, from which operands or instructions may be obtained and into which results may be entered, in any desired order. It must have a calculating section, capable of carrying out arithmetic or logical operations on any operands taken from the store. It must have an output medium, my means of which an essentially unlimited number of results may be delivered to the user. It must have a control unit, capable of interpreting instructions obtained from memory, and capable of choosing between alternative courses of action on the bases of computed results. Eckert and Mauchly developed first commercially produced computer – UNIVAC I (1951). Von Neumann at Princeton led development of IAS (1951) Indexing and indirect addressing. June 4, 2019 Veton Këpuska Introduction

Basic Organization of Digital Computers Digital Systems: Hardware Organization and Design June 4, 2019 Basic Organization of Digital Computers Memory Input Output Control Processing (ALU) CPU Data and Instructions Instructions Decision Results Results/Data Control Signals June 4, 2019 Veton Këpuska Introduction

Digital Systems: Hardware Organization and Design June 4, 2019 Memory Word Length (8 bits – 128 bits) Address Space (16 bits => 64K Memory) Access Speed Fast – Cache (Pentium 4 - 512K) RAM (512M) Hard Disk Space (>100G) Slow (CD, DVD, Tape, etc.) June 4, 2019 Veton Këpuska Introduction

Computer Categorization Digital Systems: Hardware Organization and Design June 4, 2019 Computer Categorization Based on Use, Speed … Personal Devices (PDA’s) Microcomputers (Desktop, Laptop) Mainframes (Business Machines) Supercomputers Parallel Computer Systems June 4, 2019 Veton Këpuska Introduction

Digital Systems: Hardware Organization and Design June 4, 2019 Instruction Formats Instruction Word is divided into several sections/fields each containing one of the following: Op-code: indicating the operation (ADD, SUB, SHIFT, …) Operand Address(es). Result Address Next Instruction Address June 4, 2019 Veton Këpuska Introduction

Typical Instruction Set Formats Digital Systems: Hardware Organization and Design June 4, 2019 Typical Instruction Set Formats 4 address instruction 3 address instruction 2 address instruction 1 address instruction Opcode Operand Address Result Instruction Opcode Operand Address Result or Instruction Address Opcode Opcode Operand or Instruction Address Operand Address Operand Address Operand or Instruction Address (1) 4 – address instructions: Take a number from column 1 Perform required operation (e.g., Add) on that number to a number in column 2 Enter the sum in 3 Proceed to 4 for the instruction for the next step. Problems: Small address space due to limited number of bits allocated for each address. (2) 3-address instructions Next instruction is implied. (3) 2-address instructions Destination of result is implied. This requires instructions to save/move content of such destination (AC-register) (4) 1-address instructions Second operand is implied (e.g., AC). Take the first operand form the addressed location, the second from the accumulator, place the result in the accumulator, and take the next instruction from the next sequential location. (5) Addressless or Inferred Address Format: Inferred address format in which the opcode specifies the location to be modified. Example CLEAR ACCUMULATOR. Opcode Operand or Instruction Address June 4, 2019 Veton Këpuska Introduction

Digital Systems: Hardware Organization and Design June 4, 2019 Software Increasing level of abstraction : Hardware Instruction Set Assembly Compilers/Interpreters of High Level Languages: (C, C++, Java, Fortran, etc.) Applications Operating Systems (Interface between hardware and application software) June 4, 2019 Veton Këpuska Introduction

Digital Systems: Hardware Organization and Design June 4, 2019 Hardware Description Objective of the course – Define a Computer (RIC) and design its subsystems via a Hardware Description Language: AHPL Alternative to AHPL is VHDL – a more powerful language. VHDL intended to be used over all levels of hardware description: from the digital circuit to the abstract algorithm. This is the reason that it could not be tailored for clock-mode description as was AHPL Thus it is ill suited to be used in the context of this text book. June 4, 2019 Veton Këpuska Introduction