We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1099ea commit ee3711bCopy full SHA for ee3711b
basil/firmware/modules/utils/generic_fifo.v
@@ -30,11 +30,10 @@ output wire full;
30
output reg empty;
31
32
output reg [DATA_SIZE-1:0] data_out;
33
-`include "../includes/log2func.v"
34
35
reg [DATA_SIZE:0] mem [DEPTH-1:0];
36
37
-parameter POINTER_SIZE = 16; // `CLOG2(DEPTH);
+localparam POINTER_SIZE = 16;
38
39
reg [POINTER_SIZE-1:0] rd_pointer, rd_tmp, wr_pointer;
40
output reg [POINTER_SIZE-1:0] size;
0 commit comments