diff --git a/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig.vhd b/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig.vhd index 0f1f22840dcd4410b50694f84779db0c308dc5ed..7a32d00ad8f56d04a2076723bee8cb7692d6a019 100644 --- a/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig.vhd +++ b/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig.vhd @@ -45,41 +45,41 @@ ARCHITECTURE str OF ip_stratixiv_gxb_reconfig IS BEGIN 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 ( - reconfig_clk => cal_rec_clk, + reconfig_clk => reconfig_clk, reconfig_fromgxb => reconfig_fromgxb, - busy => rec_busy, + busy => busy, reconfig_togxb => reconfig_togxb ); END 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 ( - reconfig_clk => cal_rec_clk, + reconfig_clk => reconfig_clk, reconfig_fromgxb => reconfig_fromgxb, - busy => rec_busy, + busy => busy, reconfig_togxb => reconfig_togxb ); END 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 ( - reconfig_clk => cal_rec_clk, + reconfig_clk => reconfig_clk, reconfig_fromgxb => reconfig_fromgxb, - busy => rec_busy, + busy => busy, reconfig_togxb => reconfig_togxb ); END 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 ( - reconfig_clk => cal_rec_clk, + reconfig_clk => reconfig_clk, reconfig_fromgxb => reconfig_fromgxb, - busy => rec_busy, + busy => busy, reconfig_togxb => reconfig_togxb ); END GENERATE;