Skip to content

Commit

Permalink
axi_lite_cut_intf: Add missing assigns to and from interface ports
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Rönninger authored and andreaskurth committed Mar 11, 2020
1 parent 29f53f7 commit 89704fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- `axi_cdc`: Remove unused global `import axi_pkg::*`.
- `axi_lite_cut_intf`: Add missing assigns to and from interface ports.


## 0.15.1 - 2020-03-09
Expand Down
6 changes: 6 additions & 0 deletions src/axi_cut.sv
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,12 @@ module axi_lite_cut_intf #(
req_t slv_req, mst_req;
resp_t slv_resp, mst_resp;

`AXI_LITE_ASSIGN_TO_REQ(slv_req, in)
`AXI_LITE_ASSIGN_FROM_RESP(in, slv_resp)

`AXI_LITE_ASSIGN_FROM_REQ(out, mst_req)
`AXI_LITE_ASSIGN_TO_RESP(mst_resp, out)

axi_cut #(
.Bypass ( BYPASS ),
.aw_chan_t ( aw_chan_t ),
Expand Down

0 comments on commit 89704fa

Please sign in to comment.