ibex_tracer: Remove Verilator gating

We want people to get an error when compiling the tracer with Verilator:
this file should not be used with Verilator. An error is better than
silently getting the wrong result.
This commit is contained in:
Philipp Wagner 2019-07-19 19:25:20 +01:00 committed by Philipp Wagner
parent 62f3573f2b
commit bcaead3ea6

View file

@ -17,7 +17,6 @@
// //
////////////////////////////////////////////////////////////////////////////////
`ifndef VERILATOR
import ibex_pkg::*;
import ibex_tracer_pkg::*;
@ -30,6 +29,9 @@ import ibex_tracer_pkg::*;
/**
* Traces the executed instructions
*
* Note: Verilator does not support the language constructs used in this
* module!
*/
module ibex_tracer #(
parameter int unsigned RegAddrWidth = 5
@ -418,5 +420,3 @@ endmodule
`undef REG_S2
`undef REG_S3
`undef REG_D
`endif