blob: 71ef1cce41444201e1533a9a724332e053c5defd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity half_adder is
port (
i_bit0 : in std_logic_vector(0 downto 0);
i_bit1 : in std_logic_vector(0 downto 0);
o_sum : out std_logic_vector(0 downto 0);
o_carry : out std_logic_vector(0 downto 0)
);
end half_adder;
architecture rtl of half_adder is
begin
o_sum <= i_bit0 xor i_bit1;
o_carry <= i_bit0 and i_bit1;
end rtl;
|