library ieee;
use ieee.std_logic_1164.all;
entity NotPort is
port(
A: in std_logic;
B: out std_logic
);
end NotPort;
architecture DataFlow of NotPort is
begin
B <= not A;
end DataFlow;
Labels
- group discussion (1)
library ieee;
use ieee.std_logic_1164.all;
entity NotPort is
port(
A: in std_logic;
B: out std_logic
);
end NotPort;
architecture DataFlow of NotPort is
begin
B <= not A;
end DataFlow;
Copyright 2010
LET US SHARE OUR KNOWLEDGE
*
:ANNAI GROUPS.
Contact : PRABHAKARAN
click here to view prabhakaran's profile
.