Digital LogicTU Board 2081
Design a 2 bit asynchronous binary counter using T flip flop. Draw its timing diagram.
5Answer
An asynchronous (ripple) counter is one where only the first flip-flop gets the external clock; each later flip-flop is clocked by the output of the one before it.
Design
- Use two T flip-flops, FF₀ (LSB, Q₀) and FF₁ (MSB, Q₁).
- Connect T = 1 on both, so each flip-flop toggles on every active clock edge.
- The external clock drives FF₀. Q₀ drives the clock of FF₁.
- With negative-edge-triggered flip-flops, FF₁ toggles every time Q₀ goes from 1 to 0.
1 1
| |
+-T-+ +-T-+
CLK --|> |--Q0--|> |--Q1
+---+ +---+
FF0 FF1
Count sequence
| Clock pulse | Q₁ | Q₀ | Count |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 1 | 0 | 1 | 1 |
| 2 | 1 | 0 | 2 |
| 3 | 1 | 1 | 3 |
| 4 | 0 | 0 | 0 (repeats) |
Timing diagram (negative-edge triggered)
CLK _|‾|_|‾|_|‾|_|‾|_|‾|_
Q0 ___|‾‾‾|___|‾‾‾|___
Q1 _______|‾‾‾‾‾‾‾|___
Q₀ changes on every falling edge of CLK, so its frequency is half the clock frequency. Q₁ changes on every falling edge of Q₀, so its frequency is a quarter of the clock frequency. It counts 0 → 1 → 2 → 3 → 0 (mod-4 counter). The small delay of each flip-flop adds up down the chain, which is why it is called a ripple counter.
Discussion
Loading…
More Digital Logic questions
Differentiate between synchronous and asynchronous counter. Design a 3 bit synchronous binary counter using T Flip Flop. Draw its timing diagram.TU Board 208110Explain De Morgan's Law. Simplify the Boolean function F(P,Q,R,S) =Π(0,1,4,5,11,14,15) and d(P,Q,R,S) =Σ(2,3,7,8,9,13) using K Map in both SOP and POS form.TU Board 208110Explain design procedure of combinatorial circuits. Design a combinatorial circuit with three inputs x, y, and z, and three outputs A, B, and C. When the…TU Board 208110Given A=46 and B=35 represent them in binary and perform A B using 1's complement method.TU Board 20815What is Multiplexer. Design 8 to 1 Multiplexer with low level Multiplexers.TU Board 20815Write about D flip flop with necessary circuit, block diagram, characteristic table and equation.TU Board 20815