SlideShare a Scribd company logo
1 of 28
Sequential circuit design 1
Sequential circuit design
• Now let’s reverse the process: In sequential circuit design, we turn
some description into a working circuit.
– We first make a state table or diagram to express the computation.
– Then we can turn that table or diagram into a sequential circuit.
Sequential circuit design 2
Sequence recognizers
• A sequence recognizer is a special kind of sequential circuit that looks
for a special bit pattern in some input.
• The recognizer circuit has only one input, X.
– One bit of input is supplied on every clock cycle. For example, it
would take 20 cycles to scan a 20-bit input.
– This is an easy way to permit arbitrarily long input sequences.
• There is one output, Z, which is 1 when the desired pattern is found.
• Our example will detect the bit pattern “1001”:
Inputs: 1 1 1 0 01 1 0 1 00 1 00 1 1 0 …
Outputs: 0 00 0 01 00 0 00 1 00 1 0 0 …
Here, one input and one output bit appear every clock cycle.
• This requires a sequential circuit because the circuit has to “remember”
the inputs from previous clock cycles, in order to determine whether or
not a match was found.
Sequential circuit design 3
A basic state diagram
• What state do we need for the sequence recognizer?
– We have to “remember” inputs from previous clock cycles.
– For example, if the previous three inputs were 100 and the current
input is 1, then the output should be 1.
– In general, we will have to remember occurrences of parts of the
desired pattern—in this case, 1, 10, and 100.
• We’ll start with a basic state diagram (edges are labeled input/output):
A B C D
1/0 0/0 0/0
State Meaning
A None of the desired pattern (1001) has been input yet.
B We’ve already seen the first bit (1) of the desired pattern.
C We’ve already seen the first two bits (10) of the desired pattern.
D We’ve already seen the first three bits (100) of the desired pattern.
Sequential circuit design 4
Step 1: Making a state table
• The first thing you have to figure out is precisely how the use of state
will help you solve the given problem.
– Make a state table based on the problem statement. The table
should show the present states, inputs, next states and outputs.
– Sometimes it is easier to first find a state diagram and then
convert that to a table.
• This is usually the most difficult step. Once you have the state table,
the rest of the design procedure is the same for all sequential circuits.
• Sequence recognizers are especially hard! They’re the hardest example
we’ll see in this class, so if you understand this you’re in good shape.
Sequential circuit design 5
A basic state diagram
• What state do we need for the sequence recognizer?
– We have to “remember” inputs from previous clock cycles.
– For example, if the previous three inputs were 100 and the current
input is 1, then the output should be 1.
– In general, we will have to remember occurrences of parts of the
desired pattern—in this case, 1, 10, and 100.
• We’ll start with a basic state diagram:
A B C D
1/0 0/0 0/0
State Meaning
A None of the desired pattern (1001) has been input yet.
B We’ve already seen the first bit (1) of the desired pattern.
C We’ve already seen the first two bits (10) of the desired pattern.
D We’ve already seen the first three bits (100) of the desired pattern.
Sequential circuit design 6
Overlapping occurrences of the pattern
• What happens if we’re in state D (the last three inputs were 100), and
the current input is 1?
– The output should be a 1, because we’ve found the desired pattern.
– But this last 1 could also be the start of another occurrence of the
pattern! For example, 1001001 contains two occurrences of 1001.
– To detect overlapping occurrences of the pattern, the next state
should be B.
A B C D
1/0 0/0 0/0
1/1
State Meaning
A None of the desired pattern (1001) has been input yet.
B We’ve already seen the first bit (1) of the desired pattern.
C We’ve already seen the first two bits (10) of the desired pattern.
D We’ve already seen the first three bits (100) of the desired pattern.
Sequential circuit design 7
Filling in the other arrows
• Remember that we need two outgoing arrows for each node, to account
for the possibilities of X=0 and X=1.
• The remaining arrows we need are shown in blue. They also allow for the
correct detection of overlapping occurrences of 1001.
A B C D
1/0 0/0 0/0
1/1
0/0
0/0
1/0
1/0
State Meaning
A None of the desired pattern (1001) has been input yet.
B We’ve already seen the first bit (1) of the desired pattern.
C We’ve already seen the first two bits (10) of the desired pattern.
D We’ve already seen the first three bits (100) of the desired pattern.
Sequential circuit design 8
Finally, making the state table
A B C D
1/0 0/0 0/0
1/1
0/0
0/0
1/0
1/0
Present
State Input
Next
State Output
A 0 A 0
A 1 B 0
B 0 C 0
B 1 B 0
C 0 D 0
C 1 B 0
D 0 A 0
D 1 B 1
input/outputpresent
state
next
state
Remember how the state diagram
arrows correspond to rows of the
state table:
Sequential circuit design 9
Sequential circuit design procedure
Step 1:
Make a state table based on the problem statement. The table
should show the present states, inputs, next states and outputs. (It
may be easier to find a state diagram first, and then convert that to a
table.)
Step 2:
Assign binary codes to the states in the state table, if you haven’t
already. If you have n states, your binary codes will have at least
log2 n digits, and your circuit will have at least log2 n flip-flops.
Step 3:
For each flip-flop and each row of your state table, find the flip-
flop input values that are needed to generate the next state from the
present state. You can use flip-flop excitation tables here.
Step 4:
Find simplified equations for the flip-flop inputs and the outputs.
Step 5:
Build the circuit!
Sequential circuit design 10
Present
State Input
Next
State Output
A 0 A 0
A 1 B 0
B 0 C 0
B 1 B 0
C 0 D 0
C 1 B 0
D 0 A 0
D 1 B 1
Step 2: Assigning binary codes to states
Present
State Input
Next
State Output
Q1 Q0 X Q1 Q0 Z
0 0 0 0 0 0
0 0 1 0 1 0
0 1 0 1 0 0
0 1 1 0 1 0
1 0 0 1 1 0
1 0 1 0 1 0
1 1 0 0 0 0
1 1 1 0 1 1
• We have four states ABCD, so we need at least two flip-flops Q1Q0.
• The easiest thing to do is represent state A with Q1Q0 = 00, B with 01,
C with 10, and D with 11.
• The state assignment can have a big impact on circuit complexity, but
we won’t worry about that too much in this class.
Sequential circuit design 11
Step 3: Finding flip-flop input values
Present
State Input
Next
State Flip flop inputs Output
Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z
0 0 0 0 0 0
0 0 1 0 1 0
0 1 0 1 0 0
0 1 1 0 1 0
1 0 0 1 1 0
1 0 1 0 1 0
1 1 0 0 0 0
1 1 1 0 1 1
• Next we have to figure out how to actually make the flip-flops change
from their present state into the desired next state.
• This depends on what kind of flip-flops you use!
• We’ll use two JKs. For each flip-flip Qi, look at its present and next
states, and determine what the inputs Ji and Ki should be in order to
make that state change.
Sequential circuit design 12
Finding JK flip-flop input values
• For JK flip-flops, this is a little tricky. Recall the characteristic table:
• If the present state of a JK flip-flop is 0 and we want the next state
to be 1, then we have two choices for the JK inputs:
– We can use JK=10, to explicitly set the flip-flop’s next state to 1.
– We can also use JK=11, to complement the current state 0.
• So to change from 0 to 1, we must set J=1, but K could be either 0 or 1.
• Similarly, the other possible state transitions can all be done in two
different ways as well.
J K Q(t+1) Operation
0 0 Q(t) No change
0 1 0 Reset
1 0 1 Set
1 1 Q’(t) Complement
Sequential circuit design 13
JK excitation table
• An excitation table shows what flip-flop inputs are required in order to
make a desired state change.
• This is the same information that’s given in the characteristic table,
but presented “backwards.”
J K Q(t+1) Operation
0 0 Q(t) No change
0 1 0 Reset
1 0 1 Set
1 1 Q’(t) Complement
Q(t) Q(t+1) J K Operation
0 0 0 x No change/reset
0 1 1 x Set/complement
1 0 x 1 Reset/complement
1 1 x 0 No change/set
Sequential circuit design 14
Excitation tables for all flip-flops
Q(t) Q(t+1) J K Operation
0 0 0 x No change/reset
0 1 1 x Set/complement
1 0 x 1 Reset/complement
1 1 x 0 No change/set
Q(t) Q(t+1) D Operation
0 0 0 Reset
0 1 1 Set
1 0 0 Reset
1 1 1 Set
Q(t) Q(t+1) T Operation
0 0 0 No change
0 1 1 Complement
1 0 1 Complement
1 1 0 No change
Sequential circuit design 15
Back to the example
Present
State Input
Next
State Flip flop inputs Output
Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z
0 0 0 0 0 0
0 0 1 0 1 0
0 1 0 1 0 0
0 1 1 0 1 0
1 0 0 1 1 0
1 0 1 0 1 0
1 1 0 0 0 0
1 1 1 0 1 1
• We can now use the JK excitation table on
the right to find the correct values for each
flip-flop’s inputs, based on its present and
next states.
Q(t) Q(t+1) J K
0 0 0 x
0 1 1 x
1 0 x 1
1 1 x 0
Sequential circuit design 16
Back to the example
Present
State Input
Next
State Flip flop inputs Output
Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z
0 0 0 0 0 0 x 0 x 0
0 0 1 0 1 0 x 1 x 0
0 1 0 1 0 1 x x 1 0
0 1 1 0 1 0 x x 0 0
1 0 0 1 1 x 0 1 x 0
1 0 1 0 1 x 1 1 x 0
1 1 0 0 0 x 1 x 1 0
1 1 1 0 1 x 1 x 0 1
• We can now use the JK excitation table on
the right to find the correct values for each
flip-flop’s inputs, based on its present and
next states.
Q(t) Q(t+1) J K
0 0 0 x
0 1 1 x
1 0 x 1
1 1 x 0
Sequential circuit design 17
• Now you can make K-maps and find equations for each of the four flip-
flop inputs, as well as for the output Z.
• These equations are in terms of the present state and the inputs.
• The advantage of using JK flip-flops is that there are many don’t care
conditions, which can result in simpler MSP equations.
J1 = X’ Q0
K1 = X + Q0
J0 = X + Q1
K0 = X’
Z = Q1Q0X
Step 4: Find equations for the FF inputs and output
Present
State Input
Next
State Flip flop inputs Output
Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z
0 0 0 0 0 0 x 0 x 0
0 0 1 0 1 0 x 1 x 0
0 1 0 1 0 1 x x 1 0
0 1 1 0 1 0 x x 0 0
1 0 0 1 1 x 0 1 x 0
1 0 1 0 1 x 1 1 x 0
1 1 0 0 0 x 1 x 1 0
1 1 1 0 1 x 1 x 0 1
Sequential circuit design 18
Step 5: Build the circuit
• Lastly, we use these simplified equations to build the completed
circuit.
J1 = X’ Q0
K1 = X + Q0
J0 = X + Q1
K0 = X’
Z = Q1Q0X
Sequential circuit design 19
Step 5: Build the circuit
• Lastly, we use these simplified equations to build the completed
circuit.
J1 = X’ Q0
K1 = X + Q0
J0 = X + Q1
K0 = X’
Z = Q1Q0X
Sequential circuit design 20
Timing diagram
• Here is one example timing diagram for our sequence detector.
– The flip-flops Q1Q0 start in the initial state, 00.
– On the first three positive clock edges, X is 1, 0, and 0. These
inputs cause Q1Q0 to change, so after the third edge Q1Q0 = 11.
– Then when X=1, Z becomes 1 also, meaning that 1001 was found.
• The output Z does not have to change at positive clock edges. Instead,
it may change whenever X changes, since Z = Q1Q0X.
CLK
Q1
Q0
X
Z
1 2 3 4
Sequential circuit design 21
Building the same circuit with D flip-flops
• What if you want to build the circuit using D flip-flops instead?
• We already have the state table and state assignments, so we can just
start from Step 3, finding the flip-flop input values.
• D flip-flops have only one input, so our table only needs two columns for
D1 and D0.
Present
State Input
Next
State
Flip-flop
inputs Output
Q1 Q0 X Q1 Q0 D1 D0 Z
0 0 0 0 0 0
0 0 1 0 1 0
0 1 0 1 0 0
0 1 1 0 1 0
1 0 0 1 1 0
1 0 1 0 1 0
1 1 0 0 0 0
1 1 1 0 1 1
Sequential circuit design 22
D flip-flop input values (Step 3)
• The D excitation table is pretty boring;
set the D input to whatever the next
state should be.
• You don’t even need to show separate
columns for D1 and D0; you can just use
the Next State columns.
Present
State Input
Next
State
Flip flop
inputs Output
Q1 Q0 X Q1 Q0 D1 D0 Z
0 0 0 0 0 0 0 0
0 0 1 0 1 0 1 0
0 1 0 1 0 1 0 0
0 1 1 0 1 0 1 0
1 0 0 1 1 1 1 0
1 0 1 0 1 0 1 0
1 1 0 0 0 0 0 0
1 1 1 0 1 0 1 1
Q(t) Q(t+1) D Operation
0 0 0 Reset
0 1 1 Set
1 0 0 Reset
1 1 1 Set
Sequential circuit design 23
Finding equations (Step 4)
• You can do K-maps again, to find:
D1 = Q1 Q0’ X’ + Q1’ Q0 X’
D0 = X + Q1 Q0’
Z = Q1 Q0 X
Present
State Input
Next
State
Flip flop
inputs Output
Q1 Q0 X Q1 Q0 D1 D0 Z
0 0 0 0 0 0 0 0
0 0 1 0 1 0 1 0
0 1 0 1 0 1 0 0
0 1 1 0 1 0 1 0
1 0 0 1 1 1 1 0
1 0 1 0 1 0 1 0
1 1 0 0 0 0 0 0
1 1 1 0 1 0 1 1
Sequential circuit design 24
Building the circuit (Step 5)
D1 = Q1 Q0’ X’ + Q1’ Q0 X’
D0 = X + Q1 Q0’
Sequential circuit design 25
Building the circuit (Step 5)
Sequential circuit design 26
Flip-flop comparison
JK flip-flops are good because there are many don’t care
values in the flip-flop inputs, which can lead to a simpler
circuit.
D flip-flops have the advantage that you don’t have to set
up flip-flop inputs at all, since Q(t+1) = D. However, the D
input equations are usually more complex than JK input
equations
In practice, D flip-flops are used more often.
– There is only one input for each flip-flop, not two.
– There are no excitation tables to worry about.
– D flip-flops can be implemented with slightly less
hardware than JK flip-flops.
Sequential circuit design 27
An Aside On State Encoding
• You do not have to use the most compact encoding of states possible
• Here is another possibility: suppose you have four states A, B, C, D
– Create one flip flop for each of A, B, C, D
– Feed the Set and Reset lines of these flip-flops based on current
state and inputs
– This uses more flip-flops (4 instead of the minimum 2) but may
result in a much simpler circuit overall
– The encoding and decoding of states is entirely artificial; it
depends completely on the choice of state encodings. A little
thinking about the circuit may lead you to a state encoding that
simplifies the circuit a lot.
Sequential circuit design 28
Summary
• The basic sequential circuit design procedure:
– Make a state table and, if desired, a state diagram. This step is
usually the hardest.
– Assign binary codes to the states if you didn’t already.
– Use the present states, next states, and flip-flop excitation tables
to find the flip-flop input values.
– Write simplified equations for the flip-flop inputs and outputs and
build the circuit.
• Next, we’ll look at common examples of sequential circuits, including
different types of counters.

More Related Content

What's hot

Moore and mealy machines
Moore and mealy machinesMoore and mealy machines
Moore and mealy machines
lavishka_anuj
 
Analysis of state machines & Conversion of models
Analysis of state machines & Conversion of modelsAnalysis of state machines & Conversion of models
Analysis of state machines & Conversion of models
Abhilash Nair
 
Mealy state machine
Mealy state machineMealy state machine
Mealy state machine
Arif Siyal
 

What's hot (20)

Designing State Machine
Designing State MachineDesigning State Machine
Designing State Machine
 
Fsm sequence detector
Fsm sequence detector Fsm sequence detector
Fsm sequence detector
 
16%20 lecture
16%20 lecture16%20 lecture
16%20 lecture
 
synchronous state machine design
synchronous state machine designsynchronous state machine design
synchronous state machine design
 
Combinational logic 2
Combinational logic 2Combinational logic 2
Combinational logic 2
 
Sequential Circuit
Sequential CircuitSequential Circuit
Sequential Circuit
 
Meley & moore
Meley & mooreMeley & moore
Meley & moore
 
Combinational logic 1
Combinational logic 1Combinational logic 1
Combinational logic 1
 
Finite State Machine | Computer Science
Finite State Machine | Computer ScienceFinite State Machine | Computer Science
Finite State Machine | Computer Science
 
Moore and mealy machines
Moore and mealy machinesMoore and mealy machines
Moore and mealy machines
 
Analysis of state machines & Conversion of models
Analysis of state machines & Conversion of modelsAnalysis of state machines & Conversion of models
Analysis of state machines & Conversion of models
 
Finite State Machines
Finite State Machines Finite State Machines
Finite State Machines
 
Mealy state machine
Mealy state machineMealy state machine
Mealy state machine
 
Mealy moore machine model
Mealy moore machine modelMealy moore machine model
Mealy moore machine model
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
State table and characteristic equation for sequential circuit
State table and characteristic equation for sequential circuitState table and characteristic equation for sequential circuit
State table and characteristic equation for sequential circuit
 
Mealy and moore machine
Mealy and moore machineMealy and moore machine
Mealy and moore machine
 
Asynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 pptAsynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 ppt
 
Registers and counters
Registers and countersRegisters and counters
Registers and counters
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 

Viewers also liked

Why learn about the internet 7
Why learn about the internet 7Why learn about the internet 7
Why learn about the internet 7
Zain Ul Abedeen
 
Как монетизировать 100% доступного инвентаря на сайте?
Как монетизировать 100% доступного инвентаря на сайте?Как монетизировать 100% доступного инвентаря на сайте?
Как монетизировать 100% доступного инвентаря на сайте?
Maksim Krasovskiy
 
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Zain Ul Abedeen
 
Why learn about the internet 7
Why learn about the internet 7Why learn about the internet 7
Why learn about the internet 7
Zain Ul Abedeen
 
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Zain Ul Abedeen
 

Viewers also liked (15)

Why learn about the internet 7
Why learn about the internet 7Why learn about the internet 7
Why learn about the internet 7
 
Как монетизировать 100% доступного инвентаря на сайте?
Как монетизировать 100% доступного инвентаря на сайте?Как монетизировать 100% доступного инвентаря на сайте?
Как монетизировать 100% доступного инвентаря на сайте?
 
Advark - Video advertising platform
Advark - Video advertising platformAdvark - Video advertising platform
Advark - Video advertising platform
 
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...
 
Медиа-кит Video SSP Advark для рекламных агентств
Медиа-кит Video SSP Advark для рекламных агентствМедиа-кит Video SSP Advark для рекламных агентств
Медиа-кит Video SSP Advark для рекламных агентств
 
Why learn about the internet 7
Why learn about the internet 7Why learn about the internet 7
Why learn about the internet 7
 
Sequential
SequentialSequential
Sequential
 
Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...Priprincipl telecommunications and networks es learning objectivesnciples lea...
Priprincipl telecommunications and networks es learning objectivesnciples lea...
 
Business Benefits of Cloud Computing to Indian IT Service
Business Benefits of Cloud Computing to Indian IT ServiceBusiness Benefits of Cloud Computing to Indian IT Service
Business Benefits of Cloud Computing to Indian IT Service
 
Advark - Video Supply Side Platform
Advark - Video Supply Side PlatformAdvark - Video Supply Side Platform
Advark - Video Supply Side Platform
 
Advark - платформа управления видеорекламой
Advark - платформа управления видеорекламойAdvark - платформа управления видеорекламой
Advark - платформа управления видеорекламой
 
Dld
DldDld
Dld
 
Lec20
Lec20Lec20
Lec20
 
Dehesa de 900 has con una gran casa en la Sierra Norte de Sevilla
Dehesa de 900 has con una gran casa en la Sierra Norte de SevillaDehesa de 900 has con una gran casa en la Sierra Norte de Sevilla
Dehesa de 900 has con una gran casa en la Sierra Norte de Sevilla
 
Bis 2016 03 especial 15 pisos con encanto 2
Bis 2016 03 especial 15 pisos con encanto 2Bis 2016 03 especial 15 pisos con encanto 2
Bis 2016 03 especial 15 pisos con encanto 2
 

Similar to Lec 25 26_27

DD Slides6.pptx aaaaaaaaaaaaaaaaaaaaaaaaaaaa
DD Slides6.pptx  aaaaaaaaaaaaaaaaaaaaaaaaaaaaDD Slides6.pptx  aaaaaaaaaaaaaaaaaaaaaaaaaaaa
DD Slides6.pptx aaaaaaaaaaaaaaaaaaaaaaaaaaaa
kasheenp
 
Unit I_CDA-1 computer design and applications.
Unit I_CDA-1 computer design and applications.Unit I_CDA-1 computer design and applications.
Unit I_CDA-1 computer design and applications.
brijeshgolani77
 
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptxSequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
AhmedAlAfandi5
 

Similar to Lec 25 26_27 (20)

digital-electronics_7.pdf
digital-electronics_7.pdfdigital-electronics_7.pdf
digital-electronics_7.pdf
 
Lec9
Lec9Lec9
Lec9
 
DD Slides6.pptx aaaaaaaaaaaaaaaaaaaaaaaaaaaa
DD Slides6.pptx  aaaaaaaaaaaaaaaaaaaaaaaaaaaaDD Slides6.pptx  aaaaaaaaaaaaaaaaaaaaaaaaaaaa
DD Slides6.pptx aaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Computer system architecture 16 counters
Computer system architecture 16 countersComputer system architecture 16 counters
Computer system architecture 16 counters
 
Unit I_CDA-1 computer design and applications.
Unit I_CDA-1 computer design and applications.Unit I_CDA-1 computer design and applications.
Unit I_CDA-1 computer design and applications.
 
Feedback Sequential Circuits
Feedback Sequential CircuitsFeedback Sequential Circuits
Feedback Sequential Circuits
 
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptxSequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
 
Basics Counters
Basics Counters Basics Counters
Basics Counters
 
9920Lec12 FSM.ppt
9920Lec12 FSM.ppt9920Lec12 FSM.ppt
9920Lec12 FSM.ppt
 
Sequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdfSequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdf
 
Sequential logic circuit
Sequential logic circuitSequential logic circuit
Sequential logic circuit
 
Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4
 
Lec16 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Fi...
Lec16 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Fi...Lec16 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Fi...
Lec16 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Fi...
 
Computer design and architecture with simple cpu
Computer design and architecture with simple cpuComputer design and architecture with simple cpu
Computer design and architecture with simple cpu
 
04 sequential circuits
04 sequential circuits04 sequential circuits
04 sequential circuits
 
Analysis sequential circuits
Analysis sequential circuitsAnalysis sequential circuits
Analysis sequential circuits
 
UNIT-IV.pptx
UNIT-IV.pptxUNIT-IV.pptx
UNIT-IV.pptx
 
Sequential Logic
Sequential LogicSequential Logic
Sequential Logic
 
lec7.ppt
lec7.pptlec7.ppt
lec7.ppt
 
Counters
CountersCounters
Counters
 

Recently uploaded

Recently uploaded (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Lec 25 26_27

  • 1. Sequential circuit design 1 Sequential circuit design • Now let’s reverse the process: In sequential circuit design, we turn some description into a working circuit. – We first make a state table or diagram to express the computation. – Then we can turn that table or diagram into a sequential circuit.
  • 2. Sequential circuit design 2 Sequence recognizers • A sequence recognizer is a special kind of sequential circuit that looks for a special bit pattern in some input. • The recognizer circuit has only one input, X. – One bit of input is supplied on every clock cycle. For example, it would take 20 cycles to scan a 20-bit input. – This is an easy way to permit arbitrarily long input sequences. • There is one output, Z, which is 1 when the desired pattern is found. • Our example will detect the bit pattern “1001”: Inputs: 1 1 1 0 01 1 0 1 00 1 00 1 1 0 … Outputs: 0 00 0 01 00 0 00 1 00 1 0 0 … Here, one input and one output bit appear every clock cycle. • This requires a sequential circuit because the circuit has to “remember” the inputs from previous clock cycles, in order to determine whether or not a match was found.
  • 3. Sequential circuit design 3 A basic state diagram • What state do we need for the sequence recognizer? – We have to “remember” inputs from previous clock cycles. – For example, if the previous three inputs were 100 and the current input is 1, then the output should be 1. – In general, we will have to remember occurrences of parts of the desired pattern—in this case, 1, 10, and 100. • We’ll start with a basic state diagram (edges are labeled input/output): A B C D 1/0 0/0 0/0 State Meaning A None of the desired pattern (1001) has been input yet. B We’ve already seen the first bit (1) of the desired pattern. C We’ve already seen the first two bits (10) of the desired pattern. D We’ve already seen the first three bits (100) of the desired pattern.
  • 4. Sequential circuit design 4 Step 1: Making a state table • The first thing you have to figure out is precisely how the use of state will help you solve the given problem. – Make a state table based on the problem statement. The table should show the present states, inputs, next states and outputs. – Sometimes it is easier to first find a state diagram and then convert that to a table. • This is usually the most difficult step. Once you have the state table, the rest of the design procedure is the same for all sequential circuits. • Sequence recognizers are especially hard! They’re the hardest example we’ll see in this class, so if you understand this you’re in good shape.
  • 5. Sequential circuit design 5 A basic state diagram • What state do we need for the sequence recognizer? – We have to “remember” inputs from previous clock cycles. – For example, if the previous three inputs were 100 and the current input is 1, then the output should be 1. – In general, we will have to remember occurrences of parts of the desired pattern—in this case, 1, 10, and 100. • We’ll start with a basic state diagram: A B C D 1/0 0/0 0/0 State Meaning A None of the desired pattern (1001) has been input yet. B We’ve already seen the first bit (1) of the desired pattern. C We’ve already seen the first two bits (10) of the desired pattern. D We’ve already seen the first three bits (100) of the desired pattern.
  • 6. Sequential circuit design 6 Overlapping occurrences of the pattern • What happens if we’re in state D (the last three inputs were 100), and the current input is 1? – The output should be a 1, because we’ve found the desired pattern. – But this last 1 could also be the start of another occurrence of the pattern! For example, 1001001 contains two occurrences of 1001. – To detect overlapping occurrences of the pattern, the next state should be B. A B C D 1/0 0/0 0/0 1/1 State Meaning A None of the desired pattern (1001) has been input yet. B We’ve already seen the first bit (1) of the desired pattern. C We’ve already seen the first two bits (10) of the desired pattern. D We’ve already seen the first three bits (100) of the desired pattern.
  • 7. Sequential circuit design 7 Filling in the other arrows • Remember that we need two outgoing arrows for each node, to account for the possibilities of X=0 and X=1. • The remaining arrows we need are shown in blue. They also allow for the correct detection of overlapping occurrences of 1001. A B C D 1/0 0/0 0/0 1/1 0/0 0/0 1/0 1/0 State Meaning A None of the desired pattern (1001) has been input yet. B We’ve already seen the first bit (1) of the desired pattern. C We’ve already seen the first two bits (10) of the desired pattern. D We’ve already seen the first three bits (100) of the desired pattern.
  • 8. Sequential circuit design 8 Finally, making the state table A B C D 1/0 0/0 0/0 1/1 0/0 0/0 1/0 1/0 Present State Input Next State Output A 0 A 0 A 1 B 0 B 0 C 0 B 1 B 0 C 0 D 0 C 1 B 0 D 0 A 0 D 1 B 1 input/outputpresent state next state Remember how the state diagram arrows correspond to rows of the state table:
  • 9. Sequential circuit design 9 Sequential circuit design procedure Step 1: Make a state table based on the problem statement. The table should show the present states, inputs, next states and outputs. (It may be easier to find a state diagram first, and then convert that to a table.) Step 2: Assign binary codes to the states in the state table, if you haven’t already. If you have n states, your binary codes will have at least log2 n digits, and your circuit will have at least log2 n flip-flops. Step 3: For each flip-flop and each row of your state table, find the flip- flop input values that are needed to generate the next state from the present state. You can use flip-flop excitation tables here. Step 4: Find simplified equations for the flip-flop inputs and the outputs. Step 5: Build the circuit!
  • 10. Sequential circuit design 10 Present State Input Next State Output A 0 A 0 A 1 B 0 B 0 C 0 B 1 B 0 C 0 D 0 C 1 B 0 D 0 A 0 D 1 B 1 Step 2: Assigning binary codes to states Present State Input Next State Output Q1 Q0 X Q1 Q0 Z 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 0 1 0 1 0 0 1 1 0 1 0 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 1 • We have four states ABCD, so we need at least two flip-flops Q1Q0. • The easiest thing to do is represent state A with Q1Q0 = 00, B with 01, C with 10, and D with 11. • The state assignment can have a big impact on circuit complexity, but we won’t worry about that too much in this class.
  • 11. Sequential circuit design 11 Step 3: Finding flip-flop input values Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 0 1 0 1 0 0 1 1 0 1 0 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 1 • Next we have to figure out how to actually make the flip-flops change from their present state into the desired next state. • This depends on what kind of flip-flops you use! • We’ll use two JKs. For each flip-flip Qi, look at its present and next states, and determine what the inputs Ji and Ki should be in order to make that state change.
  • 12. Sequential circuit design 12 Finding JK flip-flop input values • For JK flip-flops, this is a little tricky. Recall the characteristic table: • If the present state of a JK flip-flop is 0 and we want the next state to be 1, then we have two choices for the JK inputs: – We can use JK=10, to explicitly set the flip-flop’s next state to 1. – We can also use JK=11, to complement the current state 0. • So to change from 0 to 1, we must set J=1, but K could be either 0 or 1. • Similarly, the other possible state transitions can all be done in two different ways as well. J K Q(t+1) Operation 0 0 Q(t) No change 0 1 0 Reset 1 0 1 Set 1 1 Q’(t) Complement
  • 13. Sequential circuit design 13 JK excitation table • An excitation table shows what flip-flop inputs are required in order to make a desired state change. • This is the same information that’s given in the characteristic table, but presented “backwards.” J K Q(t+1) Operation 0 0 Q(t) No change 0 1 0 Reset 1 0 1 Set 1 1 Q’(t) Complement Q(t) Q(t+1) J K Operation 0 0 0 x No change/reset 0 1 1 x Set/complement 1 0 x 1 Reset/complement 1 1 x 0 No change/set
  • 14. Sequential circuit design 14 Excitation tables for all flip-flops Q(t) Q(t+1) J K Operation 0 0 0 x No change/reset 0 1 1 x Set/complement 1 0 x 1 Reset/complement 1 1 x 0 No change/set Q(t) Q(t+1) D Operation 0 0 0 Reset 0 1 1 Set 1 0 0 Reset 1 1 1 Set Q(t) Q(t+1) T Operation 0 0 0 No change 0 1 1 Complement 1 0 1 Complement 1 1 0 No change
  • 15. Sequential circuit design 15 Back to the example Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 0 1 0 1 0 0 1 1 0 1 0 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 1 • We can now use the JK excitation table on the right to find the correct values for each flip-flop’s inputs, based on its present and next states. Q(t) Q(t+1) J K 0 0 0 x 0 1 1 x 1 0 x 1 1 1 x 0
  • 16. Sequential circuit design 16 Back to the example Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z 0 0 0 0 0 0 x 0 x 0 0 0 1 0 1 0 x 1 x 0 0 1 0 1 0 1 x x 1 0 0 1 1 0 1 0 x x 0 0 1 0 0 1 1 x 0 1 x 0 1 0 1 0 1 x 1 1 x 0 1 1 0 0 0 x 1 x 1 0 1 1 1 0 1 x 1 x 0 1 • We can now use the JK excitation table on the right to find the correct values for each flip-flop’s inputs, based on its present and next states. Q(t) Q(t+1) J K 0 0 0 x 0 1 1 x 1 0 x 1 1 1 x 0
  • 17. Sequential circuit design 17 • Now you can make K-maps and find equations for each of the four flip- flop inputs, as well as for the output Z. • These equations are in terms of the present state and the inputs. • The advantage of using JK flip-flops is that there are many don’t care conditions, which can result in simpler MSP equations. J1 = X’ Q0 K1 = X + Q0 J0 = X + Q1 K0 = X’ Z = Q1Q0X Step 4: Find equations for the FF inputs and output Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 J1 K1 J0 K0 Z 0 0 0 0 0 0 x 0 x 0 0 0 1 0 1 0 x 1 x 0 0 1 0 1 0 1 x x 1 0 0 1 1 0 1 0 x x 0 0 1 0 0 1 1 x 0 1 x 0 1 0 1 0 1 x 1 1 x 0 1 1 0 0 0 x 1 x 1 0 1 1 1 0 1 x 1 x 0 1
  • 18. Sequential circuit design 18 Step 5: Build the circuit • Lastly, we use these simplified equations to build the completed circuit. J1 = X’ Q0 K1 = X + Q0 J0 = X + Q1 K0 = X’ Z = Q1Q0X
  • 19. Sequential circuit design 19 Step 5: Build the circuit • Lastly, we use these simplified equations to build the completed circuit. J1 = X’ Q0 K1 = X + Q0 J0 = X + Q1 K0 = X’ Z = Q1Q0X
  • 20. Sequential circuit design 20 Timing diagram • Here is one example timing diagram for our sequence detector. – The flip-flops Q1Q0 start in the initial state, 00. – On the first three positive clock edges, X is 1, 0, and 0. These inputs cause Q1Q0 to change, so after the third edge Q1Q0 = 11. – Then when X=1, Z becomes 1 also, meaning that 1001 was found. • The output Z does not have to change at positive clock edges. Instead, it may change whenever X changes, since Z = Q1Q0X. CLK Q1 Q0 X Z 1 2 3 4
  • 21. Sequential circuit design 21 Building the same circuit with D flip-flops • What if you want to build the circuit using D flip-flops instead? • We already have the state table and state assignments, so we can just start from Step 3, finding the flip-flop input values. • D flip-flops have only one input, so our table only needs two columns for D1 and D0. Present State Input Next State Flip-flop inputs Output Q1 Q0 X Q1 Q0 D1 D0 Z 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 0 1 0 1 0 0 1 1 0 1 0 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 1
  • 22. Sequential circuit design 22 D flip-flop input values (Step 3) • The D excitation table is pretty boring; set the D input to whatever the next state should be. • You don’t even need to show separate columns for D1 and D0; you can just use the Next State columns. Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 D1 D0 Z 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 1 0 1 0 0 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 0 1 1 Q(t) Q(t+1) D Operation 0 0 0 Reset 0 1 1 Set 1 0 0 Reset 1 1 1 Set
  • 23. Sequential circuit design 23 Finding equations (Step 4) • You can do K-maps again, to find: D1 = Q1 Q0’ X’ + Q1’ Q0 X’ D0 = X + Q1 Q0’ Z = Q1 Q0 X Present State Input Next State Flip flop inputs Output Q1 Q0 X Q1 Q0 D1 D0 Z 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 1 0 1 0 0 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 1 1 1 0 1 0 1 1
  • 24. Sequential circuit design 24 Building the circuit (Step 5) D1 = Q1 Q0’ X’ + Q1’ Q0 X’ D0 = X + Q1 Q0’
  • 25. Sequential circuit design 25 Building the circuit (Step 5)
  • 26. Sequential circuit design 26 Flip-flop comparison JK flip-flops are good because there are many don’t care values in the flip-flop inputs, which can lead to a simpler circuit. D flip-flops have the advantage that you don’t have to set up flip-flop inputs at all, since Q(t+1) = D. However, the D input equations are usually more complex than JK input equations In practice, D flip-flops are used more often. – There is only one input for each flip-flop, not two. – There are no excitation tables to worry about. – D flip-flops can be implemented with slightly less hardware than JK flip-flops.
  • 27. Sequential circuit design 27 An Aside On State Encoding • You do not have to use the most compact encoding of states possible • Here is another possibility: suppose you have four states A, B, C, D – Create one flip flop for each of A, B, C, D – Feed the Set and Reset lines of these flip-flops based on current state and inputs – This uses more flip-flops (4 instead of the minimum 2) but may result in a much simpler circuit overall – The encoding and decoding of states is entirely artificial; it depends completely on the choice of state encodings. A little thinking about the circuit may lead you to a state encoding that simplifies the circuit a lot.
  • 28. Sequential circuit design 28 Summary • The basic sequential circuit design procedure: – Make a state table and, if desired, a state diagram. This step is usually the hardest. – Assign binary codes to the states if you didn’t already. – Use the present states, next states, and flip-flop excitation tables to find the flip-flop input values. – Write simplified equations for the flip-flop inputs and outputs and build the circuit. • Next, we’ll look at common examples of sequential circuits, including different types of counters.