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

Use external DDR memory model in top level test bench, instead of the internal...

Use external DDR memory model in top level test bench, instead of the internal DDR memory model in tech_ddr.
parent 24cd1054
Branches
Tags
No related merge requests found
......@@ -163,9 +163,9 @@ BEGIN
u_ddr_mem_ctrl : ENTITY io_ddr_lib.io_ddr
GENERIC MAP(
g_sim => g_sim,
g_technology => g_tech_select_default,
g_tech_ddr => c_tech_ddr,
g_tech_ddr => c_tech_ddr,
g_use_ddr_memory_model => FALSE,
g_cross_domain_dvr_ctlr => FALSE,
g_wr_data_w => c_wr_data_w,
g_wr_fifo_depth => c_wr_fifo_depth,
......
......@@ -140,7 +140,8 @@ BEGIN
GENERIC MAP (
g_sim => c_sim,
g_sim_unb_nr => c_unb_nr,
g_sim_node_nr => c_node_nr
g_sim_node_nr => c_node_nr,
g_tech_ddr => c_ddr
)
PORT MAP (
-- GENERAL
......@@ -169,6 +170,19 @@ BEGIN
);
------------------------------------------------------------------------------
-- DDR3 memory model
------------------------------------------------------------------------------
u_tech_ddr_memory_model : ENTITY tech_ddr_lib.tech_ddr_memory_model
GENERIC MAP (
g_sim => TRUE,
g_tech_ddr => c_ddr
)
PORT MAP (
mem_in => phy_ou(0),
mem_io => phy_io(0)
);
------------------------------------------------------------------------------
-- UniBoard sensors
------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment