0
1.1kviews
Entity declaration in VHDL for NOR gate.
written 5.8 years ago by | modified 3.2 years ago by |
a] Entity declaration in VHDL for NOR gate.
NOR gate
Library JEEE;
use JEEE, STD_LOGIC_1164.ALL;
entity nor-top is
Port (A . in STD_LOGIC; - - - - - NOR gate input
B : in STD_LOGIC; NOR gate input
Y : Out STD_LOGIC; ) NOR gate output
end _ nor_top;
b] BCD Addition:
ADD COMMENT
EDIT