Digital Unit-3
Digital Unit-3
Introduction
The sequential circuit is a special type of circuit that has a series of inputs
and outputs. The outputs of the sequential circuits depend on both the
combination of present inputs and previous outputs. The previous output
is treated as the present state. So, the sequential circuit contains the
combinational circuit and its memory storage elements. A sequential
circuit doesn't need to always contain a combinational circuit. So, the
sequential circuit can contain only the memory element.
Clock signal
A clock signal is a periodic signal in which ON time and OFF time need not
be the same. When ON time and OFF time of the clock signal are the
same, a square wave is used to represent the clock signal. Below is a
diagram which represents the clock signal:
A clock signal is considered as the square wave. Sometimes, the signal
stays at logic, either high 5V or low 0V, to an equal amount of time. It
repeats with a certain time period, which will be equal to twice the 'ON
time' or 'OFF time'.
Types of Triggering
Level triggering
The logic High and logic Low are the two levels in the clock signal. In level
triggering, when the clock pulse is at a particular level, only then the
circuit is activated. There are the following types of level triggering:
In a positive level triggering, the signal with Logic High occurs. So, in this
triggering, the circuit is operated with such type of clock signal. Below is
the diagram of positive level triggering:
In negative level triggering, the signal with Logic Low occurs. So, in this
triggering, the circuit is operated with such type of clock signal. Below is
the diagram of Negative level triggering:
Edge triggering
Based on the transitions of the clock signal, there are the following types
of edge triggering:
The transition from Logic Low to Logic High occurs in the clock signal of
positive edge triggering. So, in positive edge triggering, the circuit is
operated with such type of clock signal. The diagram of positive edge
triggering is given below.
The transition from Logic High to Logic low occurs in the clock signal of
negative edge triggering. So, in negative edge triggering, the circuit is
operated with such type of clock signal. The diagram of negative edge
triggering is given below.
Types of Flip-Flops
S-R Flip-Flop
J-K Flip-Flop
D Flip-Flop
T Flip-Flop
S-R Flip-Flop
This is the simplest flip-flop circuit. It has a set input (S) and a reset input
(R). When in this circuit when S is set as active, the output Q would be
high and the Q' will be low. If R is set to active then the output Q is low
and the Q' is high. Once the outputs are established, the results of the
circuit are maintained until S or R get changed, or the power is turned off.
Truth Table of S-R Flip-Flop
S R Q State
0 0 0 No Change
0 1 0 Reset
1 0 1 Set
1 1 X
0 0 0 0
0 0 1 1
0 1 0 0
0 1 1 0
1 0 0 1
1 0 1 1
1 1 0 X
1 1 1 X
J-K Flip-Flop
When J and K both are low then NO change occurs at the output. If both J
and K are high, then at the clock edge, the output will toggle from one
state to the other.
J K Q State
0 0 0 No Change
0 1 0 Reset
1 0 1 Set
1 1 Toggles Toggle
Characteristics Table of JK Flip-Flop
J K Q(t) Q(t+1)
0 0 0 0
0 0 1 1
0 1 0 0
0 1 1 0
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 0
D Flip-Flop
D Q
0 0
1 1
T Flip-Flop
T Q(t) Q(t+1)
0 0 0
0 1 1
1 0 1
1 1 0