Browse Source

fifo: Fix SERE to also match cycles w/o ren after last write

master
T. Meissner 3 years ago
parent
commit
6a319686ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      fifo/fifo.vhd

+ 1
- 1
fifo/fifo.vhd View File

@ -296,7 +296,7 @@ begin
GEN : if i = 0 generate
DATA_FLOW_GEN : assert always
{{s_cnt = i and Wen_i = '1' and Din_i = s_data} ; {Ren_i}}
{{s_cnt = i and Wen_i = '1' and Din_i = s_data} ; {not Ren_i[*]; Ren_i}}
|=> {Dout_o = s_data};
else generate


Loading…
Cancel
Save