Skip to content

Commit

Permalink
axi_to_reg_v2: Use RegDataWidth for output multiplexing (#49)
Browse files Browse the repository at this point in the history
reg_mux at end was using AxiDataWidth instead of RegDataWidth when it's inputs and outputs were both reg_*_t
  • Loading branch information
Kevin99214 authored Sep 11, 2024
1 parent ae616e5 commit 31e10c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axi_to_reg_v2.sv
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ module axi_to_reg_v2 #(
reg_mux #(
.NoPorts( NumBanks ),
.AW ( AxiAddrWidth ),
.DW ( AxiDataWidth ),
.DW ( RegDataWidth ),
.req_t ( reg_req_t ),
.rsp_t ( reg_rsp_t )
) i_reg_mux (
Expand Down

0 comments on commit 31e10c9

Please sign in to comment.