Questions tagged [carry-look-ahead]
30 questions
5
votes
3 answers
How to determine if a Carry Look Ahead Adder Overflows
I am implementing a 32 bit CLA Adder like how a 16 bit adder is implemented in Wikipedia
Problem is how do I determine if the block overflows? I will need the carry into bit 32 (which is now in the last 4 bit CLA Adder) and XOR with carry out of…

Jiew Meng
- 569
- 2
- 12
- 21
4
votes
2 answers
Carry Look Ahead adder propagation delay calculation
I'm studying Digital Design and Computer Architecture book, I'm stuck in the section of the carry-lookahead adder because there's something that I don't fully understand about the propagation delay of an N-bit carry-lookahead adder.
The book…

Tortellini Teusday
- 154
- 1
- 6
3
votes
1 answer
Carry-lookahead adder - what happens to carry bit?
I recreated and trying to understand for the sake of fun and learning the circuit that can be seen here on second page: Link . This is basically a 4-bit carry-lookahead adder, but there is one thing that I cannot understand. If there will be 1111…

Łukasz Zaroda
- 167
- 5
3
votes
2 answers
Why does design_vision compile my carry-lookahead adder into a ripple-carry adder?
At my school we have Synopsis "design_vision" in the computer labs. I don't know how to use any of the features so to me it's just a schematic-drawing tool.
Out of curiosity, I hand-coded in Verilog an 8-bit carry-lookahead adder, and then asked…

Owen
- 737
- 4
- 6
3
votes
2 answers
Delay in 4-bit ripple carry adder?
In pic below I have drawn a full adder and mentioned their delays, please help me to verify my answer.

Vikrant Singh
- 133
- 1
- 1
- 7
2
votes
0 answers
How to compare carry-lookahead and ripple-carry adders?
I am a bit stuck with the concept of carry-lookahead adder so I'd like to compare it with another concept I'm more familiar with: the ripple-carry adder. I'm trying to make some basic math comparison between the two ones.
Assuming every gate can…

Giuseppe Crinò
- 157
- 7
2
votes
1 answer
How to calculate Gate Delays in normal Adders and Carry Look Ahead Adders
In my textbook the gate delays for the n-bit ripple adder is given as \$ 2n \$ for \$c_n\$ bits and \$ 2n-1 \$ for \$ s_n-1 \$ for the circuit as shown below:
But, for a 4-bit Carry Look Ahead Adder have 3 gate delays for all carry bits and 4 gate…

Gowtham
- 179
- 2
- 2
- 8
2
votes
1 answer
Designing a Carry lookahead unit using EEPROMs, creates oscillator
I have read something about CLUs (Carry Lookahead Units) and want to build one. I have settled on a design using EEPROMS as adders and CLU. In the picture below, you can see a schematic CLU implementation. In my version, I think the best would be to…

Kralik_011
- 307
- 2
- 9
2
votes
1 answer
Carry look ahead adder/subtractor & Overflow, Negative Bits
I am suppose to design a carry look ahead adder with ...
Input flag bits
E (Enable)
S (Subtraction)
Output
The usual sum & carry out
O (Overflow)
N (Negative)
Z (Zero)
But the question is vague ... It says if
E = 0, S = 1, do subtraction
E…

Jiew Meng
- 569
- 2
- 12
- 21
2
votes
1 answer
How does this carry look ahead block work?
This is a carry look ahead adder :
This adder is known to calculate one or more carry bits before the sum. From the figure we see that carry look ahead block calculates the carry C1,C2,C3,C4 . But i don't understand how does it do that ? How does…

Suhail Gupta
- 278
- 1
- 5
- 14
2
votes
1 answer
How to find gate delay for 4-bit look-ahead carry adder?
How can I find Gate Delay for bit 1 of the sum by a 4-bit look-ahead carry adder?

Rohit Gulabwani
- 21
- 1
- 3
2
votes
1 answer
How do carry save adders work?
I thought I understood the concept but wikipedia has confused me. There are two outputs because one's for a partial sum and one's the carry bits. But why must it be used to "compute the sum of three or more n-bit numbers" why can't it compute 2…

Celeritas
- 161
- 2
- 5
1
vote
0 answers
Carry-select adder - Time calculation
a) Suppose a binary pick-up adder (carry-select) of 32-bits, comprising 4 sub-sections adders spreading carry of range 8 bits. Show the values obtained internally in the circuit of this adder to perform the addition of the numbers…

Mary Star
- 11
- 3
1
vote
1 answer
Carry Look ahead adder Propagate & Generate Outputs
I am taking comp architecture course, and we are given a task to write 32 bit look-ahead adder in VHDL. Instructor provided the instruction and diagram.
While reading, Wikipedia article, I stumbled on the following diagram.
Since C4 is already…

newprint
- 217
- 4
- 8
1
vote
1 answer
Time complexity of carry look ahead adder
How is the time complexity of carry look ahead adder O(log n)? Can you explain in terms of gate delays?

Arteezy
- 35
- 1
- 4