3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Fixing golden/fifo.sv

Had missed a change from (non golden) fifo.sv.
This commit is contained in:
KrystalDelusion 2022-09-07 09:52:52 +12:00
parent 9edb6ee00b
commit 37140e7e81
3 changed files with 1 additions and 0 deletions

View file

@ -161,6 +161,7 @@ module fifo
// look for an overfill where the value in memory changes
// the change in data makes certain that the value is overriden
let d_change = (wdata != rdata);
property read_skip;
@(posedge clk) disable iff (rst)
!ren && d_change |=> $changed(raddr);