stats: Add gate input to statistics collector

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-04-16 11:54:16 -07:00
parent 4be054e9b3
commit e3fcf54466
4 changed files with 9 additions and 2 deletions

View File

@@ -42,6 +42,7 @@ taxi_axis_if #(
.ID_W(STAT_ID_W)
) m_axis_stat();
logic gate;
logic update;
taxi_stats_collect #(
@@ -68,6 +69,7 @@ uut (
/*
* Control inputs
*/
.gate(gate),
.update(update)
);