Default Verilated::debug() to off
This commit is contained in:
parent
eb5c035dde
commit
a11a5f04d5
|
|
@ -2600,8 +2600,8 @@ allows you to modify Verilator for internal use without distributing the
|
||||||
modified version. But please contribute back to the community!
|
modified version. But please contribute back to the community!
|
||||||
|
|
||||||
One limit is that you cannot under either license release a commercial
|
One limit is that you cannot under either license release a commercial
|
||||||
simulation product incorporating Verilator without making the source code
|
Verilog simulation product incorporating Verilator without making the
|
||||||
available.
|
source code available.
|
||||||
|
|
||||||
=item Why is Verilation so slow?
|
=item Why is Verilation so slow?
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ int Verilated::s_randReset = 0;
|
||||||
VerilatedVoidCb Verilated::s_flushCb = NULL;
|
VerilatedVoidCb Verilated::s_flushCb = NULL;
|
||||||
|
|
||||||
// Keep below together in one cache line
|
// Keep below together in one cache line
|
||||||
int Verilated::s_debug = 1;
|
int Verilated::s_debug = 0;
|
||||||
bool Verilated::s_calcUnusedSigs = false;
|
bool Verilated::s_calcUnusedSigs = false;
|
||||||
bool Verilated::s_gotFinish = false;
|
bool Verilated::s_gotFinish = false;
|
||||||
bool Verilated::s_assertOn = true;
|
bool Verilated::s_assertOn = true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue