ENG2410 Digital Design Registers & Counters

Size: px
Start display at page:

Download "ENG2410 Digital Design Registers & Counters"

Transcription

1 ENG2410 Digital Design Registers & Cunters Registers: Definitin Register a set f flip-flps May include extensive lgic t cntrl state transitin Registers als refer t fast memry fr string data in a cmputer Fall 2017 S. Areibi Schl f Engineering University f Guelph 4 Week #8 Tpics Definitin f Register and Cunter Registers, Shift Registers Ripple Cunters Synchrnus Binary Cunters BCD Cunters Cunters: Definitin Cunter Register that ges thrugh sequence f states as it is clcked We designed a simple cunter in the previus Lecture using T Flip Flps! Resurces Simple Register (N External Gates) Chapter #7, Man Sectins 7.1 Registers and Lad Enable 7.6 Shift Registers 7.6 Ripple Cunters 7.6 Synchrnus Binary Cunters Inputs Outputs Functinality Stre D (D 0,D 1,D 2,D 3 ) On ps-edge f Clck Clear signal nrmally high Pwer-up reset 3 6 Schl f Engineering 1

2 Disabling the Clcking Shift Registers 7 10 Clcking Shift Registers The transfer f new inf int a register is referred t as lading the register. Typically we dn t want t lad every clck We gate the clck!! (Disable the clck)!! We try t avid gating!! (Timing issues) A shift register is a chain f flip-flps in cascade, with the utput f ne flip-flp cnnected t the input f the next flip-flp. It is a register capable f shifting its stred bits laterally in ne r bth directins. All flip-flps receive a cmmn clck pulse, which activates the shift frm each stage t the next. Disable the Clck 8 11 Alternative Simple 4-bit Shift Register If lad H, then D ges thrugh Otherwise, Q is fed back Keep same value N clck gating Every bit shifts t the right at every clck edge. Why add all this lgic? Because D FF desn t have n change behavir New infrmatin will enter via S i and leave frm S 9 12 Schl f Engineering 2

3 Simple 4-Bit Shift Register: Diagram Schematic Clcked in cmmn Just serial in and serial ut Q 0 Q 1 Q 2 Q 3 SO One stage f a bidirectinal shift register with parallel lad VHDL fr Shift Registers Shift Register with Parallel Lad -- 4 bit Shift Register with Reset library ieee; use ieee.std_lgic_1164.all; entity srg_4_r is prt (CLK, RESET, SI : in std_lgic; Q : ut std_lgic_vectr(3 dwnt 0); SO : ut std_lgic); end srg_4_r; architecture behaviral f srg_4_r is Signal shift : std_lgic_vectr(3 dwnt 0); begin prcess (CLK, RESET) begin if (RESET = `1 ) then shift <= `0000 ; elsif (CLK event and CLK = `1 )) then shift<= shift(2 dwnt 0) & SI; end if; end prcess; Q <= shift; S0 <= shift(3); end behaviral; Reset Lad any value t the shift register The shift register can then shift infrmatin ne bit at a time Bidirectinal Shift Register Shift Register with Parallel Lad Shift either way Nw we have fllwing pssible inputs Parallel lad Shift frm left Shift frm right Als n change Schematic Schl f Engineering 3

4 Shift Registers (Summary) Hardware Cmparisn Capability t shift bits In ne r bth directins Usage? Part f standard CPU instructin set Cheap Multiplicatin/Divisin Serial cmmunicatins Serial vs. parallel adder One full adder vs. n adders Serial takes n clck cycles, parallel nly ne clck cycle Serial Additin Synchrnus Cunters Initially reset all registers Register A accumulates At same time, new value ging int B Serial Additin Adds ne bit at a time Then shift thrugh adder int A. Added t 0 if A is empty. Cunters Cunter is a register but has states Als ges thrugh sequence f states cunts n clck r ther pulses Examples: Binary Cunter Cunts thrugh binary sequence n bit cunter cunts frm 0 t 2 n 1 BCD Cunter Any Sequence Cunter Shift value in serially Stres carry ne clck Schl f Engineering 4

5 Synthesis Using T Flip Flps T Flip Flps Synchrnus Design a cunter that cunts frm 000 t 111 and then back t 000 again. Use T Flip-Flps By using K-maps we can minimize the flip flp input equatins. T A 2 T A 1 1 T A A Cunter using T Flip Flps Synchrnus Cunters Asynchrnus Cunters Example: T Flip Flp Synthesis Asynchrnus Cunters 0 Asynchrnus cunters are yet anther type f cunters where nt all flip flps are driven by the glbal clck. Ripple cunters are asynchrnus cunters that are easy t design Schl f Engineering 5

6 Ripple Cunter Simple (Asynch) Tggle Cunters with Parallel Lad BCD Cunters Binary Cunter with Parallel Lad BCD Cunters Cunters emplyed in digital systems quite ften require a parallel-lad capability fr transferring an initial binary number int the cunter prir t the cunter peratin. When lad is equal t 1, the input lad cntrl disables the cunt peratin and causes a transfer f data frm the fur parallel inputs t the fur utputs. The carry utput C0 becmes a 1 if all flip-flps are equal t 1 while the cunt input is enabled. This feature is useful fr expanding the cunter t mre stages BCD Cunters can als be designed using individual flip-flps and gates Schl f Engineering 6

7 BCD Cunter using Binary Cunters Circuit and State Diagram The Binary Cunter with parallel lad can be cnverted int a synchrnus BCD cunter (Hw?) By cnnecting an external AND gate t the lad cntrl (as shwn in the Figure) Arbitrary Cunters VHDL fr Cunters Arbitrary Cunt Sequence VHDL fr Cunters One mre type f cunter is useful Cunt an arbitrary sequence Maybe yu need a sequence f states -- 4 bit Binary Cunter with Reset library ieee; use ieee.std_lgic_1164.all; entity cunt_4_r is prt (CLK, RESET, EN : in std_lgic; Q : ut std_lgic_vectr(3 dwnt 0); CO : ut std_lgic); CLK RESET Q 3 Q 2 Q 1 Q 0 end cunt_4_r; EN CO architecture behaviral f cunt_4_r is Signal cunt : std_lgic_vectr(3 dwnt 0); begin prcess (CLK, RESET) begin if (RESET = `1 ) then cunt <= `0000 ; elsif (CLK event and CLK = `1 ) and (EN = `1 )) then cunt <= cunt ; end if; end prcess; q <= cunt; C0 <= `1 when cunt = 1111 and EN = `1 else 0 ; end behaviral; Schl f Engineering 7

8 Example II 46 Serial Transfer (8-bit Shift Register) Example II.. Cntinue Culd shift data in What s n wire at each clck? Clcked 4 times Table Shwing Shift 45 Schl f Engineering 8

INDIANA UNIVERSITY, DEPT. OF PHYSICS, P400/540 LABORATORY FALL Laboratory #10: Integrated Up-Down Counters and Displays

INDIANA UNIVERSITY, DEPT. OF PHYSICS, P400/540 LABORATORY FALL Laboratory #10: Integrated Up-Down Counters and Displays INDIANA UNIVERSITY, DEPT. OF PHYSICS, P400/540 LABORATORY FALL 008 Labratry #10: Integrated Up-Dwn Cunters and Displays Gal: Use an integrated up-dwn cunter, lad in values, use in circuitry. Implement

More information

1722A Global System Clock Streams (aka Media Clock Streams) Principles and Suggestions

1722A Global System Clock Streams (aka Media Clock Streams) Principles and Suggestions 1722A Glbal System Clck Streams (aka Media Clck Streams) Principles and Suggestins Rb Silfvast 15-Apr-2013 versin 2 The purpse f Media Clck Streams is t distribute a cmmn timing grid t multiple ndes n

More information

Sequential Logic. Sequential circuits. Reuse circuit elements by storing bits in "memory." Introduction to Computer Yung-Yu Chuang

Sequential Logic. Sequential circuits. Reuse circuit elements by storing bits in memory. Introduction to Computer Yung-Yu Chuang Sequential Lgic Intrductin t Cmputer Yung-Yu Chuang Review f Cmbatinal Circuits Cmbatinal circuits. Basic abstractin = switch. In prciple, can build TOY cmputer with a cmbatinal circuit. 255 6 = 4,8 puts

More information

Embedded and Ambient System Laboratory. Syllabus for FPGA measurements

Embedded and Ambient System Laboratory. Syllabus for FPGA measurements Embedded and Ambient System Labratry Syllabus fr FPGA measurements 1. 2. 3. Measurement 1: Intrductin t Verilg, t LOGSYS Spartan 3E bard and the task Measurement 2: Design tasks f Calc_1, Calc_2, Calc_3

More information

The following example configurations are intended to show how the

The following example configurations are intended to show how the The fllwing example cnfiguratins are intended t shw hw the Pepperl+Fuchs safety cntrller can be used t slve everyday safety applicatins. While each example has been designed with the utmst care users are

More information

Registers and Counters

Registers and Counters Registers and Counters Clocked sequential circuit = F/Fs and combinational gates Register Group of flip-flops (share a common clock and capable of storing one bit of information) Consist of a group of

More information

How do I use SmartMusic in my everyday classroom instruction?

How do I use SmartMusic in my everyday classroom instruction? Hw d I use SmartMusic in my everyday classrm instructin? This is certainly a questin I am ften asked by ther music educatrs. I can remember ging t the MEA clinics abut SmartMusic and thinking hw cl the

More information

SMART Podium interactive pen display

SMART Podium interactive pen display Chapter 6 Trubleshting yur SMART Pdium interactive pen display Checking the pwer n yur interactive pen display 44 Pwer buttn indicatr issues 44 Checking the status n yur interactive pen display 46 Status

More information

Section 28 Rehabilitative and Community Support Services KEPRO Mapping Document

Section 28 Rehabilitative and Community Support Services KEPRO Mapping Document Sectin 28 Rehabilitative and Cmmunity Supprt Services KEPRO Mapping Dcument Initiating Requests in KEPRO Lgin t Kepr Care Cnnectin (must be dne using Internet Explrer, IE Tab fr Chrme, r using parallels

More information

RF-TTC FAQs. September 24. Typical questions about timing signals generated by the RF system and transmitted over fibres to TTC system

RF-TTC FAQs. September 24. Typical questions about timing signals generated by the RF system and transmitted over fibres to TTC system RF-TTC FAQs September 24 2008 Typical questins abut timing signals generated by the RF system and transmitted ver fibres t TTC system A. Questins abut setup perid (10-19 Sept 2008) RF-TTC FAQs 2008 1.

More information

Media Technology & Instructional Services (MTIS) - Lake Worth Campus

Media Technology & Instructional Services (MTIS) - Lake Worth Campus Media Technlgy & Instructinal Services (MTIS) - Lake Wrth Campus Hme Cntrl Panel Cmputer Wireless Muse Interactive Mnitr Dcument Camera Guest Laptp Truble Sht Use the buttns n the left t assist yu in using

More information

Registers and Counters

Registers and Counters Registers and Counters Clocked sequential circuit = F/Fs and combinational gates Register Group of flip-flops (share a common clock and capable of storing one bit of information) Consist of a group of

More information

Counters

Counters Counters A counter is the most versatile and useful subsystems in the digital system. A counter driven by a clock can be used to count the number of clock cycles. Since clock pulses occur at known intervals,

More information

Logic Design II (17.342) Spring Lecture Outline

Logic Design II (17.342) Spring Lecture Outline Logic Design II (17.342) Spring 2012 Lecture Outline Class # 03 February 09, 2012 Dohn Bowden 1 Today s Lecture Registers and Counters Chapter 12 2 Course Admin 3 Administrative Admin for tonight Syllabus

More information

Digital Fundamentals: A Systems Approach

Digital Fundamentals: A Systems Approach Digital Fundamentals: A Systems Approach Counters Chapter 8 A System: Digital Clock Digital Clock: Counter Logic Diagram Digital Clock: Hours Counter & Decoders Finite State Machines Moore machine: One

More information

Flip-Flops and Registers

Flip-Flops and Registers The slides included herein were taken from the materials accompanying Fundamentals of Logic Design, 6 th Edition, by Roth and Kinney, and were used with permission from Cengage Learning. Flip-Flops and

More information

HD PVR Viewer s Guide V1.02 Page 1 of 30

HD PVR Viewer s Guide V1.02 Page 1 of 30 HD PVR Viewer s Guide V1.02 Page 1 f 30 TABLE OF CONTENTS 1 FRONT PANEL...3 2 BACK PANEL...4 3 THE HD PVR REMOTE CONTROL...5 3.1 REMOTE CONTROL BASICS... 5 3.2 TV, ALT, TV GUIDE, LANGUAGE AND MUTE BUTTONS...

More information

LaserSharp Multiphoton Microscope (last updated 11/27/2012)

LaserSharp Multiphoton Microscope (last updated 11/27/2012) LaserSharp Multiphtn (last updated 11/27/2012) **All users need t sign up fr EHS laser safety training. Refer t last page (6) fr device diagram. Refer t page 5 fr filter pack (FP) diagrams. Start Prcedure

More information

APPLICATIONS: TELEVISIONS

APPLICATIONS: TELEVISIONS CATHODE RAY TUBE A cathde ray tube (CRT) is a specialized vacuum tube in which images are prduced when an electrn beam strikes a phsphrescent surface. Mst desktp cmputer displays make usef CRTs. The CRT

More information

Experiment 8 Introduction to Latches and Flip-Flops and registers

Experiment 8 Introduction to Latches and Flip-Flops and registers Experiment 8 Introduction to Latches and Flip-Flops and registers Introduction: The logic circuits that have been used until now were combinational logic circuits since the output of the device depends

More information

SMART Room System for Microsoft Lync

SMART Room System for Microsoft Lync SMART Rm System fr Micrsft Lync Fr mdels SRS-LYNC-XS, SRS-LYNC-S, SRS-LYNC-M, SRS-LYNC-M-DUAL and SRS-LYNC-L In this guide: Fr yur recrds 1 Preparing fr yur rm system 2 Befre cnfiguring yur rm system s

More information

TMS9927 and TMS9937 Single-Chip Video Timers/Controllers

TMS9927 and TMS9937 Single-Chip Video Timers/Controllers TMS9927 and TMS9937 Single-Chip Vide Timers/Cntrllers Data Manual IMPORTANT NOTICES Texas Instruments reserves the right t make changes at any time in rder t imprve design and t supply the best prduct

More information

Lecture 12. Amirali Baniasadi

Lecture 12. Amirali Baniasadi CENG 24 Digital Design Lecture 2 Amirali Baniasadi amirali@ece.uvic.ca This Lecture Chapter 6: Registers and Counters 2 Registers Sequential circuits are classified based in their function, e.g., registers.

More information

PROFILE LP VINYL-ARCHIVING TURNTABLE QUICKSTART GUIDE ENGLISH ( 2 4 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( 5 7 )

PROFILE LP VINYL-ARCHIVING TURNTABLE QUICKSTART GUIDE ENGLISH ( 2 4 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( 5 7 ) PROFILE LP VINYL-ARCHIVING TURNTABLE QUICKSTART GUIDE ENGLISH ( 2 4 ) MANUAL DE INICIO RÁPIDO ESPAÑOL ( 5 7 ) GUIDE D UTILISATION RAPIDE FRANÇAIS ( 9 10 ) KURZANLEITUNG DEUTSCH ( 11 13 ) MANUALE RAPIDO

More information

Introduction This application note describes the VSB-ENC-150E 8-VSB Modulator and its applications.

Introduction This application note describes the VSB-ENC-150E 8-VSB Modulator and its applications. Applicatin Nte 8-VSB Mdulatr Mdel Number: VSB-ENC-150E Intrductin This applicatin nte describes the VSB-ENC-150E 8-VSB Mdulatr and its applicatins. Prduct Descriptin The VSB-ENC-150E is an 8-VSB Mdulatr.

More information

A GENERALIZED TWO-INPUT FLIP-FLOP AND ITS REALIZATION'

A GENERALIZED TWO-INPUT FLIP-FLOP AND ITS REALIZATION' R 602 Philips Res. Repts 2, 390-409, 966 A GENERALIZED TWO-INPUT FLIP-FLOP AND ITS REALIZATION' Abstract by N. C. de TROYE.,This paper deals with a classificatin f flip-flp circuits having tw input cnditins.

More information

Registers & Counters. Logic and Digital System Design - CS 303 Erkay Savaş Sabanci University

Registers & Counters. Logic and Digital System Design - CS 303 Erkay Savaş Sabanci University Registers & ounters Logic and igital System esign - S 33 Erkay Savaş Sabanci University Registers Registers like counters are clocked sequential circuits A register is a group of flip-flops Each flip-flop

More information

Logic and Computer Design Fundamentals. Chapter 7. Registers and Counters

Logic and Computer Design Fundamentals. Chapter 7. Registers and Counters Logic and Computer Design Fundamentals Chapter 7 Registers and Counters Registers Register a collection of binary storage elements In theory, a register is sequential logic which can be defined by a state

More information

Layered Queueing Network Modeling of Software Systems

Layered Queueing Network Modeling of Software Systems 1 Layered Queueing Netwrk Mdeling f Sftware Systems Building Security System (buffering) Murray Wdside 5201 Canal Building Building Security System LQN-examples slide 2 Tw subsystems: CCTV strage, and

More information

NYS Common Core ELA & Literacy Curriculum Grade 9 Module 1 Unit 2 Lesson 3

NYS Common Core ELA & Literacy Curriculum Grade 9 Module 1 Unit 2 Lesson 3 9.1.2 Lessn 3 Intrductin In this lessn, students cntinue t analyze Letter One frm Rilke s Letters t a Yung Pet, pages 9 12 (frm S, dear sir, I can t give yu any advice t I, as a stranger, really am. Yurs

More information

ThinManager Certification Test Lab 3

ThinManager Certification Test Lab 3 Gal: ThinManager Certificatin Test Lab 3 The gal is t expand the functinality f ThinManager by deplying sme new features. This will include: Cnfiguring IP cameras and Camera display clients. Cnfiguring

More information

Week One: Focus: Emotions. Aims: o o o o. Objectives: o. Introduction: o o. Development: o. Conclusion: o

Week One: Focus: Emotions. Aims: o o o o. Objectives: o. Introduction: o o. Development: o. Conclusion: o Week One: Fcus: Emtins T increase emtinal awareness. T be aware f the purpse f emtins. T develp an understanding f hw emtins help us. T be able t cnfidently navigate Me, Md, Music website. The students

More information

Dearborn STEM Middle School Music Handbook

Dearborn STEM Middle School Music Handbook Dearbrn STEM Middle Schl Music Handbk 2018-2019 Yur Teacher: Mrs. Nichle Hartrick EMAIL: hartrin@dearbrnschls.rg BLOG: http://iblg.dearbrnschls.rg/dearbrnstemmusic/ CELL PHONE: 734-646-4644 Office Phne:

More information

15PT1727. Operating Instructions

15PT1727. Operating Instructions 15PT1727 Operating Instructins 15PT1727/p1-4 1 07/16/03, 4:00 PM TABLE OF CONTENTS Intrductin Safety Infrmatin/Useful Tips... 3 Befre Calling Service... 4 Basic Installatin/Functins Hking Up Yur TV (Basic

More information

Happily Ever After? A Fairy Tale Unit [1st grade]

Happily Ever After? A Fairy Tale Unit [1st grade] Trinity University Digital Cmmns @ Trinity Understanding by Design: Cmplete Cllectin Understanding by Design 9-11-2009 Happily Ever After? A Fairy Tale Unit [1st grade] Audrey Tan Trinity University Fllw

More information

PR indicates a pre-requisite. CO indicates a co-requisite.

PR indicates a pre-requisite. CO indicates a co-requisite. Scilgy Majr and Secndary Educatin Cgnate Majr Requirements Catalg Year: 2015-16 Degree: Bachelr f Science Credit Hurs: 96+ (Scilgy 33; Secndary Cgnate 63) PR indicates a pre-requisite. CO indicates a c-requisite.

More information

Manual Control. Shutting Down the Mallincam Xtreme

Manual Control. Shutting Down the Mallincam Xtreme Table f Cntents Manual Cntrl... 2 Shutting Dwn the Mallincam Xtreme... 2 First Time Starting Mallincam While Cnnected t Cmputer... 4 Stephan s MC Cntrl Sftware... 6 Planets t fuzzy... 6 Setting up MC Cntrl

More information

PaperStream IP (ISIS) change history

PaperStream IP (ISIS) change history PaperStream IP (ISIS) change histry Service Update 6 Versin 1.30.01510.30001 Crrected issue: 1. Fixed the defect that Sftware Operatin Panel culd nt functin prperly r culd stp respnding when tw r mre scanners

More information

Release Type: Firmware Software Hardware New Product. WP-577VH Any Yes N/A

Release Type: Firmware Software Hardware New Product. WP-577VH Any Yes N/A Prduct Name: WP-577VH Current Versin: F 1.21.21050 Versin Date: Nvember 2015 Reference: 9651 Release Type: Firmware Sftware Hardware New Prduct Kramer Prduct Affected: Prduct Name Minimum FW Versin fr

More information

ROOTSECURE SENSOR SCANNING SCHEDULES DECEMBER 13, 2017

ROOTSECURE SENSOR SCANNING SCHEDULES DECEMBER 13, 2017 ROOTSECURE SENSOR SCANNING SCHEDULES DECEMBER 13, 2017 SECURITY ANALYST ROOTSECURE 1244 Victria Street Nrth, Unit H, Kitchener, ON, N2B 3C9 416-286-6610 www.rtsecure.cm [Page intentinally left blank] Instructins

More information

Contexts: Literary Research Essay/Independent Novel Project

Contexts: Literary Research Essay/Independent Novel Project Cntexts: Literary Research Essay/Independent Nvel Prject Please adhere t deadlines prvided; n extensins will be granted. In accrdance with class plicy, late wrk is nt accepted fr credit. PROMPT: Select

More information

Asynchronous (Ripple) Counters

Asynchronous (Ripple) Counters Circuits for counting events are frequently used in computers and other digital systems. Since a counter circuit must remember its past states, it has to possess memory. The chapter about flip-flops introduced

More information

Congratulations on purchasing your DStv HD PVR 2 P (High Definition Personal Video Recorder) Decoder!

Congratulations on purchasing your DStv HD PVR 2 P (High Definition Personal Video Recorder) Decoder! Picture Precisin! Cngratulatins n purchasing yur DStv HD PVR 2 P (High Definitin Persnal Vide Recrder) Decder! The HD PVR is revlutinising the televisin experience, with lifelike viewing, sharper images,

More information

Flip-flop and Registers

Flip-flop and Registers ECE 322 Digital Design with VHDL Flip-flop and Registers Lecture Textbook References n Sequential Logic Review Stephen Brown and Zvonko Vranesic, Fundamentals of Digital Logic with VHDL Design, 2 nd or

More information

Accessing the Options Main Menus

Accessing the Options Main Menus Accessing the Optins Main Menus 1. T access the Optins applicatin, press the Optins buttn ( ) t the right f and belw the sftkeys. The first f three Optins Main screens displays. 2. Use the standard paging

More information

JROTCDL.com CADET 104 How to Write Effectively 1

JROTCDL.com CADET 104 How to Write Effectively 1 JROTCDL.cm CADET 104 Hw t Write Effectively 1 JROTCDL.cm CADET 104 Hw t Write Effectively 2 TABLE OF CONTENTS The Writing Prcess and Prewriting Phase... 5 Rugh Draft Writing and Revising Phase... 6 Editing

More information

Basics How to cite in-text and at end-of-paper

Basics How to cite in-text and at end-of-paper Basics Hw t cite in-text and at end-f-paper In-text citatins N date, n page, r n authr? If the assignment allws papers where n date is nted fr a surce, then use the ntatin: (n.d.). If it is nt pssible

More information

Colour television. 25PT3323 Operating Instructions

Colour television. 25PT3323 Operating Instructions Clur televisin 25PT3323 Operating Instructins TABLE OF CONTENTS Intrductin Safety Infrmatin/Useful Tips... 3 Befre Calling Service... 4 Basic Installatin/Functins Hking Up Yur TV (Basic Cnnectin)... 5

More information

River Ridge Taiko Student Contract

River Ridge Taiko Student Contract River Ridge Taik Student Cntract 2014-2015 S, we are frmalizing things even mre this year. Expansin ver the last tw t three years, bth in scpe f the membership f the grup and in the perfrmances that the

More information

Earth Science Modeling Research Paper Rough Draft

Earth Science Modeling Research Paper Rough Draft Earth Science Mdeling Research Paper Rugh Draft Yu have THREE ptins n hw t deliver yur Earth Science Prject RESEARCH PAPER Rugh Draft. Optin 1: Cmplete this packet with as much detail as pssible. Optin

More information

MC9211 Computer Organization

MC9211 Computer Organization MC9211 Computer Organization Unit 2 : Combinational and Sequential Circuits Lesson2 : Sequential Circuits (KSB) (MCA) (2009-12/ODD) (2009-10/1 A&B) Coverage Lesson2 Outlines the formal procedures for the

More information

Introduction. Serial In - Serial Out Shift Registers (SISO)

Introduction. Serial In - Serial Out Shift Registers (SISO) Introduction Shift registers are a type of sequential logic circuit, mainly for storage of digital data. They are a group of flip-flops connected in a chain so that the output from one flip-flop becomes

More information

Computer Organization & Architecture Lecture #5

Computer Organization & Architecture Lecture #5 Computer Organization & Architecture Lecture #5 Shift Register A shift register is a register in which binary data can be stored and then shifted left or right when a shift signal is applied. Bits shifted

More information

Chapter 3 Unit Combinational

Chapter 3 Unit Combinational EE 200: Digital Logic Circuit Design Dr Radwan E Abdel-Aal, COE Logic and Computer Design Fundamentals Chapter 3 Unit Combinational 5 Registers Logic and Design Counters Part Implementation Technology

More information

Essays Each student must complete two Essays. One is due in Module 3 and the other is due in Module 7.

Essays Each student must complete two Essays. One is due in Module 3 and the other is due in Module 7. Essays Each student must cmplete tw Essays. One is due in Mdule 3 and the ther is due in Mdule 7. Essay #1 (Mdule 3): The Abrahamitic cvenant des nt cme int full fruitin until the exdus event, which marks

More information

7 th Grade Advanced English Language Arts An investment in knowledge pays the best interest. ~ Ben Franklin

7 th Grade Advanced English Language Arts An investment in knowledge pays the best interest. ~ Ben Franklin 7 th Grade Advanced English Language Arts An investment in knwledge pays the best interest. ~ Ben Franklin Attached yu will find the assignment detail fr 7 th grade advanced English. Cngratulatins! Yur

More information

VTU NOTES QUESTION PAPERS NEWS RESULTS FORUMS Registers

VTU NOTES QUESTION PAPERS NEWS RESULTS FORUMS Registers Registers Registers are a very important digital building block. A data register is used to store binary information appearing at the output of an encoding matrix.shift registers are a type of sequential

More information

ELCT201: DIGITAL LOGIC DESIGN

ELCT201: DIGITAL LOGIC DESIGN ELCT201: DIGITAL LOGIC DESIGN Dr. Eng. Haitham Omran, haitham.omran@guc.edu.eg Dr. Eng. Wassim Alexan, wassim.joseph@guc.edu.eg Lecture 6 Following the slides of Dr. Ahmed H. Madian ذو الحجة 1438 ه Winter

More information

Colour television. Operating Instructions 29PT PT4323

Colour television. Operating Instructions 29PT PT4323 Clur televisin Operating Instructins 29PT4323 34PT4323 1-4_34PT4323/E 1 05/05/03, 2:35 PM TABLE OF CONTENTS Intrductin Safety Infrmatin/Useful Tips... 3 Befre Calling Service... 4 Basic Installatin/Functins

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Sciences

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Sciences MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Sciences Introductory Digital Systems Lab (6.111) Quiz #2 - Spring 2003 Prof. Anantha Chandrakasan and Prof. Don

More information

KEYS TO SUCCESS. September 25, PERCEPTIVE DEVICES LLC 8359 Oakdale Ct, Mason, OH 45040, USA

KEYS TO SUCCESS. September 25, PERCEPTIVE DEVICES LLC 8359 Oakdale Ct, Mason, OH 45040, USA KEYS TO SUCCESS September 25, 2017 PERCEPTIVE DEVICES LLC 8359 Oakdale Ct, Masn, OH 45040, USA Table f Cntents 1. Intrductin... 2 2. Start up and Calibratin... 3 3. Pinting... 4 4. Clicking and Dragging...

More information

Guide to Using Donovan Lounge Technology

Guide to Using Donovan Lounge Technology Guide t Using Dnvan Lunge Technlgy There are 3 main ways t use the technlgy: - Lcal cmputer (munted behind the TV) - Laptp (with HDMI cable in the technlgy bag) - Prjectr See belw fr details n cnnecting

More information

QPHY-eDP Embedded DisplayPort Serial Data Compliance Software. Instruction Manual

QPHY-eDP Embedded DisplayPort Serial Data Compliance Software. Instruction Manual QPHY-eDP Embedded DisplayPrt Serial Data Cmpliance Sftware Instructin Manual Revisin B Nvember, 2017 Relating t: XStreamDSO v.8.5.x.x and later QualiPHY Sftware v.8.5.x.x and later 700 Chestnut Ridge Rad

More information

The ViviD is an upgraded version of Iris Software to support full motion video that comprised of three applications

The ViviD is an upgraded version of Iris Software to support full motion video that comprised of three applications Intrductin The ViviD is an upgraded versin f Iris Sftware t supprt full mtin vide that cmprised f three applicatins t display, create, and schedule message n Optec CV and GV Series LED Displays. ViviD

More information

Counter dan Register

Counter dan Register Counter dan Register Introduction Circuits for counting events are frequently used in computers and other digital systems. Since a counter circuit must remember its past states, it has to possess memory.

More information

PaperStream IP (ISIS) change history

PaperStream IP (ISIS) change history PaperStream IP (ISIS) change histry Service Update 6 Versin 1.30.01510.30001 Crrected issue: 1. Fixed the defect that Sftware Operatin Panel culd nt functin prperly r culd stp respnding when tw r mre scanners

More information

Holding a School-wide Mock Caldecott

Holding a School-wide Mock Caldecott Mck Caldectt/1 Hlding a Schl-wide Mck Caldectt It is a well-knwn, r pssibly a little-knwn, truth that if yu want students t care passinately abut a subject simply intrduce a splash f cmpetitin. Hlding

More information

Sequential Digital Design. Laboratory Manual. Experiment #7. Counters

Sequential Digital Design. Laboratory Manual. Experiment #7. Counters The Islamic University of Gaza Engineering Faculty Department of Computer Engineering Spring 2018 ECOM 2022 Khaleel I. Shaheen Sequential Digital Design Laboratory Manual Experiment #7 Counters Objectives

More information

YEAR 8 Greek drama. Name Class. Level (End of SOW) Target Grade. Teacher WWW. Teacher EBI. Literacy Target: Student Action Step

YEAR 8 Greek drama. Name Class. Level (End of SOW) Target Grade. Teacher WWW. Teacher EBI. Literacy Target: Student Action Step YEAR 8 Greek drama Name Class Level (End f SOW) Target Grade Teacher WWW Teacher EBI Literacy Target: Student Actin Step _ 1 Drama Levels In Drama yu are assessed n three main areas, Making, Perfrming

More information

Colour Television 29PT3223. Operating Instructions

Colour Television 29PT3223. Operating Instructions Clur Televisin 29PT3223 Operating Instructins 1-4_25PT3223/71/E 1 08/22/03, 4:56 PM TABLE OF CONTENTS Intrductin Safety Infrmatin/Useful Tips... 3 Befre Calling Service... 4 Basic Installatin/Functins

More information

Why FPGAs? FPGA Overview. Why FPGAs?

Why FPGAs? FPGA Overview. Why FPGAs? Transistor-level Logic Circuits Positive Level-sensitive EECS150 - Digital Design Lecture 3 - Field Programmable Gate Arrays (FPGAs) January 28, 2003 John Wawrzynek Transistor Level clk clk clk Positive

More information

!!!!!!!!!! Seventh!Grade,General!Music:!!! Creating!an!Original!Composition!in!ABA!Form!using! Garageband!! Mindy!Rubinlicht! Updated!January!2015!!!

!!!!!!!!!! Seventh!Grade,General!Music:!!! Creating!an!Original!Composition!in!ABA!Form!using! Garageband!! Mindy!Rubinlicht! Updated!January!2015!!! SeventhGrade,GeneralMusic: CreatinganOriginalCmpsitininABAFrmusing Garageband MindyRubinlicht UpdatedJanuary2015 CmpsingtwmeldiesinABAfrmusingGarageband LessnLength:Tw%three,frtyminutesessins;tw,80minutesessins

More information

Registers and Counters

Registers and Counters Registers and Counters ( 范倫達 ), Ph. D. Department of Computer Science National Chiao Tung University Taiwan, R.O.C. Fall, 2011 ldvan@cs.nctu.edu.tw http://www.cs.nctu.edu.tw/~ldvan/ Registers Shift Registers

More information

Synchronous Capture of Image Sequences from Multiple Cameras. P. J. Narayanan, Peter Rander, Takeo Kanade CMU-RI-TR-95-25

Synchronous Capture of Image Sequences from Multiple Cameras. P. J. Narayanan, Peter Rander, Takeo Kanade CMU-RI-TR-95-25 Synchrnus Capture f Image Sequences frm Multiple Cameras P. J. Narayanan, Peter Rander, Take Kanade CMU-RI-TR-95-25 Carnegie Melln University The Rbtics Institute Technical Reprt 19960731 027 DISTRIBUTION

More information

Color Television Operating Instructions

Color Television Operating Instructions Clr Televisin Operating Instructins 21PT5107 21PT5121 1-4_21PT5207/E 1 07/16/03, 3:13 PM TABLE OF CONTENTS Intrductin Safety Infrmatin/Useful Tips... 3 Befre Calling Service... 4 Basic Installatin/Functins

More information

Student Recital Checklist

Student Recital Checklist Student Recital Checklist Pre-Recital Read the Recital Packet n the ECU website. (ECU Schl f Music Current Students Recital Packet) Meet with the staff in the Main Office t find times suitable fr yur recital.

More information

Welcome to Palm Beach State College Boca Raton Campus. Use the buttons on the left to assist you in using the Multimedia Classroom Equipment.

Welcome to Palm Beach State College Boca Raton Campus. Use the buttons on the left to assist you in using the Multimedia Classroom Equipment. Hme Vide/Data Prjectr Cmputer Wireless Muse Interactive Mnitr Dcument Camera Cntrl Panel Welcme t Palm Beach State Cllege Bca Ratn Campus Use the buttns n the left t assist yu in using the Multimedia Classrm

More information

CHAPTER1: Digital Logic Circuits

CHAPTER1: Digital Logic Circuits CS224: Computer Organization S.KHABET CHAPTER1: Digital Logic Circuits 1 Sequential Circuits Introduction Composed of a combinational circuit to which the memory elements are connected to form a feedback

More information

BAtn/MOtn Series Product Manual

BAtn/MOtn Series Product Manual Glux BAtn/MOtn Series Prduct Manual Glux Visual Effects Tech(Shenzhen)C.,Ltd Catalgue (1)Prduct Overview ()Prduct Dimensins (3)Prduct Specificatins (4)Fittings and Wires fr Installatin (5)Installatin Diagram

More information

Microprocessor Design

Microprocessor Design Microprocessor Design Principles and Practices With VHDL Enoch O. Hwang Brooks / Cole 2004 To my wife and children Windy, Jonathan and Michelle Contents 1. Designing a Microprocessor... 2 1.1 Overview

More information

PALMETTO HIGH SCHOOL SHOW CHOIR Syllabus

PALMETTO HIGH SCHOOL SHOW CHOIR Syllabus PALMETTO HIGH SCHOOL SHOW CHOIR Syllabus 2017-2018 Teacher Name: Mr. Jared Fricks Email: fricksj@apps.andersn1.rg Phne: 864-847-7311 ext. 1726 Rm Number: 101 I. Curse Descriptin This class has been designed

More information

Chapter 6 Registers and Counters

Chapter 6 Registers and Counters EEA051 - Digital Logic 數位邏輯 Chapter 6 Registers and Counters 吳俊興國立高雄大學資訊工程學系 January 2006 Chapter 6 Registers and Counters 6-1 Registers 6-2 Shift Registers 6-3 Ripple Counters 6-4 Synchronous Counters

More information

THE MIDDLE AGES:

THE MIDDLE AGES: Title: Practicing Metacgnitive Awareness with Guided Lecture Ntes Cntact Infrmatin: Dr. Terrell Hper Assistant Prfessr f Music American University f Sharjah Email thper@aus.edu Lecture 1 Appendix A THE

More information

NYS Common Core ELA & Literacy Curriculum Grade 9 Module 1 Unit 3 Lesson 16

NYS Common Core ELA & Literacy Curriculum Grade 9 Module 1 Unit 3 Lesson 16 9.1.3 Lessn 16 Intrductin In this lessn, students read and analyze an excerpt f Act 5.3 frm Rme and Juliet in which Rme drinks a fatal pisn at Juliet s tmb. Students read lines 88 120 (frm Hw ft, when

More information

CMV COMPETITION RULES

CMV COMPETITION RULES Atsusacn 2018 CMV COMPETITION RULES Atsusacn 2018 CMV cmpetitin rules Pagina 1 GENERAL RULES The cntent must be apprpriate fr ages 13 and lder. 1 70% f the used images must cntain csplays base dn (Japanese)

More information

Registers and Counters

Registers and Counters Registers and Counters A register is a group of flip-flops which share a common clock An n-bit register consists of a group of n flip-flops capable of storing n bits of binary information May have combinational

More information

UNIVERSITI TEKNOLOGI MALAYSIA

UNIVERSITI TEKNOLOGI MALAYSIA SULIT Faculty of Computing UNIVERSITI TEKNOLOGI MALAYSIA FINAL EXAMINATION SEMESTER I, 2016 / 2017 SUBJECT CODE : SUBJECT NAME : SECTION : TIME : DATE/DAY : VENUES : INSTRUCTIONS : Answer all questions

More information

ECE 3401 Lecture 11. Sequential Circuits

ECE 3401 Lecture 11. Sequential Circuits EE 3401 Lecture 11 Sequential ircuits Overview of Sequential ircuits Storage Elements Sequential circuits Storage elements: Latches & Flip-flops Registers and counters ircuit and System Timing Sequential

More information

Anthem. Subject to change based on time and needs of the class

Anthem. Subject to change based on time and needs of the class Anthem Subject t change based n time and needs f the class Objectives: 1. T analyze hw an authr uses language and literary devices. 2. T analyze a nvel in its histrical and scial cntext. Step One: Dialectic

More information

Objectives. Combinational logics Sequential logics Finite state machine Arithmetic circuits Datapath

Objectives. Combinational logics Sequential logics Finite state machine Arithmetic circuits Datapath Objectives Combinational logics Sequential logics Finite state machine Arithmetic circuits Datapath In the previous chapters we have studied how to develop a specification from a given application, and

More information

CB South Advanced Ensembles Symphonic Band and Jazz Ensemble Auditions

CB South Advanced Ensembles Symphonic Band and Jazz Ensemble Auditions CB Suth Advanced Ensembles Symphnic Band and Jazz Ensemble Auditins Thank yu fr yur interest in auditining fr ur CB Suth Advanced Ensembles. In additin t the tw advanced grups (Symphnic Band and Jazz Ensemble),

More information

Switching Circuits & Logic Design, Fall Final Examination (1/13/2012, 3:30pm~5:20pm)

Switching Circuits & Logic Design, Fall Final Examination (1/13/2012, 3:30pm~5:20pm) Switching Circuits & Logic Design, Fall 2011 Final Examination (1/13/2012, 3:30pm~5:20pm) Problem 1: (15 points) Consider a new FF with three inputs, S, R, and T. No more than one of these inputs can be

More information

CCS-UC-1 Crestron Mercury Tabletop Conference System. Supplemental Guide Crestron Electronics, Inc.

CCS-UC-1 Crestron Mercury Tabletop Conference System. Supplemental Guide Crestron Electronics, Inc. CCS-UC-1 Crestrn Mercury Tabletp Cnference System Supplemental Guide Crestrn Electrnics, Inc. Crestrn prduct develpment sftware is licensed t Crestrn dealers and Crestrn Service Prviders (CSPs) under a

More information

hochschule fu r angewandte wissenschaften hamburg Prof. Dr. B. Schwarz FB Elektrotechnik/Informatik

hochschule fu r angewandte wissenschaften hamburg Prof. Dr. B. Schwarz FB Elektrotechnik/Informatik 8 Shift Registers A Johnson counter contains the basic structure of a shift register which is made up by a chain of D- FFs. Beginning with the LSB of a register (a number of D-FFs) each D-FF output can

More information

User Guide. Table Of Contents. o o o o o o o o

User Guide. Table Of Contents. o o o o o o o o User Guide ServLgic is the wrking hub f yur JbLgic system. Overseeing, cntrlling and mnitring yur jbs, with the ability t add infrmatin and mre. Table Of Cntents Getting Started The Service Desk Lgging

More information

Music Curriculum Map. EQ: How does practice improve performance? Establish routines and warm-ups.

Music Curriculum Map. EQ: How does practice improve performance? Establish routines and warm-ups. HIGH SCHOOL Orchestra UNIT 1: FIRST GRADING PERIOD Mnth / pacing Big Ideas/ Learning Intentins/ Learning Outcmes Suggested Prjects September/Octber/Nvember Establish rutines and warm-ups. Cmmn Cre Display

More information

SCHEDULE FOR THE EVENING:

SCHEDULE FOR THE EVENING: Welcme t the Beginning Band Prgram! Westwd 5th grade band teacher Mrs. Frnek has a special invite just fr yu... If yur 4 th grade student is interested in playing band in 5 th grade next fall please read

More information

ELE2120 Digital Circuits and Systems. Tutorial Note 8

ELE2120 Digital Circuits and Systems. Tutorial Note 8 ELE2120 Digital Circuits and Systems Tutorial Note 8 Outline 1. Register 2. Counters 3. Synchronous Counter 4. Asynchronous Counter 5. Sequential Circuit Design Overview 1. Register Applications: temporally

More information

ENGG2410: Digital Design Lab 5: Modular Designs and Hierarchy Using VHDL

ENGG2410: Digital Design Lab 5: Modular Designs and Hierarchy Using VHDL ENGG2410: Digital Design Lab 5: Modular Designs and Hierarchy Using VHDL School of Engineering, University of Guelph Fall 2017 1 Objectives: Start Date: Week #7 2017 Report Due Date: Week #8 2017, in the

More information

SCHOOLS AND STUDENTS PERFORMING & RECEIVING AWARDS

SCHOOLS AND STUDENTS PERFORMING & RECEIVING AWARDS JERRY AWARDS SHOW The Jerry Awards prgram culminates in a shw that recgnizes and hnrs excellence in high schl musical theater. The prgram is named fr benefactr Jerry Frautschi. The 2019 Jerry Awards Shw

More information