Skip to content

Commit f59efdf

Browse files
committed
Note
1 parent 2672f2e commit f59efdf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pifo-design/src/rank_store.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ module RankStore #(parameter SIZE = 50, parameter FLOWS = 10) (
2828
logic [FLOWS - 1 : 0] [SIZE - 1 : 0] head;
2929
logic [FLOWS - 1 : 0] [SIZE - 1 : 0] tail;
3030

31-
logic [FLOWS - 1 : 0] [31:0] counter;
31+
// can be replaced with flags to indicate if empty/full
32+
logic [FLOWS - 1 : 0] [31:0] counter;
3233

3334
always_ff @( posedge clk ) begin
3435
if ( rst ) begin

0 commit comments

Comments
 (0)