Skip to content

Commit c0cdb71

Browse files
author
Mario Ruiz
committed
Roll back code
1 parent 012c4df commit c0cdb71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RTL/cycle_limiter.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module cycle_limiter (
8686
);
8787

8888

89-
reg [ 11: 0] cycle_counter = 16'h0;
89+
reg [ 4: 0] cycle_counter = 16'h0;
9090
reg internal_ready= 1'b1;
9191

9292

@@ -97,7 +97,7 @@ module cycle_limiter (
9797
assign M_AXIS_TVALID = S_AXIS_TVALID & /* 1'b1 */internal_ready; // Assert output valid depending on internal ready
9898
assign S_AXIS_TREADY = M_AXIS_TREADY & /* 1'b1 */internal_ready; // Assert output ready depending on internal ready
9999

100-
localparam integer MAX_CYCLE_COUNT = 18;
100+
localparam integer MAX_CYCLE_COUNT = 17;
101101

102102
localparam INITIAL_STATE = 0,
103103
WAITING_PACKET = 1,

0 commit comments

Comments
 (0)