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

-Fixed typo in constant name.

parent f347260d
No related branches found
No related tags found
1 merge request!101Merged sub-branch L2SDP-151 into L2SDP-143 (st_histogram rework)
...@@ -64,12 +64,12 @@ END st_histogram_reg; ...@@ -64,12 +64,12 @@ END st_histogram_reg;
ARCHITECTURE rtl OF st_histogram_reg IS ARCHITECTURE rtl OF st_histogram_reg IS
CONSTANT nof_addresses : NATURAL := 3; CONSTANT c_nof_addresses : NATURAL := 3;
CONSTANT c_mm_reg : t_c_mem := (latency => 1, CONSTANT c_mm_reg : t_c_mem := (latency => 1,
adr_w => ceil_log2(nof_addresses), adr_w => ceil_log2(c_nof_addresses),
dat_w => c_word_w, -- Use MM bus data width = c_word_w = 32 for all MM registers dat_w => c_word_w, -- Use MM bus data width = c_word_w = 32 for all MM registers
nof_dat => nof_addresses, nof_dat => c_nof_addresses,
init_sl => '0'); init_sl => '0');
SIGNAL mm_ram_clear : STD_LOGIC; SIGNAL mm_ram_clear : STD_LOGIC;
......
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