Skip to content
Snippets Groups Projects
Commit a340151f authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Fixed wrong generic name in comment.

parent ca4f1895
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
-- . See dp_counter_func. -- . See dp_counter_func.
-- . dp_counter_func contains only functional logic (no pipelining). -- . dp_counter_func contains only functional logic (no pipelining).
-- . This wrapper adds pipelining for the source side outputs (g_pipeline_src_out) -- . This wrapper adds pipelining for the source side outputs (g_pipeline_src_out)
-- and source side inputs (g_pipeline_snk_in). -- and source side inputs (g_pipeline_src_in).
LIBRARY IEEE,common_lib; LIBRARY IEEE,common_lib;
USE IEEE.std_logic_1164.ALL; USE IEEE.std_logic_1164.ALL;
...@@ -85,7 +85,7 @@ BEGIN ...@@ -85,7 +85,7 @@ BEGIN
); );
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- dp_pipeline -- dp_pipeline if g_pipeline_src_out > 0
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
gen_dp_pipeline : IF g_pipeline_src_out > 0 GENERATE gen_dp_pipeline : IF g_pipeline_src_out > 0 GENERATE
u_dp_pipeline_snk_in : ENTITY work.dp_pipeline u_dp_pipeline_snk_in : ENTITY work.dp_pipeline
...@@ -126,7 +126,7 @@ BEGIN ...@@ -126,7 +126,7 @@ BEGIN
END GENERATE; END GENERATE;
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- dp_pipeline_ready -- dp_pipeline_ready if g_pipeline_src_in > 0
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
gen_dp_pipeline_ready : IF g_pipeline_src_in > 0 GENERATE gen_dp_pipeline_ready : IF g_pipeline_src_in > 0 GENERATE
u_dp_pipeline_ready : ENTITY work.dp_pipeline_ready u_dp_pipeline_ready : ENTITY work.dp_pipeline_ready
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment