working FIFO and TPSRAM without packet flter

This commit is contained in:
2026-04-15 23:54:00 +05:30
parent 77c69687d9
commit e4b91625ea
579 changed files with 1295759 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
--
-- Synopsys
-- Vhdl wrapper for top level design, written on Wed Apr 15 21:59:59 2026
--
library ieee;
use ieee.std_logic_1164.all;
library work;
use work.genpackage.all;
entity wrapper_for_top is
port (
EQ : out std_logic;
A : in std_logic_vector(15 downto 0);
B : in std_logic_vector(15 downto 0)
);
end wrapper_for_top;
architecture gen of wrapper_for_top is
component top
port (
EQ : out std_logic;
A : in std_logic_vector (15 downto 0);
B : in std_logic_vector (15 downto 0)
);
end component;
signal tmp_EQ : std_logic;
signal tmp_A : std_logic_vector (15 downto 0);
signal tmp_B : std_logic_vector (15 downto 0);
begin
EQ <= tmp_EQ;
tmp_A <= A;
tmp_B <= B;
u1: top port map (
EQ => tmp_EQ,
A => tmp_A,
B => tmp_B
);
end gen;