0
6.1kviews
Explain the Johnson's Counter. Design for initial state 0110. From initial state explain and draw all possible states.
1 Answer
1
308views

enter image description here

The schematic shows a cascaded arrangement of n flip-flops in which the output of the preceding flip-flop is fed as an input to the immediate next flip-flop. However it is to be noted that the complement output of the last flip-flop Q̅n is back-fed to the first flip-flop in the chain. This arrangement results in a closed loop due to which the bits within the counter continuously circulate within it. Further, the schematic shown in the figure is seen to comprise of n flip-flops due to which it is called n-bit Johnson counter. Further, the counter has preset (P) and clear (C) pins meant to initialize and reset the counter, respectively.

In Johnson counter, complement output of last flip-flop is used as a feed-back while in the ring counter, it is the non-complement one, due to which Johnson counter is also called twisted ring counter. This difference causes the Johnson counters to have different sequence of states in comparison with the ring counters. However the mode of data movement remains the same i.e. even here, the bits within the counter shift in their position by one bit position for each clock pulse, similar to that in the case of ring counter.

enter image description here

enter image description here

Table shows the movement of bits within a 3-bit Johnson counter from its initial state 000. From the table, it is evident that the same data pattern repeats after 6 clock cycles. This means that, in general, n bit Johnson counter has 2n distinct states after which the cycle repeats. As a result, we can consider n bit Johnson counter to be MOD 2n in-nature. The waveforms concerned with the 3-bit Johnson counter are shown by Figure.

Please log in to add an answer.