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

Remove g_soft, because the true distinction is made via g_nof_gx which needs 16 for soft XAUI.

parent 6056f0a3
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,6 @@ USE technology_lib.technology_pkg.ALL;
ENTITY ip_stratixiv_gxb_reconfig_v111 IS
GENERIC (
g_soft : BOOLEAN := FALSE;
g_nof_gx : NATURAL;
g_fromgxb_bus_w : NATURAL := 17;
g_togxb_bus_w : NATURAL := 4
......@@ -46,7 +45,7 @@ END ip_stratixiv_gxb_reconfig_v111;
ARCHITECTURE str OF ip_stratixiv_gxb_reconfig_v111 IS
BEGIN
gen_gxb_reconfig_4 : IF g_nof_gx <= 4 AND g_soft = FALSE GENERATE
gen_gxb_reconfig_4 : IF g_nof_gx <= 4 GENERATE
u_gxb_reconfig_4 : ENTITY work.ip_stratixiv_gxb_reconfig_v111_4
PORT MAP (
reconfig_clk => reconfig_clk,
......@@ -56,7 +55,7 @@ BEGIN
);
END GENERATE;
gen_gxb_reconfig_16 : IF g_nof_gx > 12 AND g_nof_gx <= 16 AND g_soft = TRUE GENERATE
gen_gxb_reconfig_16 : IF g_nof_gx > 12 AND g_nof_gx <= 16 GENERATE
u_gxb_reconfig_16 : ENTITY work.ip_stratixiv_gxb_reconfig_v111_16
PORT MAP (
reconfig_clk => reconfig_clk,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment