Skip to content

Commit 3e433be

Browse files
micprogthommythomaso
authored andcommitted
rr_distributor: default to compliant behavior
1 parent 5635be9 commit 3e433be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rr_distributor.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module rr_distributor # (
2828
/// If set to 1'b0, the rr_distributor will step through the outputs if one is ready
2929
/// but the current one is not. This can reduce wait time for the input.
3030
/// **THIS IS NOT COMPLIANT AS IT MAY DE-ASSERT VALID WITHOUT A PROPER HANDSHAKE**
31-
parameter bit StrictRR = 1'b0,
31+
parameter bit StrictRR = 1'b1,
3232
/// Dependent parameter, do **not** overwrite.
3333
/// Width of the selected index
3434
parameter int unsigned IdxWidth = cf_math_pkg::idx_width(NumOut),

0 commit comments

Comments
 (0)