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

Corrected ip_stratixiv_gxb_reconfig_v111 component declaration.

parent 1a04be46
No related branches found
No related tags found
No related merge requests found
...@@ -192,16 +192,23 @@ PACKAGE tech_transceiver_component_pkg IS ...@@ -192,16 +192,23 @@ PACKAGE tech_transceiver_component_pkg IS
COMPONENT ip_stratixiv_gxb_reconfig_v111 IS COMPONENT ip_stratixiv_gxb_reconfig_v111 IS
GENERIC ( GENERIC (
g_soft : BOOLEAN := FALSE;
g_nof_gx : NATURAL; g_nof_gx : NATURAL;
g_fromgxb_bus_w : NATURAL := 17; g_fromgxb_bus_w : NATURAL := 17;
g_togxb_bus_w : NATURAL := 4 g_togxb_bus_w : NATURAL := 4
); );
PORT ( PORT (
reconfig_clk : IN STD_LOGIC; reconfig_clk : IN STD_LOGIC;
reconfig_fromgxb : IN STD_LOGIC_VECTOR(g_nof_gx*g_fromgxb_bus_w-1 DOWNTO 0); reconfig_fromgxb : IN STD_LOGIC_VECTOR(tech_ceil_div(g_nof_gx, 4)*g_fromgxb_bus_w-1 DOWNTO 0);
busy : OUT STD_LOGIC; busy : OUT STD_LOGIC;
reconfig_togxb : OUT STD_LOGIC_VECTOR(g_togxb_bus_w-1 DOWNTO 0) reconfig_togxb : OUT STD_LOGIC_VECTOR(g_togxb_bus_w-1 DOWNTO 0)
); );
END COMPONENT; END COMPONENT;
------------------------------------------------------------------------------
-- ip_arria10
------------------------------------------------------------------------------
END tech_transceiver_component_pkg; END tech_transceiver_component_pkg;
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