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

Rename ip_altera_mf into ip_stratixiv.

parent 72b49e58
No related branches found
No related tags found
No related merge requests found
......@@ -28,10 +28,10 @@ USE technology_lib.technology_pkg.ALL;
PACKAGE tech_fifo_component_pkg IS
-----------------------------------------------------------------------------
-- altera_mf
-- ip_stratixiv
-----------------------------------------------------------------------------
COMPONENT ip_altera_mf_fifo_sc IS
COMPONENT ip_stratixiv_fifo_sc IS
GENERIC (
g_use_eab : STRING := "ON";
g_dat_w : NATURAL;
......@@ -50,7 +50,7 @@ PACKAGE tech_fifo_component_pkg IS
);
END COMPONENT;
COMPONENT ip_altera_mf_fifo_dc IS
COMPONENT ip_stratixiv_fifo_dc IS
GENERIC (
g_dat_w : NATURAL;
g_nof_words : NATURAL
......@@ -70,7 +70,7 @@ PACKAGE tech_fifo_component_pkg IS
);
END COMPONENT;
COMPONENT ip_altera_mf_fifo_dc_mixed_widths IS
COMPONENT ip_stratixiv_fifo_dc_mixed_widths IS
GENERIC (
g_nof_words : NATURAL; -- FIFO size in nof wr_dat words
g_wrdat_w : NATURAL;
......
......@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_pkg.ALL;
-- Declare IP libraries to ensure default binding in simulation. The IP library clause is ignored by synthesis.
LIBRARY ip_altera_mf_lib;
LIBRARY ip_stratixiv_lib;
ENTITY tech_fifo_dc IS
GENERIC (
......@@ -54,8 +54,8 @@ ARCHITECTURE str OF tech_fifo_dc IS
BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_dc
gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_stratixiv_fifo_dc
GENERIC MAP (g_dat_w, g_nof_words)
PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw);
END GENERATE;
......
......@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_pkg.ALL;
-- Declare IP libraries to ensure default binding in simulation. The IP library clause is ignored by synthesis.
LIBRARY ip_altera_mf_lib;
LIBRARY ip_stratixiv_lib;
ENTITY tech_fifo_dc_mixed_widths IS
GENERIC (
......@@ -55,8 +55,8 @@ ARCHITECTURE str OF tech_fifo_dc_mixed_widths IS
BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_dc_mixed_widths
gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_stratixiv_fifo_dc_mixed_widths
GENERIC MAP (g_nof_words, g_wrdat_w, g_rddat_w)
PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw);
END GENERATE;
......
......@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_pkg.ALL;
-- Declare IP libraries to ensure default binding in simulation. The IP library clause is ignored by synthesis.
LIBRARY ip_altera_mf_lib;
LIBRARY ip_stratixiv_lib;
ENTITY tech_fifo_sc IS
GENERIC (
......@@ -53,8 +53,8 @@ ARCHITECTURE str OF tech_fifo_sc IS
BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_sc
gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_stratixiv_fifo_sc
GENERIC MAP (g_use_eab, g_dat_w, g_nof_words)
PORT MAP (aclr, clock, data, rdreq, wrreq, empty, full, q, usedw);
END GENERATE;
......
......@@ -27,7 +27,7 @@ USE IEEE.STD_LOGIC_1164.ALL;
PACKAGE tech_flash_component_pkg IS
-----------------------------------------------------------------------------
-- stratixiv
-- ip_stratixiv
-----------------------------------------------------------------------------
COMPONENT ip_stratixiv_asmi_parallel IS
......
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