Skip to content

Commit

Permalink
patch: Apply 0002-axi-vcs-compatibility-of-axi_isolate.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Sep 30, 2022
1 parent 24a758f commit dc2ad4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/axi_isolate.sv
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ module axi_isolate #(
/// Support atomic operations (ATOPs)
parameter bit AtopSupport = 1'b1,
/// Address width of all AXI4+ATOP ports
parameter int unsigned AxiAddrWidth = 32'd0,
parameter int signed AxiAddrWidth = 32'd0,
/// Data width of all AXI4+ATOP ports
parameter int unsigned AxiDataWidth = 32'd0,
parameter int signed AxiDataWidth = 32'd0,
/// ID width of all AXI4+ATOP ports
parameter int unsigned AxiIdWidth = 32'd0,
parameter int signed AxiIdWidth = 32'd0,
/// User signal width of all AXI4+ATOP ports
parameter int unsigned AxiUserWidth = 32'd0,
parameter int signed AxiUserWidth = 32'd0,
/// Request struct type of all AXI4+ATOP ports
parameter type axi_req_t = logic,
/// Response struct type of all AXI4+ATOP ports
Expand Down

0 comments on commit dc2ad4f

Please sign in to comment.