Skip to content
Snippets Groups Projects
Commit 0c9f09c6 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Added comment that c_fft_pipeline is defined in rTwoSDF_lib.rTwoSDFPkg.

parent dfa7df1d
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ entity fft_r2_bf_par is
g_element : natural := 1;
g_scale_enable : boolean := TRUE;
-- internal pipeline settings
g_pipeline : t_fft_pipeline := c_fft_pipeline
g_pipeline : t_fft_pipeline := c_fft_pipeline -- defined in rTwoSDF_lib.rTwoSDFPkg
);
port (
clk : in std_logic;
......
......@@ -46,7 +46,7 @@ use work.fft_pkg.all;
entity fft_r2_par is
generic (
g_fft : t_fft := c_fft; -- generics for the FFT
g_pipeline : t_fft_pipeline := c_fft_pipeline -- generics for pipelining
g_pipeline : t_fft_pipeline := c_fft_pipeline -- generics for pipelining, defined in rTwoSDF_lib.rTwoSDFPkg
);
port (
clk : in std_logic;
......
......@@ -60,7 +60,7 @@ use work.fft_pkg.all;
entity fft_r2_pipe is
generic (
g_fft : t_fft := c_fft; -- generics for the FFT
g_pipeline : t_fft_pipeline := c_fft_pipeline; -- generics for pipelining in each stage
g_pipeline : t_fft_pipeline := c_fft_pipeline; -- generics for pipelining in each stage, defined in rTwoSDF_lib.rTwoSDFPkg
g_dont_flip_channels : boolean := false -- generic to prevent re-ordering of the channels
);
port (
......
......@@ -76,8 +76,8 @@ use work.fft_pkg.all;
entity fft_r2_wide is
generic (
g_fft : t_fft := c_fft; -- generics for the FFT
g_pft_pipeline : t_fft_pipeline := c_fft_pipeline; -- For the pipelined part
g_fft_pipeline : t_fft_pipeline := c_fft_pipeline -- For the parallel part
g_pft_pipeline : t_fft_pipeline := c_fft_pipeline; -- For the pipelined part, from rTwoSDF_lib.rTwoSDFPkg
g_fft_pipeline : t_fft_pipeline := c_fft_pipeline -- For the parallel part, from rTwoSDF_lib.rTwoSDFPkg
);
port (
clk : in std_logic;
......
......@@ -45,8 +45,8 @@ use work.fft_pkg.all;
entity fft_wide_unit is
generic (
g_fft : t_fft := c_fft; -- generics for the FFT
g_pft_pipeline : t_fft_pipeline := c_fft_pipeline; -- For the pipelined part
g_fft_pipeline : t_fft_pipeline := c_fft_pipeline -- For the parallel part
g_pft_pipeline : t_fft_pipeline := c_fft_pipeline; -- For the pipelined part, defined in rTwoSDF_lib.rTwoSDFPkg
g_fft_pipeline : t_fft_pipeline := c_fft_pipeline -- For the parallel part, defined in rTwoSDF_lib.rTwoSDFPkg
);
port (
dp_rst : in std_logic := '0';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment