Skip to content
Snippets Groups Projects
Commit b661ed37 authored by Pepping's avatar Pepping
Browse files

ROunded the number of regs of a single stream to a power of 2.

parent b4d85385
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,7 @@ END dp_fifo_fill_reg; ...@@ -82,7 +82,7 @@ END dp_fifo_fill_reg;
ARCHITECTURE str OF dp_fifo_fill_reg IS ARCHITECTURE str OF dp_fifo_fill_reg IS
CONSTANT c_reg_max_used_words_offset : NATURAL := 2; CONSTANT c_reg_max_used_words_offset : NATURAL := 2;
CONSTANT c_nof_regs_per_stream : NATURAL := 3; CONSTANT c_nof_regs_per_stream : NATURAL := 4; -- Must always be a power of 2 in order to meet the python register definition.
-- Define the actual size of the MM slave register -- Define the actual size of the MM slave register
CONSTANT c_mm_reg : t_c_mem := (latency => 1, CONSTANT c_mm_reg : t_c_mem := (latency => 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment