Skip to content

Commit

Permalink
axi_multicut: Make compatible with current definition of AXI_BUS
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskurth committed Nov 28, 2018
1 parent ace693d commit 9e4fb91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- Update `src_files.yml` to match `Bender.yml`.
- Make `axi_multicut` compatible with current definition of `AXI_BUS`.

## 0.4.5 - 2018-09-12
### Fixed
Expand Down
4 changes: 3 additions & 1 deletion src/axi_multicut.sv
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ module axi_multicut #(
.AXI_DATA_WIDTH ( DATA_WIDTH ),
.AXI_ID_WIDTH ( ID_WIDTH ),
.AXI_USER_WIDTH ( USER_WIDTH )
) s_cut[NUM_CUTS-1:0]();
) s_cut[NUM_CUTS-1:0](
.clk_i (clk_i)
);

axi_cut #(
.ADDR_WIDTH ( ADDR_WIDTH ),
Expand Down

0 comments on commit 9e4fb91

Please sign in to comment.