Skip to content

Commit

Permalink
src: Remove missing pin warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Dec 13, 2023
1 parent c4e9924 commit 9d49700
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/axi_to_mem_interleaved.sv
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ module axi_to_mem_interleaved_intf #(
input logic clk_i,
/// Asynchronous reset, active low
input logic rst_ni,
/// Testmode enable
input logic test_i,
/// Status output, busy flag of `axi_to_mem`
output logic busy_o,
/// AXI4+ATOP slave port
Expand Down Expand Up @@ -337,6 +339,7 @@ module axi_to_mem_interleaved_intf #(
) i_axi_to_mem_interleaved (
.clk_i,
.rst_ni,
.test_i,
.busy_o,
.axi_req_i ( mem_axi_req ),
.axi_resp_o ( mem_axi_resp ),
Expand Down
3 changes: 3 additions & 0 deletions src/axi_to_mem_split.sv
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ module axi_to_mem_split_intf #(
input logic clk_i,
/// Asynchronous reset, active low.
input logic rst_ni,
/// Testmode enable
input logic test_i,
/// See `axi_to_mem_split`, port `busy_o`.
output logic busy_o,
/// AXI4+ATOP slave interface port.
Expand Down Expand Up @@ -244,6 +246,7 @@ module axi_to_mem_split_intf #(
) i_axi_to_mem_split (
.clk_i,
.rst_ni,
.test_i,
.busy_o,
.axi_req_i (axi_req),
.axi_resp_o (axi_resp),
Expand Down

0 comments on commit 9d49700

Please sign in to comment.