Full Adder VHDL Code Using Data Flow Modeling
Full Adder VHDL Code Using Data Flow Modeling
Library declaration
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
--------------------------------------------
entity full_adder is
Port ( a, b, c: in STD_LOGIC;
sum ,carry: out STD_LOGIC);
end full_adder;
---------------------------------------------
Entity declaration.
a, b, c :- input port bits (bits to be
added)
Sum, carry: - output port bits.
RTL VIEW:-
INFOOP2R.WIX.COM/OP2R
Concurrent statements.
These are the circuit expressions which
are formed by k-map or Boolean
function.