Asynchronous Down Counter (original) (raw)

Last Updated : 23 Jul, 2025

Counters are sequential circuits used to count the clock pulses that occur at regular intervals. They are used to measure the time and frequency. They are of two types:

  1. Asynchronous counter
  2. Synchronous counter

In the asynchronous counter, an external clock pulse is provided for only the first flip flop, thereafter the output of the 1st FF acts as a clock pulse for the second FF and so on. In the case of synchronous FFs, all the flip flops are triggered simultaneously by an external clock pulse.

Asynchronous Counter

An asynchronous counter is also known as a ripple counter. It is a sequential circuit in which the flip-flops are not triggered simultaneously. Only the first flip-flop receives the external clock pulse directly and the output of each flip-flop serves as the clock input for the next one in the chain. As a result, the clock signals "ripple" through the flip-flops, causing a slight delay in the overall response. It can be categorized into two:

Read more about designing of asynchronous counter.

**3 Bit Asynchronous Down Counter

**Method 1

In this implementation, the clock pulse(of 50% duty cycle) is given to only the first FF. Thereafter, the output of the first FF is feed as a clock to second FF and the output of the second FF is feed as the clock for the third FF. But the complemented output is taken from each FF(i.e. same as Up counter but output states are complemented). Here QA is LSB and QC is MSB.

**State table

**Circuit Implementation of Method 1

CopyofTimingDiagramcontrolled5

Timing diagram for circuit

**Method 2

In this implementation, the clock pulse is given to only the first FF. Thereafter, the complemented output of the first FF(Q'A) is feed as a clock to the second FF and complemented output(i.e. Q'B) of the second FF is feed as a clock for the third FF. But the output(Q) is taken from each FF.

By both implementations, we can acquire the same counting states.

**Explanation

**Circuit Implementation of Method 2

Timing Diagram

Timing diagram for circuit

**Advantages of Asynchronous Counter

**Disadvantages of Asynchronous Counter