Difference between revisions of "Adder"
(A start..) |
m (+link) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | An '''adder''' is a collection of [[hardware]] (now [[gate]]s) which, as the name implies, can add together the | + | An '''adder''' is a collection of [[hardware]] (now [[gate]]s) which, as the name implies, can add together the numbers on its two inputs. |
− | The primary limit on the speed of | + | The primary limit on the speed of a [[parallel]] adder is the 'ripple [[propagation delay|propagation]]' of carries, since [[bit]] n cannot be computed until it is known whether or not there is a carry out of bit n-1. In a simple implementation, this effectively sequentially stacks the delays across the entire adder (consider the case of the case of the addition of 01 to 077777). |
− | A number of 'carry lookahead' mechanisms have been devised to try and bypass the propagation delays inherent in sequential carries. | + | A number of 'carry lookahead' mechanisms have been devised to try and bypass the propagation delays inherent in sequential carries. (This has been the case since the days of Babbage, whose machines implemented clever carry mechanisms.) |
− | {{stub}} | + | (The adders in [[serial computer]]s do not face this issue, of course.) |
+ | |||
+ | {{semi-stub}} | ||
+ | |||
+ | [[Category:Hardware Basics]] |
Latest revision as of 09:18, 8 August 2021
An adder is a collection of hardware (now gates) which, as the name implies, can add together the numbers on its two inputs.
The primary limit on the speed of a parallel adder is the 'ripple propagation' of carries, since bit n cannot be computed until it is known whether or not there is a carry out of bit n-1. In a simple implementation, this effectively sequentially stacks the delays across the entire adder (consider the case of the case of the addition of 01 to 077777).
A number of 'carry lookahead' mechanisms have been devised to try and bypass the propagation delays inherent in sequential carries. (This has been the case since the days of Babbage, whose machines implemented clever carry mechanisms.)
(The adders in serial computers do not face this issue, of course.)