Lec 04 - ALU
Ripple Carry Adder
The classic ripple carry adder is similar to as follows:

In a ripple carry adder, the delay is computed as follows:
where tcarry is the time to generate the Cout in a full adder and tsum is the time to generate the S bit in the fuller adder.
Inversion Property of Full Adder
The inversion property of the full adder can be seen as the two circuit below have the same functionality.

This property can be used to optimize the RCA. Bet before that, a small variant of the inversion property can be seen as follows:

Thus, the RCA can be optimized to as follows:

This design will save N inverters where is the the number of bits for the two operands.
Carry Bypass Adder
The carry bypass adder is shown as follows:

Its worst case delay can be computed using the following formula:
: The initialization time. Before any addition happens, the circuit must calculate the Propagate () and Generate () signals for every bit position. This happens in parallel.
: The delay for the carry to ripple through the first block. The carry-in must ripple all the way through the first bits before it hits the first bypass mux.
: The delay for the carry to "skip" over the middle blocks.
is the total number of blocks.
We subtract 1 because we don't skip the first block (we ripple through it).
The signal travels through the bypass multiplexers of all these intermediate blocks.
: The delay for the carry to ripple through the last block. Once the carry arrives at the start of the final block, it must ripple through the remaining bits to reach the final Most Significant Bit (MSB). It is because the final bit's sum logic is accounted for in .
: The final delay to generate the actual Sum output at the very last bit position once the valid carry has arrived.
Carry Select Adder
Linear Carry Select

In linear carry select adder, the worst case delay can be calculated as follows:
: The fixed overhead time to set up the circuit (Generate/Propagate signals).
: The time it takes for the ripple carry chains in the first block to resolve a valid result. This is the "start" of the critical path.
: The propagation delay through the chain of multiplexers.
Since there are bits total and bits per stage, there are total stages (blocks).
The carry signal must ripple through the selection multiplexer of each stage.
: The time to generate the final Sum output after the last multiplexer has settled.
Square-Root Carry Select

Similar to the linear carry select, the worst case delay for the square root carry select adder can be calculated as follows:
Last updated