Skip to content

Commit

Permalink
Relax assertion on OoO mux ID width.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvan Tortorella authored and FrancescoConti committed Jun 2, 2024
1 parent 44f7c32 commit afe0220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/core/hci_core_mux_ooo.sv
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ module hci_core_mux_ooo
// initial
// iw_in : assert(in[i].IW == 0);
initial
iw_out : assert(out.IW == $clog2(NB_CHAN));
iw_out : assert(out.IW >= $clog2(NB_CHAN));
initial
ew : assert(in[i].EW == out.EW);
initial
Expand Down

0 comments on commit afe0220

Please sign in to comment.