Skip to content
Snippets Groups Projects
Commit 98307ac6 authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Fixed HEX file issue

 . When common_ram_crw_crw's parameter g_true_dual_port = FALSE, the HEX
   files are not picked up.
 . worked around by leaving g_true_dual_port TRUE.
parent abc2952a
No related branches found
No related tags found
No related merge requests found
...@@ -52,8 +52,7 @@ ENTITY beamformer IS ...@@ -52,8 +52,7 @@ ENTITY beamformer IS
g_data_w : NATURAL; g_data_w : NATURAL;
g_nof_weights : NATURAL; g_nof_weights : NATURAL;
g_weights_w : NATURAL := 16; g_weights_w : NATURAL := 16;
g_weights_file : STRING := "hex/beamformer_weights"; g_weights_file : STRING := "hex/beamformer_weights"
g_weights_write_only : BOOLEAN := FALSE
); );
PORT ( PORT (
dp_clk : IN STD_LOGIC; dp_clk : IN STD_LOGIC;
...@@ -125,8 +124,7 @@ BEGIN ...@@ -125,8 +124,7 @@ BEGIN
GENERIC MAP ( GENERIC MAP (
g_technology => g_technology, g_technology => g_technology,
g_ram => c_common_ram_crw_crw_ram, g_ram => c_common_ram_crw_crw_ram,
g_init_file => g_weights_file & "_" & NATURAL'IMAGE(i) & ".hex", g_init_file => g_weights_file & "_" & NATURAL'IMAGE(i) & ".hex"
g_true_dual_port => FALSE --NOT(g_weights_write_only)
) )
PORT MAP ( PORT MAP (
rst_a => mm_rst, rst_a => mm_rst,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment