Skip to content

Commit

Permalink
nw_router: Fix addr_rule parametrization
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Sep 14, 2023
1 parent 721d977 commit a5e6649
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/floo_narrow_wide_router.sv
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ module floo_narrow_wide_router
.RouteAlgo ( RouteAlgo ),
.IdWidth ( IdWidth ),
.id_t ( id_t ),
.NumAddrRules ( NumAddrRules )
.NumAddrRules ( NumAddrRules ),
.addr_rule_t ( addr_rule_t )
) i_req_floo_router (
.clk_i,
.rst_ni,
Expand All @@ -114,7 +115,8 @@ module floo_narrow_wide_router
.IdWidth ( IdWidth ),
.flit_t ( floo_rsp_generic_flit_t ),
.id_t ( id_t ),
.NumAddrRules ( NumAddrRules )
.NumAddrRules ( NumAddrRules ),
.addr_rule_t ( addr_rule_t )
) i_rsp_floo_router (
.clk_i,
.rst_ni,
Expand All @@ -140,7 +142,8 @@ module floo_narrow_wide_router
.RouteAlgo ( RouteAlgo ),
.IdWidth ( IdWidth ),
.id_t ( id_t ),
.NumAddrRules ( NumAddrRules )
.NumAddrRules ( NumAddrRules ),
.addr_rule_t ( addr_rule_t )
) i_wide_req_floo_router (
.clk_i,
.rst_ni,
Expand Down

0 comments on commit a5e6649

Please sign in to comment.