Skip to content

Commit

Permalink
Connect all outputs in Ibex CHERI top
Browse files Browse the repository at this point in the history
These outputs include the alert outputs and the scramble request.
This fixes undriven output lint errors in Verilator.
  • Loading branch information
marnovandermaas committed Mar 4, 2024
1 parent f07ee8d commit 1639102
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions rtl/ibexc_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ module ibex_top import ibex_pkg::*; import cheri_pkg::*; #(
`endif

.fetch_enable_i(fetch_enable_buf),
.alert_minor_o(),
.alert_major_o(),
.alert_minor_o(alert_minor_o),
.alert_major_o(alert_major_internal_o),
.icache_inval_o(),
.core_busy_o (core_busy_d),
.ic_scr_key_valid_i (1'b0),
Expand All @@ -390,6 +390,7 @@ module ibex_top import ibex_pkg::*; import cheri_pkg::*; #(
);

assign data_wdata_intg_o = 7'h0;
assign alert_major_bus_o = 1'b0;

/////////////////////////////////
// Register file Instantiation //
Expand Down Expand Up @@ -454,4 +455,6 @@ module ibex_top import ibex_pkg::*; import cheri_pkg::*; #(
);
end

assign scramble_req_o = 0;

endmodule

0 comments on commit 1639102

Please sign in to comment.