Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions examples/simple_system/lint/verilator_waiver.vlt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
lint_off -rule WIDTH -file "*/rtl/ibex_simple_system.sv"
-match "*expects 1 bits*Initial value's CONST '32'h1'*"

// The UNOPTFLAT warnings are expected.
lint_off -rule UNOPTFLAT -file "*/rtl/ibex_id_stage.sv"
-match "*instr_executing_spec*"
lint_off -rule UNOPTFLAT -file "*/rtl/ibex_controller.sv"
-match "*special_req*"
lint_off -rule UNOPTFLAT -file "*/rtl/ibex_controller.sv"
-match "*id_in_ready_o*"

// This isn't a waiver, as such, but rather tells Verilator to expose
// the given parameters' values to C++. This allows cosim to figure
// out what flavour of core it is running, which allows us to call
Expand Down
Loading