1
129kviews
Design mealy sequence detector to detect a sequence ----1010---- using D filpflop and logic
2 Answers
6
7.7kviews
  • A sequence detector is a sequential state machine. In a Mealy machine, output depends on the present state and the external input (x). Hence in the diagram, the output is written outside the states, along with inputs. The state diagram of a Mealy machine for a 1010 detector is:

enter image description here

  • The …

Create a free account to keep reading this post.

and 2 others joined a min ago.

if i design it using 5 states, is the method wrong in case of mealy FSM?


1
2.9kviews

for present state 11 ('S3') input X=1 changes it to next state 01 ('S1'). So there should be modification in excitation table in the last row in next state column.

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.