Introduction - If you have any usage issues, please Google them yourself
* FullAdder implementation in VHDL with respectives signals:
a, b : in std_logic_vector (7 downto 0)
soma : out std_logic_vector (7 downto 0)
ci : in std_logic
co : out std_logic
overflow : out std_logic
negativo : out std_logic
zero : out std_logic
* TestBench implementation for FullAdder.