Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
12 views3 pages

Sequential Logic Circuits - Unidad 3

The document provides an overview of sequential logic circuits, focusing on flip-flops, which are bistable multivibrators essential for storing binary data and performing various digital functions. It explains different types of flip-flops, including RS, clocked, D, and JK flip-flops, detailing their operations and applications in digital systems. Additionally, the document discusses the concept of latches as temporary memory devices used to hold data after input signals are removed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views3 pages

Sequential Logic Circuits - Unidad 3

The document provides an overview of sequential logic circuits, focusing on flip-flops, which are bistable multivibrators essential for storing binary data and performing various digital functions. It explains different types of flip-flops, including RS, clocked, D, and JK flip-flops, detailing their operations and applications in digital systems. Additionally, the document discusses the concept of latches as temporary memory devices used to hold data after input signals are removed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

1

Comprensión de Lectura en Inglés para ITSE


Prof. Mao Wilfrido Miguel Urrutia del Villar
Sequential logic circuits.

Sequential logic circuits


Text from: Introduction to electronics

Sequential logic circuits consist of circuits requiring timing and memory devices. The basic ___(1)___ block
5 for sequential logic circuits is the flip-flop. Flip-flops can be wired together to form counters, shift registers,
and memory ___(2)___ .
The flip-flop belongs to a category of digital circuits called multivibrators. A multivibrator is a
regenerative circuit with two active devices. It is designed so that one device conducts while the other
device is cut off. Multivibrators can store binary numbers, count ___(3)___ , synchronize arithmetic
10 operations, and perform other essential functions in digital systems.
There are three ___(4)___ of multivibrators: bistable, monostable, and astable. The bistable multivibrator is
called a flip-flop.

FLIP-FLOPS
15 A flip-flop is a bistable multivibrator whose output is either a high or low voltage, a 1 or a 0. The output
stays high or low until an input called a ___(5)___ is applied.
The basic flip-flop is the RS flip-flop. It is formed by two cross-coupled NOR or NAND gates (Figure
35–1). The RS flip-flop has two outputs, Q and 𝑄̅ , and two controlling inputs, R (Reset) and S (Set). The
outputs are always opposite or ___(6)___: If Q = 1, then 𝑄̅ = 0, and vice-versa.
20 To understand the ___(7)___ of the circuit, assume that the Q output, R input, and S input are all
low. The low on the Q output is connected to one of the inputs of gate 2. The S input is low. The output of
gate 2 is high. This high is coupled to the input of gate 1, holding its output to a low. When the Q output is
low, the flip-flop is said to be in the RESET state. It remains in this state indefinitely, until a high is applied to
the S input of gate 2. When a high is applied to the S input of gate 2, the output of gate 2 becomes a low and
25 is coupled to the input of gate 1. Because the R input of gate 1 is a low, the output changes to a high. The
high is coupled back to the input of gate 2, ensuring that the Q output remains a low. When the Q output is
high, the flip-flop is said to be in the SET state. It remains in the SET state until a high is applied to the R
input, causing the flipflop
to RESET.

30
FIGURE 35–1 FIGURE 35–2
Basic flip-flop circuit. ___(8)___ table for an RS flip-flop.

An “illegal” or “unallowed” condition occurs when a high is applied to both the R and S inputs
simultaneously. In this case, the Q and outputs both try to go low, but Q and cannot be in the same state at
the same time without violating the definition of flip-flop operation. When the___(9)___ on the R and S
inputs are removed simultaneously, both of the outputs attempt to go high. Because there is always some
35 difference in the ___(10)___ , one gate dominates and becomes high. This forces the other gate to remain
low. An unpredictable mode of operation exists and therefore the output state of the flip-flop cannot be
determined.
2
Comprensión de Lectura en Inglés para ITSE
Prof. Mao Wilfrido Miguel Urrutia del Villar
Sequential logic circuits.

40

FIGURE 35–3 Logic symbol for an


FIGURE 35–4 Logic circuit for a
RS flip-flop.
clocked RS flip-flop.

Figure 35–2 shows the truth table for ___(a)___ of an RS flip-flop. Figure 35–3 is a simplified symbol
45 used to represent an RS flip-flop.
Another type of flip-flop is called a clocked flipflop. It is different from the RS flip-flop in that an
additional input is required for operation. The third input is called the clock or trigger. Figure 35–4 shows a
logic diagram for a clocked flip-flop. A high at either input of the flip-flop portion activates the flip-flop,
causing it to change states. The portion labeled “___(b)___ gate” steers or directs the clock pulses to either
50 input gate.

FIGURE 35–5 Logic symbol for a


positive-edge-triggered RS flip-flop.

The clocked flip-flop is controlled by the logic state of the S and R inputs when a clock pulse is
present. A change in the state of the flipflop occurs only when the leading edge of the clock pulse is applied.
The leading edge of the clock pulse is a positive-going ___(c)___ (low to high). This means that the pulse
55 goes from a zero voltage level to a positive voltage level. This is referred to as positive edge-triggered (the
___(d)___ of the pulse is what triggers the circuit).
As long as the clock input is low, the S and R inputs can be changed without affecting the state of
the flip-flop. The only time that the effects of the S and R ___(e)___ are felt is when a clock pulse occurs.
This is referred to as synchronous operation. The flip-flop operates in step with the clock. Synchronous
60 operation is important in computers and calculators when each step must be performed in an exact order.
Figure 35–5 shows the logic symbol used to represent a positive-edgetriggered RS flip-flop.

FIGURE 35–6 Logic circuit and symbol for the D flip-flop.

A D flip-flop is useful where only one ___(f)___ bit (1 or 0) is to be stored. Figure 35–6 shows the
65 logic diagram for a D flip-flop. It has a single data input and a clock input. The D flip-flop is also referred to as
a delay flip-flop. The D input is delayed one clock pulse from getting to the output (Q). Sometimes the D flip-
flop has a PS (preset) input and CLR (clear) input. The preset input sets output Q to a 1 when a low or 0 is
applied to it. The clear input clears the Q output to a 0 when it is enabled by a low or 0. D flip-flops are wired
together to form shift registers and storage registers. These___(g)___ are widely used in digital systems.
3
Comprensión de Lectura en Inglés para ITSE
Prof. Mao Wilfrido Miguel Urrutia del Villar
Sequential logic circuits.

70
FIGURE 35–7 Logic circuit and symbol for the JK flip-flop.

The JK flip-flop is the most widely used flipflop. It has all the ___(h)___ of the other types of flip-
flops. It is also edge triggered, accepting data only at the J and K inputs that are present at the active clock
edge (high to low or low to high). This allows the accepting of input data on J and K at a precise instant. The
logic diagram and symbol for the JK flip-flop is shown in Figure 35–7. J and K are the inputs. The significant
75 feature of the JK flip-flop is that when both the J and K inputs are high, repeated clock pulses cause the
output to toggle or change state. The two asynchronous inputs, PS (preset) and CLR (clear), override the
synchronous inputs, the J and K data inputs, and the clock input. JK flip-flops are widely used in many digital
circuits, especially counter circuits. ___(i)___ are found in almost every digital system.

80
FIGURE 35–8 Four-bit latch.

A latch is a device that serves as a temporary buffer memory. It is used to hold data after the input
signal is removed. The D flip-flop is a good example of a latch device. Other types of flip-flops can also be
used.
A latch is used when inputting to a sevensegment display. Without a latch, the information being
85 displayed is removed when the input signal is removed. With the latch, the information is displayed until it is
updated.
Figure 35–8 shows a 4-bit latch. The unit has four D ___(j)___ enclosed in a single IC package. The E
(enable) inputs are similar to the clock input of the D flip-flop. The data are latched when the enable line
drops to a low, or 0. When the enable is high, or 1, the output follows the input. This means that the output
90 will change to whatever state the input is in; for example, if the input is high, the output will become high; if
the input is low, the output will become low. This condition is referred to as a transparent latch.

You might also like