Skip to content

Commit

Permalink
axi_lite_cdc_src_intf: Fix ports of axi_cdc_src instance
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelRiedel authored and andreaskurth committed Nov 11, 2021
1 parent b64250b commit a257cd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed

### Fixed
- `axi_lite_cdc_src_intf`: Fix `_i` and `_o` suffixes in instantiation of `axi_cdc_src`.


## 0.29.1 - 2021-06-02
Expand Down
4 changes: 2 additions & 2 deletions src/axi_cdc_src.sv
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ module axi_lite_cdc_src_intf #(
) i_axi_cdc_src (
.src_clk_i,
.src_rst_ni,
.src_req_o ( src_req ),
.src_resp_i ( src_resp ),
.src_req_i ( src_req ),
.src_resp_o ( src_resp ),
.async_data_master_aw_data_o ( dst.aw_data ),
.async_data_master_aw_wptr_o ( dst.aw_wptr ),
.async_data_master_aw_rptr_i ( dst.aw_rptr ),
Expand Down

0 comments on commit a257cd5

Please sign in to comment.