-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfft_4096c_1i_core_ip_struct.vhd
42 lines (41 loc) · 1.31 KB
/
fft_4096c_1i_core_ip_struct.vhd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-- Generated from Simulink block
library IEEE;
use IEEE.std_logic_1164.all;
library xil_defaultlib;
use xil_defaultlib.conv_pkg.all;
entity fft_4096c_1i_core_ip_struct is
port (
pol_in : in std_logic_vector( 288-1 downto 0 );
shift : in std_logic_vector( 16-1 downto 0 );
sync : in std_logic_vector( 32-1 downto 0 );
clk_1 : in std_logic;
ce_1 : in std_logic;
pol_out : out std_logic_vector( 288-1 downto 0 );
overflow : out std_logic_vector( 4-1 downto 0 );
sync_out : out std_logic_vector( 1-1 downto 0 )
);
end fft_4096c_1i_core_ip_struct;
architecture structural of fft_4096c_1i_core_ip_struct is
component fft_4096c_1i_core_ip
port (
pol_in : in std_logic_vector( 288-1 downto 0 );
shift : in std_logic_vector( 16-1 downto 0 );
sync : in std_logic_vector( 32-1 downto 0 );
clk : in std_logic;
pol_out : out std_logic_vector( 288-1 downto 0 );
overflow : out std_logic_vector( 4-1 downto 0 );
sync_out : out std_logic_vector( 1-1 downto 0 )
);
end component;
begin
fft_4096c_1i_core_ip_inst : fft_4096c_1i_core_ip
port map (
pol_in => pol_in,
shift => shift ,
sync => sync ,
clk => clk_1 ,
pol_out => pol_out ,
overflow => overflow,
sync_out => sync_out
);
end structural;