Skip to content

Commit

Permalink
rr_distributor: default to compliant behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog authored and thommythomaso committed Apr 14, 2023
1 parent 5635be9 commit 3e433be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rr_distributor.sv
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module rr_distributor # (
/// If set to 1'b0, the rr_distributor will step through the outputs if one is ready
/// but the current one is not. This can reduce wait time for the input.
/// **THIS IS NOT COMPLIANT AS IT MAY DE-ASSERT VALID WITHOUT A PROPER HANDSHAKE**
parameter bit StrictRR = 1'b0,
parameter bit StrictRR = 1'b1,
/// Dependent parameter, do **not** overwrite.
/// Width of the selected index
parameter int unsigned IdxWidth = cf_math_pkg::idx_width(NumOut),
Expand Down

0 comments on commit 3e433be

Please sign in to comment.