Skip to content

Commit ee3711b

Browse files
committed
Fix type and import
1 parent d1099ea commit ee3711b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

basil/firmware/modules/utils/generic_fifo.v

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ output wire full;
3030
output reg empty;
3131

3232
output reg [DATA_SIZE-1:0] data_out;
33-
`include "../includes/log2func.v"
3433

3534
reg [DATA_SIZE:0] mem [DEPTH-1:0];
3635

37-
parameter POINTER_SIZE = 16; // `CLOG2(DEPTH);
36+
localparam POINTER_SIZE = 16;
3837

3938
reg [POINTER_SIZE-1:0] rd_pointer, rd_tmp, wr_pointer;
4039
output reg [POINTER_SIZE-1:0] size;

0 commit comments

Comments
 (0)