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

Corrected port names.

parent 2eb8853e
No related branches found
No related tags found
No related merge requests found
...@@ -45,41 +45,41 @@ ARCHITECTURE str OF ip_stratixiv_gxb_reconfig IS ...@@ -45,41 +45,41 @@ ARCHITECTURE str OF ip_stratixiv_gxb_reconfig IS
BEGIN BEGIN
gen_gxb_reconfig_2 : IF g_nof_gx = 2 GENERATE gen_gxb_reconfig_2 : IF g_nof_gx = 2 GENERATE
u_gxb_reconfig_2 : ENTITY ip_stratixiv_lib.ip_stratixiv_gxb_reconfig_2 u_gxb_reconfig_2 : ENTITY work.ip_stratixiv_gxb_reconfig_2
PORT MAP ( PORT MAP (
reconfig_clk => cal_rec_clk, reconfig_clk => reconfig_clk,
reconfig_fromgxb => reconfig_fromgxb, reconfig_fromgxb => reconfig_fromgxb,
busy => rec_busy, busy => busy,
reconfig_togxb => reconfig_togxb reconfig_togxb => reconfig_togxb
); );
END GENERATE; END GENERATE;
gen_gxb_reconfig_4 : IF g_nof_gx = 4 GENERATE gen_gxb_reconfig_4 : IF g_nof_gx = 4 GENERATE
u_gxb_reconfig_4 : ENTITY ip_stratixiv_lib.ip_stratixiv_gxb_reconfig_4 u_gxb_reconfig_4 : ENTITY work.ip_stratixiv_gxb_reconfig_4
PORT MAP ( PORT MAP (
reconfig_clk => cal_rec_clk, reconfig_clk => reconfig_clk,
reconfig_fromgxb => reconfig_fromgxb, reconfig_fromgxb => reconfig_fromgxb,
busy => rec_busy, busy => busy,
reconfig_togxb => reconfig_togxb reconfig_togxb => reconfig_togxb
); );
END GENERATE; END GENERATE;
gen_gxb_reconfig_8 : IF g_nof_gx = 8 GENERATE gen_gxb_reconfig_8 : IF g_nof_gx = 8 GENERATE
u_gxb_reconfig_8 : ENTITY ip_stratixiv_lib.ip_stratixiv_gxb_reconfig_8 u_gxb_reconfig_8 : ENTITY work.ip_stratixiv_gxb_reconfig_8
PORT MAP ( PORT MAP (
reconfig_clk => cal_rec_clk, reconfig_clk => reconfig_clk,
reconfig_fromgxb => reconfig_fromgxb, reconfig_fromgxb => reconfig_fromgxb,
busy => rec_busy, busy => busy,
reconfig_togxb => reconfig_togxb reconfig_togxb => reconfig_togxb
); );
END GENERATE; END GENERATE;
gen_gxb_reconfig_12 : IF g_nof_gx = 12 GENERATE gen_gxb_reconfig_12 : IF g_nof_gx = 12 GENERATE
u_gxb_reconfig_12 : ENTITY ip_stratixiv_lib.ip_stratixiv_gxb_reconfig_12 u_gxb_reconfig_12 : ENTITY work.ip_stratixiv_gxb_reconfig_12
PORT MAP ( PORT MAP (
reconfig_clk => cal_rec_clk, reconfig_clk => reconfig_clk,
reconfig_fromgxb => reconfig_fromgxb, reconfig_fromgxb => reconfig_fromgxb,
busy => rec_busy, busy => busy,
reconfig_togxb => reconfig_togxb reconfig_togxb => reconfig_togxb
); );
END GENERATE; END GENERATE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment