Loading simulator…
Excitation Tables: An excitation table specifies the input conditions required to change a sequential circuit from the present state (Q_n) to the desired next state (Q_n+1).
JK Latch Excitation Table: The required J and K inputs for each state transition are given by the JK excitation table.
| Q_n | Q_n+1 | J | K |
|---|---|---|---|
| 0 | 0 | 0 | X |
| 0 | 1 | 1 | X |
| 1 | 0 | X | 1 |
| 1 | 1 | X | 0 |
Converting JK to T Latch: A T latch follows Q_n+1 = T ^ Q_n.
Hardware Implementation: Since J and K always have the same value as T, they are connected together to the T input. The latch therefore holds when T = 0 and toggles on each active enable when T = 1.