Skip to content

Commit

Permalink
Merge pull request #327 from pulp-platform/fix/missing-pin-warnings
Browse files Browse the repository at this point in the history
src: Remove missing pin warnings
  • Loading branch information
micprog committed Feb 27, 2024
2 parents fccffb5 + 9dc5a41 commit f98f5ad
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 f98f5ad

Please sign in to comment.