Commit 91ebb21c authored by Alexis Marquet's avatar Alexis Marquet

fix missing statement that would pulse almost_full_int in simulation

parent 4273aed0
......@@ -282,6 +282,7 @@ begin -- arch
if rising_edge(clk_wr_i) then
if rst_wr_n_i = '0' then
almost_full_int <= '0';
wr_count <= (others => '0');
else
wr_count <= std_logic_vector(unsigned(wcb.bin) - unsigned(rcb.bin_x));
if (unsigned(wr_count) < g_almost_full_threshold) then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment