7,887 views

1 Answer

1 votes
1 votes

Lightbox

 

Using the state diagram, we can easily get the state table.

         Present State     Input         Next State          Flip Flop Input
$A$                         $B$             $X$ $A_{Next}$                  $B_{Next}$ $T_{A}$                   $T_{B}$
0                         0               0   0                           0 0                        0
0                         0      1   0                           1 0                        1
0                         1      0  1                            0 1                        1
0                         1      1  0                            1 0                        0
1                         0      0  1                            0 0                        0
1                         0      1  1                            1 0                        1
1                         1      0  1                            1 0                        0
1                         1      1  0                            0 1                        1

$K-Map$ for $T_{A}:$

$T_{A} = A'BX' + ABX$

 

$K-Map$ for $T_{B}:$

$T_{B} = A'BX' + B'X + AX$

edited by

Related questions

0 votes
0 votes
0 answers
2