Fa Structure Modelling
Fa Structure Modelling
entity bejoy_fa is port(In1,In2,c_in : in std_logic; sum, c_out : out std_logic); end bejoy_fa;
component half_adder port(a,b : in std_logic; sum, carry : out std_logic); end component;
begin
end arc;
entity half_adder is
end half_adder;
begin
end arc;
entity or_2 is
end or_2;
begin
c<= a or b;
end arc;