From b50516734804b0522050cc511b67f305a7b1b2d5 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Mon, 14 Apr 2025 16:44:03 -0700 Subject: [PATCH] stats: Add defaults for inputs Signed-off-by: Alex Forencich --- rtl/stats/taxi_stats_collect.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/stats/taxi_stats_collect.sv b/rtl/stats/taxi_stats_collect.sv index d87555c..59365f9 100644 --- a/rtl/stats/taxi_stats_collect.sv +++ b/rtl/stats/taxi_stats_collect.sv @@ -34,7 +34,7 @@ module taxi_stats_collect # * Increment inputs */ input wire logic [INC_W-1:0] stat_inc[CNT], - input wire logic stat_valid[CNT], + input wire logic stat_valid[CNT] = '{CNT{1'b1}}, /* * Statistics increment output @@ -44,7 +44,7 @@ module taxi_stats_collect # /* * Control inputs */ - input wire logic update + input wire logic update = 1'b0 ); localparam STAT_INC_W = m_axis_stat.DATA_W;