Aller au contenu

Adder

Adder

Without Carry-out:

1
2
3
4
5
signal A : signed (3 downto 0);
signal B : signed (3 downto 0);
signal S : signed (3 downto 0);
--
S <= A + B ; -- no overflow management

With Carry-out:

1
2
3
4
5
signal A : signed (3 downto 0);
signal B : signed (3 downto 0);
signal S : signed (4 downto 0);
--
S <= resize(A, S'length) + resize(B, S'length); -- overflow managed

The size of the result of an addition of two operand is the size of the largest operand plus one.