Skip to content

Commit

Permalink
lsu: handle all output signal that are tied to constant value
Browse files Browse the repository at this point in the history
After this commit I assume all the output signals are handled.

Signed-off-by: Wojciech Sipak <[email protected]>
  • Loading branch information
wsipak committed Oct 3, 2024
1 parent 538e6d6 commit e3d2c4d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions design/lsu/el2_lsu_bus_buffer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ import el2_pkg::*;
output logic lsu_axi_wlast,

input logic lsu_axi_bvalid,
/* exclude signals that are tied to constant value in this file */
/*verilator coverage_off*/
output logic lsu_axi_bready,
/*verilator coverage_on*/
input logic [1:0] lsu_axi_bresp,
input logic [pt.LSU_BUS_TAG-1:0] lsu_axi_bid,

Expand All @@ -140,7 +143,10 @@ import el2_pkg::*;
output logic [3:0] lsu_axi_arqos,

input logic lsu_axi_rvalid,
/* exclude signals that are tied to constant value in this file */
/*verilator coverage_off*/
output logic lsu_axi_rready,
/*verilator coverage_on*/
input logic [pt.LSU_BUS_TAG-1:0] lsu_axi_rid,
input logic [63:0] lsu_axi_rdata,
input logic [1:0] lsu_axi_rresp,
Expand Down

0 comments on commit e3d2c4d

Please sign in to comment.