Presentation is loading. Please wait.

Presentation is loading. Please wait.

Digital Logic Chapter 5 Presented by Prof Tim Johnson

Similar presentations


Presentation on theme: "Digital Logic Chapter 5 Presented by Prof Tim Johnson"— Presentation transcript:

1 Digital Logic Chapter 5 Presented by Prof Tim Johnson
Wentworth Institute of Technology Department of Electrical Engineering and Tech. Boston, MA Text: Digital Systems by Ronald Tocci

2 Introduction to Chapter 5
Logic circuits studied so far have outputs that respond immediately to inputs at some instant in time. We now introduce the concept of memory. The flip-flop, abbreviated FF, is a key memory element. The outputs of a flip flop are Q and Q is understood to be the normal output, is always the opposite. When the normal output (Q) is placed in the high or 1 state we say the FF has been set. When the normal output (Q) is placed in the low or 0 state we say the FF has been cleared or reset.

3 NAND Latch: Info The NAND gate latch or simply latch is a basic FF.
Two NAND gates are cross-coupled so that the output of NAND-1 is connected to one of the inputs of NAND-2, and vice versa. The gate outputs, Q and , are the latch outputs. Under normal conditions, these two outputs will always be the inverse of each other. There are two inputs:

4

5 NAND Latch: Function Table
The SET and RESET inputs are active low. The output will change when the input is pulsed low.

6 NAND Latch: Waveform Determine the waveform for Q for the inputs given below. Assume that initially Q = 0.

7 Simplified Block Symbol
NAND Latch: Block Symbol Alternate Representation Simplified Block Symbol

8 NOR Latch: Info The NOR latch is also a basic FF.
Two NOR gates are cross-coupled so that the output of NOR-1 is connected to one of the inputs of NOR-2, and vice versa. The arrangement of a NOR latch, as shown below, is similar to a NAND latch except that the Q and outputs have reversed positions.

9

10

11 NOR Latch: Function Table
Simplified Block Symbol NOR Latch Function Table The SET and RESET inputs are active high. The output will change when the input is pulsed high.

12 NOR Latch: Waveform Determine the Q waveform for the NOR latch.
Assume that initially Q = 0.

13 Digital Pulses Signals that switch between active and inactive states are called pulse waveforms. A positive pulse has an active high level. A negative pulse has an active low level. The transition from low to high on a positive pulse is called rise time (tr). Rise time is measured between the 10% and 90% points on the leading edge of the voltage waveform. The transition from high to low on a positive pulse is called fall time (tf). Fall time is measured between the 90% and 10% points on the trailing edge of the voltage waveform.

14 Digital Pulses: Rise and Fall Times

15 Clock Signals and Clocked FFs
Asynchronous system – outputs can change state at any time the input(s) change. Synchronous system – output can change state only at a specific time in the clock cycle. The clock signal is a rectangular pulse train or square wave. Positive going transition (PGT) – when clock pulse 0  1 Negative going transition (NGT) – when clock pulse 1  0. Transitions are also called edges.

16 Clock Signals and Clocked FFs

17 Clock Signals and Clocked FFs
Clocked FFs change state on one or the other clock transitions. Some common characteristics: Clock inputs are labeled CLK, CK, or CP. A small triangle at the CLK input indicates that the input is activated with a PGT (see next page) A bubble and a triangle indicates that the CLK input is activated with a NGT (see next page) Control inputs have an effect on the output only at the active clock transition (NGT or PGT). These are also called synchronous control inputs. The control inputs get the FF outputs ready to change, but the change is not triggered until the CLK edge.

18 Clock Signals and Clocked FFs

19 Clock Signals and Clocked FFs
Setup time (tS) is the minimum time interval before the active CLK transition that the control input must be kept at the proper level. Hold time (tH) is the time following the active transition of the CLK during which the control input must kept at the proper level.

20 Clocked S-R Flip-Flop: Function
The SET-RESET FF will change states at the positive going or negative going clock edge.

21 Clocked S-R Flip-Flop: Waveform

22 Clocked S-R Flip-Flop: Internal Circuitry
See Next Page for the Edge Detector

23 Edge Detectors for (a) PGT and (b) NGT
Clocked S-R Flip-Flop: Internal Circuitry Edge Detectors for (a) PGT and (b) NGT

24 Clocked J-K Flip-Flop: Info
Operates like the S-R FF. J is SET, K is RESET. Difference from the S-R FF: When J and K are both high, the output is toggled from whatever state it is into the opposite state – the toggle mode. May be PGT or NGT. Has the ability to do everything the S-R FF does, plus operating in the toggle mode.

25 Clocked J-K Flip-Flop: Function Table
PGT NGT

26 Clocked J-K Flip-Flop: Internal Circuitry

27 Clocked J-K Flip-Flop: Waveform

28 Exercises (Clocked J-K FF)

29 Exercises (Clocked NOR FF)

30 Clocked D Flip-Flop: Info
One data input. The output changes to the value of the input at either the positive going or negative going clock trigger. May be implemented with a J-K FF by tying the J input to the K input through an inverter. Useful for parallel data transfer.

31 Clocked D Flip-Flop: Function

32 Clocked D Flip-Flop: Parallel Data Transfer

33 D Latch (Transparent Latch): Info
One data input. The clock has been replaced by an enable line. The device is NOT edge triggered. The output follows the input only when EN is high.

34 D Latch: Function

35 D Latch: Waveform

36

37 Asynchronous (Override) Inputs
Inputs that depend on the clock are synchronous. Most clocked FFs have asynchronous inputs that do not depend on the clock. The labels PRE and CLR are used for asynchronous inputs. Active low asynchronous inputs will have a bar over the labels and inversion bubbles. If the asynchronous inputs are not used they will be tied to their inactive state. Note: We didn’t talk about this. The materials are included here for your information.

38 Asynchronous Inputs: Function
Note: We didn’t talk about this. The materials are included here for your information.

39 IEEE/ANSI Symbols Note the differences in the representations below.
Note: We didn’t talk about this. The materials are included here for your information.

40 Flip-Flop Timing Considerations
Important timing parameters: Setup and hold times Propagation delay – the time for a signal at the input to be shown at the output. Maximum clocking frequency – highest clock frequency that will give a reliable output. Clock pulse high and low times – minimum time that clock must high before going low, and low before gong high. Propagation delay may cause unpredictable outputs. Note: We didn’t talk about this. The materials are included here for your information.

41 Flip-Flop Applications
Examples of applications: Synchronization Synchronous Data Transfer Frequency Division Many FF applications are categorized as sequential, which means that the output follows a predetermined sequence of states.

42 Application: Synchronization (1)
Most systems are primarily synchronous in operation, where changes depend on the clock. Asynchronous and synchronous operations are often combined. The random nature of asynchronous inputs can result in unpredictable results. Example shown on the next page describes the problem and a solution using FF.

43 Application: Synchronization (2)
A Synchronization Problem: The synchronization problem solved by FF:

44 How about three inputs in sequence?
Application: Detecting an Input Sequence FFs provide features that pure combinational logic gates do not. If an output is desired only when inputs change state in sequence, an arrangement similar to the following figure can be used. How about three inputs in sequence?

45 Application: Synchronous Data Transfer (1)
FFs are commonly used for storage and transfer of data in binary form. Groups of FFs used for storage are registers. Data transfers take place when data is moved between registers or FFs. Synchronous transfers take place at either PGT or NGT of the clock. Transferring the bits of a register simultaneously is a parallel transfer. Transferring the bits of a register one bit at a time is a serial transfer.

46 Application: Parallel Data Transfer
Parallel Transfer: Register contents are transferred simultaneously with a single clock cycle. Faster, the circuit is more complex.

47 Application: Serial Data Transfer
Serial Transfer: Register contents are transferred one bit at a time, with a clock pulse for each bit. Slower, the circuit is simpler.

48 Application: Frequency Division & Counting (1)
FFs are often used to divide a frequency.

49 Application: Frequency Division & Counting (2)
The same circuit is also acting as a binary counter.

50 State Transition Diagram
Application: Frequency Division & Counting (3) The counter has 23 = 8 different states. It is referred to as a MOD-8 counter, where the MOD number indicates the number of states in the counting sequence. In general, if N flip-flops are connected in a similar arrangement, the counter has 2N different states and so it is a MOD-2N counter. It can count up to 2N-1 before returning to its 0 state. State Transition Diagram

51 Microcomputer Application


Download ppt "Digital Logic Chapter 5 Presented by Prof Tim Johnson"

Similar presentations


Ads by Google