Jelmer Lap
09/30/2024, 9:05 AMif (~rst) begin
// waddr and raddr can only be non zero if reset is low
w_nreset: cover (waddr || raddr);
I don't understand how this proves that when rst is high, waddr and raddr can only be zeroJelmer Lap
09/30/2024, 9:08 AMJelmer Lap
09/30/2024, 9:11 AMw_full: cover (wen && !ren && count == MAX_DATA-1);
Which basically states that there is a point where you would write data and the fifo is almost full. What does this prove?