|
x | in std_logic_vector ( width - 1 downto 0 ) |
| First input operand of the full adder array.
|
y | in std_logic_vector ( width - 1 downto 0 ) |
| Second input operand of the full adder.
|
z | in std_logic_vector ( width - 1 downto 0 ) |
| Third input operand of the full adder.
|
s | out std_logic_vector ( width - 1 downto 0 ) |
| Sum output of the full adder array.
|
c | out std_logic_vector ( width - 1 downto 0 ) |
| Carry output vector of the full adder.
|
Full adder array.
A bench of full adders. The carry output features one carry output bit per full adder, therefore is not aligned with the sum. Instead, each carry bit is aligned with the full adder which generates it. This particular alignment allows for the addition of the carry bit with the output sum, as performed in the Carry-Save adder