Half Subtractor VHDL Code Using Dataflow Modeling
Half Subtractor VHDL Code Using Dataflow Modeling
COM/OP2R
entity half_subtractor is Port ( a, b: in STD_LOGIC; diff ,borrow: out STD_LOGIC); end half_subtractor; --------------------------------------------architecture Behavioral of half_subtractor is begin ---------------------------------------------sum<= a xor b; carry<= ((not a) and b); ---------------------------------------------and Behavioral;
Entity declaration. a, b: - input port bits (bits to be added) Sum, carry: - output port bits
Concurrent statement of half adder circuit. These are the circuit expressions which are formed by k-map or Boolean function.
RTL VIEW:-
INFOOP2R.WIX.COM/OP2R