VHDL Not Port
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;
Massive listing of VHDL code used in FPGA's of the different FPGA manufacturers. (Xilinx, Actel , Altera,...). You can also download VHDL code of softcores on this blog.
0 Comments:
Post a Comment
<< Home