mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Fixed bigtest
Accidentally broke it in cc27d27
(this is why regular testing is important).
This commit is contained in:
parent
b2d0368e26
commit
93d8ef9663
|
@ -3,7 +3,6 @@ basic bmc
|
|||
nofullskip prove
|
||||
cover
|
||||
bigtest cover
|
||||
basic cover : default
|
||||
|
||||
[options]
|
||||
cover:
|
||||
|
|
|
@ -31,7 +31,7 @@ module fifo
|
|||
);
|
||||
// fifo storage
|
||||
// async read, sync write
|
||||
wire [3:0] waddr, raddr;
|
||||
wire [ADDR_BITS-1:0] waddr, raddr;
|
||||
reg [7:0] data [MAX_DATA-1:0];
|
||||
always @(posedge clk)
|
||||
if (wen)
|
||||
|
|
Loading…
Reference in a new issue