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; ...@@ -28,10 +28,10 @@ USE technology_lib.technology_pkg.ALL;
PACKAGE tech_fifo_component_pkg IS PACKAGE tech_fifo_component_pkg IS
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- altera_mf -- ip_stratixiv
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
COMPONENT ip_altera_mf_fifo_sc IS COMPONENT ip_stratixiv_fifo_sc IS
GENERIC ( GENERIC (
g_use_eab : STRING := "ON"; g_use_eab : STRING := "ON";
g_dat_w : NATURAL; g_dat_w : NATURAL;
...@@ -50,7 +50,7 @@ PACKAGE tech_fifo_component_pkg IS ...@@ -50,7 +50,7 @@ PACKAGE tech_fifo_component_pkg IS
); );
END COMPONENT; END COMPONENT;
COMPONENT ip_altera_mf_fifo_dc IS COMPONENT ip_stratixiv_fifo_dc IS
GENERIC ( GENERIC (
g_dat_w : NATURAL; g_dat_w : NATURAL;
g_nof_words : NATURAL g_nof_words : NATURAL
...@@ -70,7 +70,7 @@ PACKAGE tech_fifo_component_pkg IS ...@@ -70,7 +70,7 @@ PACKAGE tech_fifo_component_pkg IS
); );
END COMPONENT; END COMPONENT;
COMPONENT ip_altera_mf_fifo_dc_mixed_widths IS COMPONENT ip_stratixiv_fifo_dc_mixed_widths IS
GENERIC ( GENERIC (
g_nof_words : NATURAL; -- FIFO size in nof wr_dat words g_nof_words : NATURAL; -- FIFO size in nof wr_dat words
g_wrdat_w : NATURAL; g_wrdat_w : NATURAL;
......
...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL; ...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_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. -- 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 ENTITY tech_fifo_dc IS
GENERIC ( GENERIC (
...@@ -54,8 +54,8 @@ ARCHITECTURE str OF tech_fifo_dc IS ...@@ -54,8 +54,8 @@ ARCHITECTURE str OF tech_fifo_dc IS
BEGIN BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_dc u0 : ip_stratixiv_fifo_dc
GENERIC MAP (g_dat_w, g_nof_words) GENERIC MAP (g_dat_w, g_nof_words)
PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw); PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw);
END GENERATE; END GENERATE;
......
...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL; ...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_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. -- 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 ENTITY tech_fifo_dc_mixed_widths IS
GENERIC ( GENERIC (
...@@ -55,8 +55,8 @@ ARCHITECTURE str OF tech_fifo_dc_mixed_widths IS ...@@ -55,8 +55,8 @@ ARCHITECTURE str OF tech_fifo_dc_mixed_widths IS
BEGIN BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_dc_mixed_widths u0 : ip_stratixiv_fifo_dc_mixed_widths
GENERIC MAP (g_nof_words, g_wrdat_w, g_rddat_w) GENERIC MAP (g_nof_words, g_wrdat_w, g_rddat_w)
PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw); PORT MAP (aclr, data, rdclk, rdreq, wrclk, wrreq, q, rdempty, rdusedw, wrfull, wrusedw);
END GENERATE; END GENERATE;
......
...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL; ...@@ -26,7 +26,7 @@ USE technology_lib.technology_pkg.ALL;
USE technology_lib.technology_select_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. -- 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 ENTITY tech_fifo_sc IS
GENERIC ( GENERIC (
...@@ -53,8 +53,8 @@ ARCHITECTURE str OF tech_fifo_sc IS ...@@ -53,8 +53,8 @@ ARCHITECTURE str OF tech_fifo_sc IS
BEGIN BEGIN
gen_altera_mf : IF g_technology=c_tech_stratixiv GENERATE gen_ip_stratixiv : IF g_technology=c_tech_stratixiv GENERATE
u0 : ip_altera_mf_fifo_sc u0 : ip_stratixiv_fifo_sc
GENERIC MAP (g_use_eab, g_dat_w, g_nof_words) GENERIC MAP (g_use_eab, g_dat_w, g_nof_words)
PORT MAP (aclr, clock, data, rdreq, wrreq, empty, full, q, usedw); PORT MAP (aclr, clock, data, rdreq, wrreq, empty, full, q, usedw);
END GENERATE; END GENERATE;
......
...@@ -27,7 +27,7 @@ USE IEEE.STD_LOGIC_1164.ALL; ...@@ -27,7 +27,7 @@ USE IEEE.STD_LOGIC_1164.ALL;
PACKAGE tech_flash_component_pkg IS PACKAGE tech_flash_component_pkg IS
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- stratixiv -- ip_stratixiv
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
COMPONENT ip_stratixiv_asmi_parallel IS 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