Skip to content

Commit 416d895

Browse files
committed
axi_intf: Add Monitor modport to AXI_LITE_DV interface
1 parent f876759 commit 416d895

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## Unreleased
99

1010
### Added
11-
- Add Monitor modport to `AXI_BUS` and `AXI_LITE` interfaces.
11+
- Add Monitor modport to `AXI_BUS`, `AXI_LITE`, and `AXI_LITE_DV` interfaces.
1212

1313
### Changed
1414

src/axi_intf.sv

+8
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,14 @@ interface AXI_LITE_DV #(
515515
output r_data, r_resp, r_valid, input r_ready
516516
);
517517

518+
modport Monitor (
519+
input aw_addr, aw_prot, aw_valid, aw_ready,
520+
w_data, w_strb, w_valid, w_ready,
521+
b_resp, b_valid, b_ready,
522+
ar_addr, ar_prot, ar_valid, ar_ready,
523+
r_data, r_resp, r_valid, r_ready
524+
);
525+
518526
endinterface
519527

520528

0 commit comments

Comments
 (0)