DIGITAL LOGIC DESIGN

Size: px
Start display at page:

Download "DIGITAL LOGIC DESIGN"

Transcription

1 Roll. No: SHANKERSINH VAGHELA BAPU INSTITUTE OF TECHNOLOGY DIGITAL LOGIC DESIGN LABORATORY MANUAL B.E. 3 rd SEMESTER SHANKERSINH VAGHELA BAPU INSTITUTE OF TECHNOLOGY Gandhinagar-Mansa Road, PO. Vasan, Gandhinagar District, Gujarat, Pin

2 INDEX Sr. No. Title Page Date Sign Grade 1. Verification of basic logic gates and implementation with NAND / NOR gates. /10 2. Realization of half and full adder and half & full subtractor. /10 3. Design and realization of binary to gray code converter. /10 4. Study of multiplexer and realization of Boolean function using it. /10 5. To design binary to seven segments LED display circuit. /10 6. Verification of truth tables of RS, D, JK and T flip flops. /10 7. To design and realize modulo N Synchronous counter using JK flip-flops. /10 8. To design and realize modulo N Ripple counter using T flip flops. /10 9. To realize shift register. /10 1

3 Roll No: Date: / /20 Exp. No.: 1. Title : Logic Gates AIM : [1] To verify truth tables of basic gates. [2] To realize all basic gates using NAND gates only. EQUIPMENTS: [1] Logic trainer [2] IC 7400, [3] IC7402, [4] IC7408, [5] IC7432, [6] IC7486, [7] Connecting wires. THEORY: A gate is a logic circuit that has one or more inputs and one or more outputs. The output of the gate will depend upon the set of input conditions. The digital signal has two distinct states LOW (0) and HIGH (1). Using gates we can implement variety of logic circuit that performs a particular task. For an example we can implement various arithmetic, logical and control units depending upon our requirements. Various types of gates are described below. [1] NOT Gate: This gate has one input and one output. This gate inverts input at the output. When input is LOW output is HIGH and vice versa. BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A Y [2] AND Gate: This gate has two or more inputs and one output. Output of AND gate will go HIGH when all inputs are HIGH, otherwise output will remain LOW. BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A B Y 2

4 [3] OR Gate: This gate has two or more inputs and one output. Output of OR gate will go HIGH when Any of the input is HIGH; output is LOW when all inputs are LOW. BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A B Y [4] XOR Gate: This gate has two or more inputs and one output. Output will go HIGH when all inputs are not of the same logic level (i.e. all inputs are not LOW or not HIGH at a time). BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A B Y [5] NAND Gate: If we put one inverter at the output of AND logic gate will be NAND gate. BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A B Y 3

5 [6] NOR Gate: If we put one inverter at the output of OR gate resulting logic gate will be not NOR gate. BOOLEAN EXPRESSION: Y = TRUTH TABLE: LOGIC SYMBOL A B Y PROCEDURE: [1] Select appropriate IC for each logic gate. [2] Get the pin diagram from data book and make the connections according to the requirements. [3] Make sure the connections of Vcc and ground are at their respective pins. [4] Switch on the power and apply sequence of inputs and observe outputs. CONCLUSION: 4

6 Answer the following question. Shankersinh Vaghela Bapu Institute Of Technology. [1] "NAND and NOR gates are universal gates." Justify. [2] What is TTL logic levels for HIGH and LOW states? [3] What is positive logic and negative logic? [4] Define term (a)propagation Delay (b)fan In/Out (c)power dissipation 5

7 V CC + V CC GND GND V CC 7402 GND V CC 7432 GND V CC 7404 GND V CC 7486 GND FIG. : BASIC DIGITAL IC's 6

8 Roll No: Date: / /20 Exp. No.: 2. Title : Binary Arithmetic Circuits. AIM : To realize binary half adder, full adder, half subtractor, and full subtractor. EQUIPMENTS: [1] Logic trainer [2] IC 7408 [3] IC 7432 [4] IC 7486 [5] Connecting wires. THEORY: Digital computers perform variety of information processing task. Among the basic functions encountered are the various types of arithmetic operations. Here we will see how these operations can be performed using digital hardware. (1) Half adder: This adder adds only two bits and carry from the previous stage will not be added. The outputs of the adder are SUM and CARRY. Truth table of half adder is given below. TRUTH TABLE: A B S Co Expression for Sum and Carry Out: S = A'B + AB' = A + B and Co = AB (2) Full adder: This adder adds two bits and carries from the previous stage. The outputs of the adder are SUM and CARRY. Truth table and simplified expression for sum and carry are given below. TRUTH TABLE: A B C i S Co 7

9 EXPRESSION FOR SUM AND CARRY OUT: S = A'B'Ci + A'BCi' + AB'Ci' + ABCi = A + B + C and Co = AB + BCi + ACi (3) Half subtractor: This subtractor subtracts one bit from another but ignores any borrow from the previous stage. The outputs of the half adder are DIFFERENCE and BORROW. Truth table and expression for difference and borrow are given below. TRUTH TABLE: A B D Bo EXPRESSION FOR DIFFERENCE AND BORROW OUT: D = A B + AB' = A + B and Bo = A'B (4) Full subtractor: This subtractor subtracts binary digits along with borrow from the previous stage. The outputs of the subtractor are difference and borrow out. TRUTH TABLE: A B Bi D Bo EXPRESSION FOR DIFFERENCE AND BORROW OUT: D = A'B'Bi + A'BBi' + AB'Bi' + ABBi = A + B + C and Bo = A B + A'Bi + BBi PROCEDURE: [1] From the Boolean expression draw the logic diagram using suitable gates. [2] Select suitable ICs to implement the Boolean functions [3] Connect circuit and switch on the power supply. [4] Apply set of inputs and observe output and note down the logic state in table. 8

10 BINARY HALF ADDER Shankersinh Vaghela Bapu Institute Of Technology. BINARY FULL ADDER BINARY HALF SUBTRACTOR BINARY HALF SUBTRACTOR CONCLUSION: 9

11 Answer the following questions: [1] What is the difference between binary full adder and half adder? [2] Develop logic to multiply two binary numbers. [3] Develop logic to divide two binary numbers. [4] Implement full adder using half adders. [5] Design a ckt which performs both functions adder/sub. Using a mode control switch? 10

12 Roll No: Date: / /20 Exp. No.: 3. Title : Code Converter. AIM : Design and realization of Binary to Gray code converter. EQUIPMENTS: [1] Logic trainer, [2] LEDs, [3] digital IC 7486, [4] Connecting wires. THEORY: Computers and other digital circuits are required to handle data which may be numeral, alphabet or special character. Since digital circuit in binary fashion, the numerals, alphabets and other special characters are required to be converted into binary format. There are various possible ways of doing this which is called encoding. Some commonly used binary codes are BCD, Excess-3, Gray, etc.. Many physical systems provide continuous data at their output. This data must be converted in to digital form before they are applied to a digital system. Continuous analog information is converted to digital form by means of analog to digital converter. Here it is useful to use the reflected (or gray) code to represent digital data converted from analog data. The advantage of reflected code over pure binary number is that the reflected code changes only by one bit as it proceeds from one number to the next. PROCEDURE: [1] Write down the code conversion table. Simplify Boolean function for each bit using K- map. [2] Select appropriate ICs to realize the simplified Boolean function. [3] Switch ON the power supply. [4] Apply appropriate set of inputs and observe the output. 11

13 OBSERVATION: DEC. BINARY GRAY NO. B3 B2 B1 B0 G3 G2 G1 G CONCLUSION: 12

14 Answer the following question. [1] Why data need to be coded? [2] What is weighted code? [3] Give one examples of non weighted code. [4] Design code converter ckt using mode control switch which performs both function Gray to Binary and Binary to Gray. [5] What is self complementary code? Give example and justify it. [6] Develop a ckt to convert 2461 code to 2's complement of it. [7] Develop a circuit to convert 2461 code to 8241 code. 13

15 Roll No: Date: / /20 Exp. No.: 4. Title : Multiplexer. AIM : To realize Boolean function using multiplexer. EQUIPMENTS: [1] Trainer Board [2] IC [3] IC 7404 [4] Connecting wires. THEORY: Multiplexing means transmitting a large number of information units over a smaller number of channels or lines. Multiplexer is a combinational circuit that selects binary information from one of the many input lines and directs it to a single output line. The selection of a particular input line is controlled by a set of selection lines. Normally for 2 n input lines whose bit combinations determine the input line to be selected. PROCEDURE: [1] First write down the Boolean function of interest in minterm form. [2] Design it using multiplexer of appropriate size. [3] Connect the circuit. [4] Observe the output levels and note down the logic level in table. OBSERVATION: Y (A, B, C, D) = ( ) MINTERMS A B C D Y

16 CONCLUSION: Answer the following questions: [1] List a practical system which uses multiplexes. [2] Why multiplexer is needed? [3] What is difference between decoder and demultiplexer? [4] Develop a Full subtractor ckt using line Mux. [5] "Multiplexer can be used to minimize hard ware and space Justify the statement. 15

17 FIG. : 4-1 CIRCUIT DIAGRAM OF MULTIPLEXER 16

18 Roll No: Date: / /20 Exp. No.: 5. Title : Interfacing Of Display Devices. AIM : To design BCD to seven segment decoder. EQUIPMENTS: [1] Logic trainer, [2] IC 7447, [3] seven segment LED display [4] Connecting wires. THEORY: In digital systems like computers, calculators seven segment displays are used, in which digits are displayed, using LEDs. Display devices provide useful interface between human and digital processing circuits. The digital circuit designed to perform particular task will contain set of input and then input will generate output which depends upon the digital logic. This output is however in the coded form which cannot be understood by unskilled user easily. If we decode this output in form which can be understood easily by a layman then our circuit or product will become more versatile and easy to use. For this purpose we can use decoder and its output is given to display device through driver. Here in this experiment we will be using BCD to seven segment decoder driver (7447) to convert BCD data to decimal equivalent number. CODE TABLE: INPUTS OUTPUT BIT PATTERN CODE A B C D a b c d e f g h PROCEDURE: [1] Connect the display circuit to the four input terminals. [2] Apply logic 0 or logic 1 signal according to input bit pattern. [3] Observe the output display of 0 to 9. 17

19 CONCLUSION: Answer the following question. [1] What is a decoder? [2] Why we need driver along with decoder to interface LEDs? [3] Give all steps of generating BCD to equivalent seven segment code. [4] List name of some other display devices which are frequently used in daily life. [5] What is LCD? How it differs from LEDs? 18

20 Roll No: Date: / /20 Exp. No: 6. Title : Flip-Flops. AIM : To verify characteristic tables of RS, JK, D and T flip-flops. EQUIPMENTS: [1] Logic trainer Board, [2] IC 7400, [3] IC74112, [4] Connecting wires. THEORY: Logic circuits are classified into two groups namely combinational and sequential. a combinational circuit consists of logic gates whose output at any time is determined directly from the present combination of inputs without regard to previous inputs. Sequential circuits involve timing and memory devices. The external inputs along with state of memory elements determine the binary value at the output terminals of the sequential circuit. Thus a sequential circuit is specified by a time sequence of inputs, outputs and internal states. [1] R-S FLIP-FLOP: It has two inputs R (Reset) & S (Set). The two outputs are Q & Q'. The two outputs are always complimentary. The truth table is as below. S R Q ( t ) Q ( t + 1 ) * * Q (t) = Present Output, Q (t + 1) = Next output, * = Invalid condition. [2] J-K FLIP- FLOP: J-K flip-flop is refinement of the R-S flip-flop in that the indeterminate state of R-S type is defined in the J-K flip-flop. Inputs J & K behave like S & R of R-S flip-flop. 19

21 When inputs are applied to both J & K simultaneously, the flip flop switches to its complement state, i.e., if Q = 0 it switches to Q = 0, and vice versa. The truth table is as below. J K Q ( t ) Q ( t + 1 ) [3] T FLIP- FLOP: The T flip-flop is single input version of the J-K flip flop. The T flip-flop is obtained from J-K type if both the inputs are tied together. The designation T comes from the ability of the flip-flop to toggle the current state. Regardless of the present state of the flip-flop, it assumes the complement state when the clock pulse occurs while input T is at logic 1. The truth table is as below. T Q ( t ) Q ( t + 1 ) [4] D FLIP-FLOP: D flip-flop transfers its input data to the output when clock will hit to the flip flop. This flip-flop is use to latch data and hold it till next clock comes. It is used in implementation of shift registers and counters. The truth table is as below. D Q ( t ) Q ( t + 1 ) PROCEDURE: [1] Select appropriate IC for each logic gate. [2] Get the pin diagram from the data book and do the connections accordingly. [3] Switch on the power supply. [4] Verify the truth table. CONCLUSION: 20

22 Answer the following question. [1] What is the difference between combinational and sequential circuits? [2] What is the need of the clock in sequential circuits? [3] What is the difference between flip flop and latch? [4] What is race around problem in the JK flip flops? What is the reason behind this problem? [5] What is difference between event driven circuits and clocked driven circuits? 21

23 Roll No: Date: / /20 Exp. No: 7. Title : Synchronous Counter. AIM : To design and realize modulo 10 binary synchronous counter using J-K flip-flops. EQUIPMENTS: [1] Logic trainer Board [2] IC74112 [3] IC7432, [4] IC7408 [5] IC7400 [6] Connecting wires. THEORY: A sequential circuit that goes through a prescribed sequence of states on application of input pulses is called a counter. The input pulses may be count pulses, may be clock pulses or they may originate from an external source and may occur at prescribed intervals of time or at random. In a counter, the sequence of states may follow a binary count or any other sequence of states. Such counters are used for counting the number of occurrence of an event and are useful for generating timing sequence to control operations in a digital system. The number of distinct states through which counter passes before it starts its count sequence again, is known as modulus of the counter. A counter that follows binary sequences called binary counter. An N-bit binary counter consists of N-flip flops and can count from 0 to (2n - 1). Mainly digital counters are of two types: SYNCHRONOUS COUNTER: In this same clock pulse is applied to all the flip-flops. RIPPLE COUNTER: In this type of counter clock pulse is applied only to the first flip-flop and the ripples at the output of flip-flops serve as clock to the next flip-flops. PROCEDURE: [1] Select the desired value of N, i.e. modulo N-counter. [2] Estimate minimum no. of JK flip-flops required to implement the counter. [3] Draw the state diagram and state table. [4] Derive input function expression for input of various flip-flops. [5] Draw the logic diagram for the counter. [6] Connect the circuit according to the logic diagram using various digital ICs. [7] Switch on the power apply clock pulse, observe and note down the output sequence. 22

24 OBSERVATION: N = COUN T Q 8 Q 4 Q 2 Q 1 CONCLUSION: 23

25 Answer the following questions: [1] What are the applications of counters? Shankersinh Vaghela Bapu Institute Of Technology. [2] What is synchronous counter? [3] What is modulo of counter? [4] How many JK flip flops are required to implement modulo 83 counters? [5] What is difference between timer and counter? 24

26 Roll No: Date: / /20 Exp. No: 8. Title : Ripple Counter. AIM : To design and realize modulo N ripple counter using T flip-flops. EQUIPMENTS: [1] Logic trainer Board, [2] IC [3] IC7432, [4] IC7408, [5] IC7400, [6] Connecting wires. THEORY: Ripple counter is also known as divide by N counter or asynchronous counter. In this counter same clock pulse is not applied to all flip-flops hence this counter is known as asynchronous counter. Since ripples at the output of one flip-flop trigger the next flip-flop, it is known as ripple counter. Every stage of this counter divides its input frequency by two in the output hence is known as divide by N counter. PROCEDURE: [1] Select the desired value of N, i.e. modulo N-counter. [2] Estimate minimum no. of JK flip-flops required to implement the counter. [3] Draw the state diagram and state table. [4] Derive Boolean function expression for CLR input of various flip-flops. [5] Draw the logic diagram for the counter. [6] Connect the circuit according to the logic diagram using various digital ICs. [7] Switch on the power apply clock pulse, observe and note down the output sequence. 25

27 OBSERVATION: N = CONCLUSION: COUNT Q 8 Q 4 Q 2 Q Answer the following question. [1] What is the difference between synchronous and ripple counter? 26

28 [2] What is difference between Timer and Counter? [3] How many JK flip-flops are required to implement modulo 5 counter? [4] What are applications of counters? [5] What is up counter and down counter? [6] Find out the general equation for N-bit up/down counter and draw a circuit diagram which will perform both functions using selection line logic. 27

29 Roll No: Date: / /20 Exp. No.: 9. Title : Shift Registers AIM : To study universal shift register. EQUIPMENTS: [1] Logic trainer [2] IC [3] Connecting wires [4] CRO. THEORY: A flip flop can store one bit of datum. It is also referred as a 1-bit register. An array of flip flop is required to store binary information and the number of flip flops required is equal to the number of bits in the binary word and is referred as a register. Registers find applications in a variety of digital systems including microprocessors. A typical example of a shift register at work is found within a calculator. As we enter each digit on the keypad, the number shifts to the left on the display. In other words, each cell is a temporary memory and thus holds the number on the display even after the release of the key. It also shifts the number to the left each time a next key is pressed. This memory and shifting characteristic make the shift register extremely valuable in most digital electronic systems. We can classify the registers according to the way data they take from and the data they deliver to the external circuits. [1] Serial in serial out registers: Here data is taken serially one bit at a time and data is placed serially on the external line. [2] Serial in parallel out registers: In this type of registers the data is accepted serially and data is placed simultaneously on the external bus. [3] Parallel in serial out registers: The data is loaded simultaneously and data is taken from the register one by one bit at time. [4] Parallel in parallel out registers: The data is loaded simultaneously and is taken out simultaneously from the shift register. Registers can be further classified according to the data shifting direction; they may be shift left registers or shift right registers. 28

30 UNIVERSAL SHIFT REGISTER (IC 74194): This bi-directional shift register is designed to incorporate virtually all of the features a system designer may want. It has four distinct modes of operation, namely (1) Parallel load (2) Shift right (3) Shift left (4) Inhibit clock (do nothing). MODE CONFIGURATION TABLE: PROCEDURE: S1 S0 MODE [1] Select appropriate for the shift register. [2] Connect 0 & +5 volt D.C. supply to the IC. Select particular mode with proper logic level at S1 and S0. [3] Apply clock pulse and sequence of input bits and observe the output sequence. [4] Prepare the timing diagram and operation table for all possible modes. CONCLUSION: 29

31 Answer the following questions: Shankersinh Vaghela Bapu Institute Of Technology. [1] Give few examples of practical systems which use shift registers. [2] "Shift register can be used to provide timing delay." Justify the statement. [3] "Shift registers can be used as a memory." Justify the statement. [4] What do you mean by universal shift register? [5] Why we need serial to parallel and parallel to serial conversion? [6] Can one use shift register as time delay device? If yes how? 30

Counters and Decoders

Counters and Decoders Physics 3330 Experiment #10 Fall 1999 Purpose Counters and Decoders In this experiment, you will design and construct a 4-bit ripple-through decade counter with a decimal read-out display. Such a counter

More information

DEPARTMENT OF INFORMATION TECHNLOGY

DEPARTMENT OF INFORMATION TECHNLOGY DRONACHARYA GROUP OF INSTITUTIONS, GREATER NOIDA Affiliated to Mahamaya Technical University, Noida Approved by AICTE DEPARTMENT OF INFORMATION TECHNLOGY Lab Manual for Computer Organization Lab ECS-453

More information

Experiment # 9. Clock generator circuits & Counters. Eng. Waleed Y. Mousa

Experiment # 9. Clock generator circuits & Counters. Eng. Waleed Y. Mousa Experiment # 9 Clock generator circuits & Counters Eng. Waleed Y. Mousa 1. Objectives: 1. Understanding the principles and construction of Clock generator. 2. To be familiar with clock pulse generation

More information

BINARY CODED DECIMAL: B.C.D.

BINARY CODED DECIMAL: B.C.D. BINARY CODED DECIMAL: B.C.D. ANOTHER METHOD TO REPRESENT DECIMAL NUMBERS USEFUL BECAUSE MANY DIGITAL DEVICES PROCESS + DISPLAY NUMBERS IN TENS IN BCD EACH NUMBER IS DEFINED BY A BINARY CODE OF 4 BITS.

More information

Module 3: Floyd, Digital Fundamental

Module 3: Floyd, Digital Fundamental Module 3: Lecturer : Yongsheng Gao Room : Tech - 3.25 Email : yongsheng.gao@griffith.edu.au Structure : 6 lectures 1 Tutorial Assessment: 1 Laboratory (5%) 1 Test (20%) Textbook : Floyd, Digital Fundamental

More information

COMBINATIONAL and SEQUENTIAL LOGIC CIRCUITS Hardware implementation and software design

COMBINATIONAL and SEQUENTIAL LOGIC CIRCUITS Hardware implementation and software design PH-315 COMINATIONAL and SEUENTIAL LOGIC CIRCUITS Hardware implementation and software design A La Rosa I PURPOSE: To familiarize with combinational and sequential logic circuits Combinational circuits

More information

ETEC 2301 Programmable Logic Devices. Chapter 10 Counters. Shawnee State University Department of Industrial and Engineering Technologies

ETEC 2301 Programmable Logic Devices. Chapter 10 Counters. Shawnee State University Department of Industrial and Engineering Technologies ETEC 2301 Programmable Logic Devices Chapter 10 Counters Shawnee State University Department of Industrial and Engineering Technologies Copyright 2007 by Janna B. Gallaher Asynchronous Counter Operation

More information

Operating Manual Ver.1.1

Operating Manual Ver.1.1 4 Bit Binary Ripple Counter (Up-Down Counter) Operating Manual Ver.1.1 An ISO 9001 : 2000 company 94-101, Electronic Complex Pardesipura, Indore- 452010, India Tel : 91-731- 2570301/02, 4211100 Fax: 91-731-

More information

Digital Logic Design. Basics Combinational Circuits Sequential Circuits. Pu-Jen Cheng

Digital Logic Design. Basics Combinational Circuits Sequential Circuits. Pu-Jen Cheng Digital Logic Design Basics Combinational Circuits Sequential Circuits Pu-Jen Cheng Adapted from the slides prepared by S. Dandamudi for the book, Fundamentals of Computer Organization and Design. Introduction

More information

Having read this workbook you should be able to: recognise the arrangement of NAND gates used to form an S-R flip-flop.

Having read this workbook you should be able to: recognise the arrangement of NAND gates used to form an S-R flip-flop. Objectives Having read this workbook you should be able to: recognise the arrangement of NAND gates used to form an S-R flip-flop. describe how such a flip-flop can be SET and RESET. describe the disadvantage

More information

ASYNCHRONOUS COUNTERS

ASYNCHRONOUS COUNTERS LB no.. SYNCHONOUS COUNTES. Introduction Counters are sequential logic circuits that counts the pulses applied at their clock input. They usually have 4 bits, delivering at the outputs the corresponding

More information

DIGITAL COUNTERS. Q B Q A = 00 initially. Q B Q A = 01 after the first clock pulse.

DIGITAL COUNTERS. Q B Q A = 00 initially. Q B Q A = 01 after the first clock pulse. DIGITAL COUNTERS http://www.tutorialspoint.com/computer_logical_organization/digital_counters.htm Copyright tutorialspoint.com Counter is a sequential circuit. A digital circuit which is used for a counting

More information

List of Experiment. 8. To study and verify the BCD to Seven Segments DECODER.(IC-7447).

List of Experiment. 8. To study and verify the BCD to Seven Segments DECODER.(IC-7447). G. H. RAISONI COLLEGE OF ENGINEERING, NAGPUR Department of Electronics & Communication Engineering Branch:-4 th Semester[Electronics] Subject: - Digital Circuits List of Experiment Sr. Name Of Experiment

More information

Contents COUNTER. Unit III- Counters

Contents COUNTER. Unit III- Counters COUNTER Contents COUNTER...1 Frequency Division...2 Divide-by-2 Counter... 3 Toggle Flip-Flop...3 Frequency Division using Toggle Flip-flops...5 Truth Table for a 3-bit Asynchronous Up Counter...6 Modulo

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Digital Electronics Detailed Outline

Digital Electronics Detailed Outline Digital Electronics Detailed Outline Unit 1: Fundamentals of Analog and Digital Electronics (32 Total Days) Lesson 1.1: Foundations and the Board Game Counter (9 days) 1. Safety is an important concept

More information

The components. E3: Digital electronics. Goals:

The components. E3: Digital electronics. Goals: E3: Digital electronics Goals: Basic understanding of logic circuits. Become familiar with the most common digital components and their use. Equipment: 1 st. LED bridge 1 st. 7-segment display. 2 st. IC

More information

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill

Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Digital Systems Based on Principles and Applications of Electrical Engineering/Rizzoni (McGraw Hill Objectives: Analyze the operation of sequential logic circuits. Understand the operation of digital counters.

More information

Memory Elements. Combinational logic cannot remember

Memory Elements. Combinational logic cannot remember Memory Elements Combinational logic cannot remember Output logic values are function of inputs only Feedback is needed to be able to remember a logic value Memory elements are needed in most digital logic

More information

Lesson 12 Sequential Circuits: Flip-Flops

Lesson 12 Sequential Circuits: Flip-Flops Lesson 12 Sequential Circuits: Flip-Flops 1. Overview of a Synchronous Sequential Circuit We saw from last lesson that the level sensitive latches could cause instability in a sequential system. This instability

More information

COMBINATIONAL CIRCUITS

COMBINATIONAL CIRCUITS COMBINATIONAL CIRCUITS http://www.tutorialspoint.com/computer_logical_organization/combinational_circuits.htm Copyright tutorialspoint.com Combinational circuit is a circuit in which we combine the different

More information

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute. 2nd (Spring) term 2012/2013

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute. 2nd (Spring) term 2012/2013 DIGITAL TECHNICS II Dr. Bálint Pődör Óbuda University, Microelectronics and Technology Institute 4. LECTURE: COUNTERS AND RELATED 2nd (Spring) term 2012/2013 1 4. LECTURE: COUNTERS AND RELATED 1. Counters,

More information

WEEK 8.1 Registers and Counters. ECE124 Digital Circuits and Systems Page 1

WEEK 8.1 Registers and Counters. ECE124 Digital Circuits and Systems Page 1 WEEK 8.1 egisters and Counters ECE124 igital Circuits and Systems Page 1 Additional schematic FF symbols Active low set and reset signals. S Active high set and reset signals. S ECE124 igital Circuits

More information

Design Example: Counters. Design Example: Counters. 3-Bit Binary Counter. 3-Bit Binary Counter. Other useful counters:

Design Example: Counters. Design Example: Counters. 3-Bit Binary Counter. 3-Bit Binary Counter. Other useful counters: Design Eample: ers er: a sequential circuit that repeats a specified sequence of output upon clock pulses. A,B,C,, Z. G, O, T, E, R, P, S,!.,,,,,,,7. 7,,,,,,,.,,,,,,,,,,,. Binary counter: follows the binary

More information

SEQUENTIAL CIRCUITS. Block diagram. Flip Flop. S-R Flip Flop. Block Diagram. Circuit Diagram

SEQUENTIAL CIRCUITS. Block diagram. Flip Flop. S-R Flip Flop. Block Diagram. Circuit Diagram SEQUENTIAL CIRCUITS http://www.tutorialspoint.com/computer_logical_organization/sequential_circuits.htm Copyright tutorialspoint.com The combinational circuit does not use any memory. Hence the previous

More information

Lecture 8: Synchronous Digital Systems

Lecture 8: Synchronous Digital Systems Lecture 8: Synchronous Digital Systems The distinguishing feature of a synchronous digital system is that the circuit only changes in response to a system clock. For example, consider the edge triggered

More information

Upon completion of unit 1.1, students will be able to

Upon completion of unit 1.1, students will be able to Upon completion of unit 1.1, students will be able to 1. Demonstrate safety of the individual, class, and overall environment of the classroom/laboratory, and understand that electricity, even at the nominal

More information

Chapter 7. Registers & Register Transfers. J.J. Shann. J. J. Shann

Chapter 7. Registers & Register Transfers. J.J. Shann. J. J. Shann Chapter 7 Registers & Register Transfers J. J. Shann J.J. Shann Chapter Overview 7- Registers and Load Enable 7-2 Register Transfers 7-3 Register Transfer Operations 7-4 A Note for VHDL and Verilog Users

More information

Binary Adders: Half Adders and Full Adders

Binary Adders: Half Adders and Full Adders Binary Adders: Half Adders and Full Adders In this set of slides, we present the two basic types of adders: 1. Half adders, and 2. Full adders. Each type of adder functions to add two binary bits. In order

More information

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter Description: The NTE2053 is a CMOS 8 bit successive approximation Analog to Digital converter in a 20 Lead DIP type package which uses a differential

More information

Chapter 9 Latches, Flip-Flops, and Timers

Chapter 9 Latches, Flip-Flops, and Timers ETEC 23 Programmable Logic Devices Chapter 9 Latches, Flip-Flops, and Timers Shawnee State University Department of Industrial and Engineering Technologies Copyright 27 by Janna B. Gallaher Latches A temporary

More information

To design digital counter circuits using JK-Flip-Flop. To implement counter using 74LS193 IC.

To design digital counter circuits using JK-Flip-Flop. To implement counter using 74LS193 IC. 8.1 Objectives To design digital counter circuits using JK-Flip-Flop. To implement counter using 74LS193 IC. 8.2 Introduction Circuits for counting events are frequently used in computers and other digital

More information

DIGITAL ELECTRONICS. Counters. By: Electrical Engineering Department

DIGITAL ELECTRONICS. Counters. By: Electrical Engineering Department Counters By: Electrical Engineering Department 1 Counters Upon completion of the chapter, students should be able to:.1 Understand the basic concepts of asynchronous counter and synchronous counters, and

More information

Sequential Logic Design Principles.Latches and Flip-Flops

Sequential Logic Design Principles.Latches and Flip-Flops Sequential Logic Design Principles.Latches and Flip-Flops Doru Todinca Department of Computers Politehnica University of Timisoara Outline Introduction Bistable Elements Latches and Flip-Flops S-R Latch

More information

Take-Home Exercise. z y x. Erik Jonsson School of Engineering and Computer Science. The University of Texas at Dallas

Take-Home Exercise. z y x. Erik Jonsson School of Engineering and Computer Science. The University of Texas at Dallas Take-Home Exercise Assume you want the counter below to count mod-6 backward. That is, it would count 0-5-4-3-2-1-0, etc. Assume it is reset on startup, and design the wiring to make the counter count

More information

Lab 1: Study of Gates & Flip-flops

Lab 1: Study of Gates & Flip-flops 1.1 Aim Lab 1: Study of Gates & Flip-flops To familiarize with circuit implementations using ICs and test the behavior of different logic gates and Flip-flops. 1.2 Hardware Requirement a. Equipments -

More information

Asynchronous Counters. Asynchronous Counters

Asynchronous Counters. Asynchronous Counters Counters and State Machine Design November 25 Asynchronous Counters ENGI 25 ELEC 24 Asynchronous Counters The term Asynchronous refers to events that do not occur at the same time With respect to counter

More information

Flip-Flops, Registers, Counters, and a Simple Processor

Flip-Flops, Registers, Counters, and a Simple Processor June 8, 22 5:56 vra235_ch7 Sheet number Page number 349 black chapter 7 Flip-Flops, Registers, Counters, and a Simple Processor 7. Ng f3, h7 h6 349 June 8, 22 5:56 vra235_ch7 Sheet number 2 Page number

More information

Chapter 2 Logic Gates and Introduction to Computer Architecture

Chapter 2 Logic Gates and Introduction to Computer Architecture Chapter 2 Logic Gates and Introduction to Computer Architecture 2.1 Introduction The basic components of an Integrated Circuit (IC) is logic gates which made of transistors, in digital system there are

More information

So far we have investigated combinational logic for which the output of the logic devices/circuits depends only on the present state of the inputs.

So far we have investigated combinational logic for which the output of the logic devices/circuits depends only on the present state of the inputs. equential Logic o far we have investigated combinational logic for which the output of the logic devices/circuits depends only on the present state of the inputs. In sequential logic the output of the

More information

ANALOG & DIGITAL ELECTRONICS

ANALOG & DIGITAL ELECTRONICS ANALOG & DIGITAL ELECTRONICS Course Instructor: Course No: PH-218 3-1-0-8 Dr. A.P. Vajpeyi E-mail: apvajpeyi@iitg.ernet.in Room No: #305 Department of Physics, Indian Institute of Technology Guwahati,

More information

Counters are sequential circuits which "count" through a specific state sequence.

Counters are sequential circuits which count through a specific state sequence. Counters Counters are sequential circuits which "count" through a specific state sequence. They can count up, count down, or count through other fixed sequences. Two distinct types are in common usage:

More information

3.Basic Gate Combinations

3.Basic Gate Combinations 3.Basic Gate Combinations 3.1 TTL NAND Gate In logic circuits transistors play the role of switches. For those in the TTL gate the conducting state (on) occurs when the baseemmiter signal is high, and

More information

Counters & Shift Registers Chapter 8 of R.P Jain

Counters & Shift Registers Chapter 8 of R.P Jain Chapter 3 Counters & Shift Registers Chapter 8 of R.P Jain Counters & Shift Registers Counters, Syllabus Design of Modulo-N ripple counter, Up-Down counter, design of synchronous counters with and without

More information

Theory of Logic Circuits. Laboratory manual. Exercise 3

Theory of Logic Circuits. Laboratory manual. Exercise 3 Zakład Mikroinformatyki i Teorii Automatów yfrowych Theory of Logic ircuits Laboratory manual Exercise 3 Bistable devices 2008 Krzysztof yran, Piotr zekalski (edt.) 1. lassification of bistable devices

More information

Chapter 8. Sequential Circuits for Registers and Counters

Chapter 8. Sequential Circuits for Registers and Counters Chapter 8 Sequential Circuits for Registers and Counters Lesson 3 COUNTERS Ch16L3- "Digital Principles and Design", Raj Kamal, Pearson Education, 2006 2 Outline Counters T-FF Basic Counting element State

More information

1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1.

1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1. File: chap04, Chapter 04 1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1. 2. True or False? A gate is a device that accepts a single input signal and produces one

More information

Gates, Circuits, and Boolean Algebra

Gates, Circuits, and Boolean Algebra Gates, Circuits, and Boolean Algebra Computers and Electricity A gate is a device that performs a basic operation on electrical signals Gates are combined into circuits to perform more complicated tasks

More information

Counters. Present State Next State A B A B 0 0 0 1 0 1 1 0 1 0 1 1 1 1 0 0

Counters. Present State Next State A B A B 0 0 0 1 0 1 1 0 1 0 1 1 1 1 0 0 ounter ounters ounters are a specific type of sequential circuit. Like registers, the state, or the flip-flop values themselves, serves as the output. The output value increases by one on each clock cycle.

More information

CS311 Lecture: Sequential Circuits

CS311 Lecture: Sequential Circuits CS311 Lecture: Sequential Circuits Last revised 8/15/2007 Objectives: 1. To introduce asynchronous and synchronous flip-flops (latches and pulsetriggered, plus asynchronous preset/clear) 2. To introduce

More information

Digital Logic Design Sequential circuits

Digital Logic Design Sequential circuits Digital Logic Design Sequential circuits Dr. Eng. Ahmed H. Madian E-mail: ahmed.madian@guc.edu.eg Dr. Eng. Rania.Swief E-mail: rania.swief@guc.edu.eg Dr. Eng. Ahmed H. Madian Registers An n-bit register

More information

Chapter 4 Register Transfer and Microoperations. Section 4.1 Register Transfer Language

Chapter 4 Register Transfer and Microoperations. Section 4.1 Register Transfer Language Chapter 4 Register Transfer and Microoperations Section 4.1 Register Transfer Language Digital systems are composed of modules that are constructed from digital components, such as registers, decoders,

More information

150127-Microprocessor & Assembly Language

150127-Microprocessor & Assembly Language Chapter 3 Z80 Microprocessor Architecture The Z 80 is one of the most talented 8 bit microprocessors, and many microprocessor-based systems are designed around the Z80. The Z80 microprocessor needs an

More information

INTEGRATED CIRCUITS. For a complete data sheet, please also download:

INTEGRATED CIRCUITS. For a complete data sheet, please also download: INTEGRATED CIRCUITS DATA SEET For a complete data sheet, please also download: The IC6 74C/CT/CU/CMOS ogic Family Specifications The IC6 74C/CT/CU/CMOS ogic Package Information The IC6 74C/CT/CU/CMOS ogic

More information

(Refer Slide Time: 00:01:16 min)

(Refer Slide Time: 00:01:16 min) Digital Computer Organization Prof. P. K. Biswas Department of Electronic & Electrical Communication Engineering Indian Institute of Technology, Kharagpur Lecture No. # 04 CPU Design: Tirning & Control

More information

CHAPTER 3 Boolean Algebra and Digital Logic

CHAPTER 3 Boolean Algebra and Digital Logic CHAPTER 3 Boolean Algebra and Digital Logic 3.1 Introduction 121 3.2 Boolean Algebra 122 3.2.1 Boolean Expressions 123 3.2.2 Boolean Identities 124 3.2.3 Simplification of Boolean Expressions 126 3.2.4

More information

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute 5. LECTURE: REGISTERS AND RELATED

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute 5. LECTURE: REGISTERS AND RELATED DIGITAL TECHNICS II Dr. Bálint Pődör Óbuda University, Microelectronics and Technology Institute 5. LECTURE: REGISTERS AND RELATED 2nd (Spring) term 22/23 5. LECTURE: REGISTERS. Storage registers 2. Shift

More information

Understanding Logic Design

Understanding Logic Design Understanding Logic Design ppendix of your Textbook does not have the needed background information. This document supplements it. When you write add DD R0, R1, R2, you imagine something like this: R1

More information

ELEC 2210 - EXPERIMENT 1 Basic Digital Logic Circuits

ELEC 2210 - EXPERIMENT 1 Basic Digital Logic Circuits Objectives ELEC - EXPERIMENT Basic Digital Logic Circuits The experiments in this laboratory exercise will provide an introduction to digital electronic circuits. You will learn how to use the IDL-00 Bit

More information

Copyright Peter R. Rony 2009. All rights reserved.

Copyright Peter R. Rony 2009. All rights reserved. Experiment No. 1. THE DIGI DESIGNER Experiment 1-1. Socket Connections on the Digi Designer Experiment No. 2. LOGIC LEVELS AND THE 7400 QUADRUPLE 2-INPUT POSITIVE NAND GATE Experiment 2-1. Truth Table

More information

Lecture-3 MEMORY: Development of Memory:

Lecture-3 MEMORY: Development of Memory: Lecture-3 MEMORY: It is a storage device. It stores program data and the results. There are two kind of memories; semiconductor memories & magnetic memories. Semiconductor memories are faster, smaller,

More information

Systems I: Computer Organization and Architecture

Systems I: Computer Organization and Architecture Systems I: omputer Organization and Architecture Lecture 8: Registers and ounters Registers A register is a group of flip-flops. Each flip-flop stores one bit of data; n flip-flops are required to store

More information

SECTION C [short essay] [Not to exceed 120 words, Answer any SIX questions. Each question carries FOUR marks] 6 x 4=24 marks

SECTION C [short essay] [Not to exceed 120 words, Answer any SIX questions. Each question carries FOUR marks] 6 x 4=24 marks UNIVERSITY OF KERALA First Degree Programme in Computer Applications Model Question Paper Semester I Course Code- CP 1121 Introduction to Computer Science TIME : 3 hrs Maximum Mark: 80 SECTION A [Very

More information

EXPERIMENT 8. Flip-Flops and Sequential Circuits

EXPERIMENT 8. Flip-Flops and Sequential Circuits EXPERIMENT 8. Flip-Flops and Sequential Circuits I. Introduction I.a. Objectives The objective of this experiment is to become familiar with the basic operational principles of flip-flops and counters.

More information

NOTE: The Flatpak version has the same pinouts (Connection Diagram) as the Dual In-Line Package.

NOTE: The Flatpak version has the same pinouts (Connection Diagram) as the Dual In-Line Package. PRESETTABLE BCD/DECADE UP/DOWN COUNTERS PRESETTABLE 4-BIT BINARY UP/DOWN COUNTERS The SN54/74LS90 is a synchronous UP/DOWN BCD Decade (842) Counter and the SN54/74LS9 is a synchronous UP/DOWN Modulo-6

More information

[ 4 ] Logic Symbols and Truth Table

[ 4 ] Logic Symbols and Truth Table [ 4 ] Logic s and Truth Table 1. How to Read MIL-Type Logic s Table 1.1 shows the MIL-type logic symbols used for high-speed CMO ICs. This logic chart is based on MIL-TD-806. The clocked inverter and transmission

More information

A Digital Timer Implementation using 7 Segment Displays

A Digital Timer Implementation using 7 Segment Displays A Digital Timer Implementation using 7 Segment Displays Group Members: Tiffany Sham u2548168 Michael Couchman u4111670 Simon Oseineks u2566139 Caitlyn Young u4233209 Subject: ENGN3227 - Analogue Electronics

More information

Modeling Sequential Elements with Verilog. Prof. Chien-Nan Liu TEL: 03-4227151 ext:34534 Email: jimmy@ee.ncu.edu.tw. Sequential Circuit

Modeling Sequential Elements with Verilog. Prof. Chien-Nan Liu TEL: 03-4227151 ext:34534 Email: jimmy@ee.ncu.edu.tw. Sequential Circuit Modeling Sequential Elements with Verilog Prof. Chien-Nan Liu TEL: 03-4227151 ext:34534 Email: jimmy@ee.ncu.edu.tw 4-1 Sequential Circuit Outputs are functions of inputs and present states of storage elements

More information

Figure 8-1 Four Possible Results of Adding Two Bits

Figure 8-1 Four Possible Results of Adding Two Bits CHPTER EIGHT Combinational Logic pplications Thus far, our discussion has focused on the theoretical design issues of computer systems. We have not yet addressed any of the actual hardware you might find

More information

Fig1-1 2-bit asynchronous counter

Fig1-1 2-bit asynchronous counter Digital electronics 1-Sequential circuit counters Such a group of flip- flops is a counter. The number of flip-flops used and the way in which they are connected determine the number of states and also

More information

Decimal Number (base 10) Binary Number (base 2)

Decimal Number (base 10) Binary Number (base 2) LECTURE 5. BINARY COUNTER Before starting with counters there is some vital information that needs to be understood. The most important is the fact that since the outputs of a digital chip can only be

More information

Digital Logic Elements, Clock, and Memory Elements

Digital Logic Elements, Clock, and Memory Elements Physics 333 Experiment #9 Fall 999 Digital Logic Elements, Clock, and Memory Elements Purpose This experiment introduces the fundamental circuit elements of digital electronics. These include a basic set

More information

Flip-Flops and Sequential Circuit Design. ECE 152A Winter 2012

Flip-Flops and Sequential Circuit Design. ECE 152A Winter 2012 Flip-Flops and Sequential Circuit Design ECE 52 Winter 22 Reading ssignment Brown and Vranesic 7 Flip-Flops, Registers, Counters and a Simple Processor 7.5 T Flip-Flop 7.5. Configurable Flip-Flops 7.6

More information

Flip-Flops and Sequential Circuit Design

Flip-Flops and Sequential Circuit Design Flip-Flops and Sequential Circuit Design ECE 52 Winter 22 Reading ssignment Brown and Vranesic 7 Flip-Flops, Registers, Counters and a Simple Processor 7.5 T Flip-Flop 7.5. Configurable Flip-Flops 7.6

More information

Sequential Logic. (Materials taken from: Principles of Computer Hardware by Alan Clements )

Sequential Logic. (Materials taken from: Principles of Computer Hardware by Alan Clements ) Sequential Logic (Materials taken from: Principles of Computer Hardware by Alan Clements ) Sequential vs. Combinational Circuits Combinatorial circuits: their outputs are computed entirely from their present

More information

Let s put together a Manual Processor

Let s put together a Manual Processor Lecture 14 Let s put together a Manual Processor Hardware Lecture 14 Slide 1 The processor Inside every computer there is at least one processor which can take an instruction, some operands and produce

More information

Latches, the D Flip-Flop & Counter Design. ECE 152A Winter 2012

Latches, the D Flip-Flop & Counter Design. ECE 152A Winter 2012 Latches, the D Flip-Flop & Counter Design ECE 52A Winter 22 Reading Assignment Brown and Vranesic 7 Flip-Flops, Registers, Counters and a Simple Processor 7. Basic Latch 7.2 Gated SR Latch 7.2. Gated SR

More information

Combinational Logic Design Process

Combinational Logic Design Process Combinational Logic Design Process Create truth table from specification Generate K-maps & obtain logic equations Draw logic diagram (sharing common gates) Simulate circuit for design verification Debug

More information

SN54/74LS192 SN54/74LS193

SN54/74LS192 SN54/74LS193 PRESEABLE BCD/DECADE UP/DOWN COUNER PRESEABLE 4-BI BINARY UP/DOWN COUNER he SN4/74LS2 is an UP/DOWN BCD Decade (842) Counter and the SN4/74LS3 is an UP/DOWN MODULO-6 Binary Counter. Separate Count Up and

More information

Systems I: Computer Organization and Architecture

Systems I: Computer Organization and Architecture Systems I: Computer Organization and Architecture Lecture 9 - Register Transfer and Microoperations Microoperations Digital systems are modular in nature, with modules containing registers, decoders, arithmetic

More information

3-Digit Counter and Display

3-Digit Counter and Display ECE 2B Winter 2007 Lab #7 7 3-Digit Counter and Display This final lab brings together much of what we have done in our lab experiments this quarter to construct a simple tachometer circuit for measuring

More information

FORDHAM UNIVERSITY CISC 3593. Dept. of Computer and Info. Science Spring, 2011. Lab 2. The Full-Adder

FORDHAM UNIVERSITY CISC 3593. Dept. of Computer and Info. Science Spring, 2011. Lab 2. The Full-Adder FORDHAM UNIVERSITY CISC 3593 Fordham College Lincoln Center Computer Organization Dept. of Computer and Info. Science Spring, 2011 Lab 2 The Full-Adder 1 Introduction In this lab, the student will construct

More information

Asynchronous counters, except for the first block, work independently from a system clock.

Asynchronous counters, except for the first block, work independently from a system clock. Counters Some digital circuits are designed for the purpose of counting and this is when counters become useful. Counters are made with flip-flops, they can be asynchronous or synchronous and they can

More information

Two-level logic using NAND gates

Two-level logic using NAND gates CSE140: Components and Design Techniques for Digital Systems Two and Multilevel logic implementation Tajana Simunic Rosing 1 Two-level logic using NND gates Replace minterm ND gates with NND gates Place

More information

1.1 The 7493 consists of 4 flip-flops with J-K inputs unconnected. In a TTL chip, unconnected inputs

1.1 The 7493 consists of 4 flip-flops with J-K inputs unconnected. In a TTL chip, unconnected inputs CALIFORNIA STATE UNIVERSITY LOS ANGELES Department of Electrical and Computer Engineering EE-246 Digital Logic Lab EXPERIMENT 1 COUNTERS AND WAVEFORMS Text: Mano, Digital Design, 3rd & 4th Editions, Sec.

More information

CHAPTER IX REGISTER BLOCKS COUNTERS, SHIFT, AND ROTATE REGISTERS

CHAPTER IX REGISTER BLOCKS COUNTERS, SHIFT, AND ROTATE REGISTERS CHAPTER IX-1 CHAPTER IX CHAPTER IX COUNTERS, SHIFT, AN ROTATE REGISTERS REA PAGES 249-275 FROM MANO AN KIME CHAPTER IX-2 INTROUCTION -INTROUCTION Like combinational building blocks, we can also develop

More information

INTEGRATED CIRCUITS. For a complete data sheet, please also download:

INTEGRATED CIRCUITS. For a complete data sheet, please also download: INTEGRATED CIRCUITS DATA SHEET For a complete data sheet, please also download: The IC06 74HC/HCT/HCU/HCMOS Logic Family Specifications The IC06 74HC/HCT/HCU/HCMOS Logic Package Information The IC06 74HC/HCT/HCU/HCMOS

More information

EXPERIMENT 4. Parallel Adders, Subtractors, and Complementors

EXPERIMENT 4. Parallel Adders, Subtractors, and Complementors EXPERIMENT 4. Parallel Adders, Subtractors, and Complementors I. Introduction I.a. Objectives In this experiment, parallel adders, subtractors and complementors will be designed and investigated. In the

More information

University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54

University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54 Fall 2005 Instructor Texts University of St. Thomas ENGR 230 ---- Digital Design 4 Credit Course Monday, Wednesday, Friday from 1:35 p.m. to 2:40 p.m. Lecture: Room OWS LL54 Lab: Section 1: OSS LL14 Tuesday

More information

A Lesson on Digital Clocks, One Shots and Counters

A Lesson on Digital Clocks, One Shots and Counters A Lesson on Digital Clocks, One Shots and Counters Topics Clocks & Oscillators LM 555 Timer IC Crystal Oscillators Selection of Variable Resistors Schmitt Gates Power-On Reset Circuits One Shots Counters

More information

MICROPROCESSOR. Exclusive for IACE Students www.iace.co.in iacehyd.blogspot.in Ph: 9700077455/422 Page 1

MICROPROCESSOR. Exclusive for IACE Students www.iace.co.in iacehyd.blogspot.in Ph: 9700077455/422 Page 1 MICROPROCESSOR A microprocessor incorporates the functions of a computer s central processing unit (CPU) on a single Integrated (IC), or at most a few integrated circuit. It is a multipurpose, programmable

More information

Sistemas Digitais I LESI - 2º ano

Sistemas Digitais I LESI - 2º ano Sistemas Digitais I LESI - 2º ano Lesson 6 - Combinational Design Practices Prof. João Miguel Fernandes (miguel@di.uminho.pt) Dept. Informática UNIVERSIDADE DO MINHO ESCOLA DE ENGENHARIA - PLDs (1) - The

More information

A Lesson on Digital Clocks, One Shots and Counters

A Lesson on Digital Clocks, One Shots and Counters A Lesson on Digital Clocks, One Shots and Counters Topics Clocks & Oscillators LM 555 Timer IC Crystal Oscillators Selection of Variable Resistors Schmitt Gates Power-On Reset Circuits One Shots Counters

More information

Digital Fundamentals. Lab 8 Asynchronous Counter Applications

Digital Fundamentals. Lab 8 Asynchronous Counter Applications Richland College Engineering Technology Rev. 0 B. Donham Rev. 1 (7/2003). Horne Rev. 2 (1/2008). Bradbury Digital Fundamentals CETT 1425 Lab 8 Asynchronous Counter Applications Name: Date: Objectives:

More information

Standart TTL, Serie 74... Art.Gruppe 13.15. 1...

Standart TTL, Serie 74... Art.Gruppe 13.15. 1... Standart TTL, Serie 74... Art.Gruppe 13.15. 1... Standart TTL, Serie 74... 7400 Quad 2-Input Nand Gate (TP) DIL14 7402 Quad 2 Input Nor Gate (TP) DIL14 7403 Quad 2 Input Nand Gate (OC) DIL14 7404 Hex Inverter

More information

Interfacing To Alphanumeric Displays

Interfacing To Alphanumeric Displays Interfacing To Alphanumeric Displays To give directions or data values to users, many microprocessor-controlled instruments and machines need to display letters of the alphabet and numbers. In systems

More information

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute

DIGITAL TECHNICS II. Dr. Bálint Pődör. Óbuda University, Microelectronics and Technology Institute DIGITAL TECHNICS II Dr. Bálint Pődör Óbuda University, Microelectronics and Technology Institute 2. LECTURE: ELEMENTARY SEUENTIAL CIRCUITS: FLIP-FLOPS 1st year BSc course 2nd (Spring) term 2012/2013 1

More information

Digital Electronics Part I Combinational and Sequential Logic. Dr. I. J. Wassell

Digital Electronics Part I Combinational and Sequential Logic. Dr. I. J. Wassell Digital Electronics Part I Combinational and Sequential Logic Dr. I. J. Wassell Introduction Aims To familiarise students with Combinational logic circuits Sequential logic circuits How digital logic gates

More information