working FIFO and TPSRAM without packet flter
This commit is contained in:
47
synthesis/syntmp/vhdlsyn2479a29252_top_wrapper.vhd
Normal file
47
synthesis/syntmp/vhdlsyn2479a29252_top_wrapper.vhd
Normal file
@@ -0,0 +1,47 @@
|
||||
--
|
||||
-- Synopsys
|
||||
-- Vhdl wrapper for top level design, written on Wed Apr 15 19:34:19 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(14 downto 0);
|
||||
B : in std_logic_vector(14 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 (14 downto 0);
|
||||
B : in std_logic_vector (14 downto 0)
|
||||
);
|
||||
end component;
|
||||
|
||||
signal tmp_EQ : std_logic;
|
||||
signal tmp_A : std_logic_vector (14 downto 0);
|
||||
signal tmp_B : std_logic_vector (14 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;
|
||||
Reference in New Issue
Block a user