Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
calebofearth committed Jul 25, 2024
1 parent eaca0f7 commit 53536e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/axi/rtl/axi_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// Signals for a standard AXI4 compliant interface
//

interface axi_if #(parameter AW = 32, parameter DW = 32, parameter IW = 3, parameter UW = 32);
interface axi_if #(parameter integer AW = 32, parameter integer DW = 32, parameter integer IW = 3, parameter integer UW = 32);

import axi_pkg::*;

Expand Down Expand Up @@ -81,7 +81,7 @@ interface axi_if #(parameter AW = 32, parameter DW = 32, parameter IW = 3, param
input rid,
input rlast,
input rvalid,
output rready,
output rready
);

// Modport for write manager
Expand Down Expand Up @@ -127,7 +127,7 @@ interface axi_if #(parameter AW = 32, parameter DW = 32, parameter IW = 3, param
output rid,
output rlast,
output rvalid,
input rready,
input rready
);

// Modport for write subordinate
Expand Down

0 comments on commit 53536e0

Please sign in to comment.