From a11a5f04d5c5010656c0d6dafec06fcd27e3f9b6 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 23 Mar 2010 20:31:22 -0400 Subject: [PATCH] Default Verilated::debug() to off --- bin/verilator | 4 ++-- include/verilated.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/verilator b/bin/verilator index b467e8ec2..9f60fb22c 100755 --- a/bin/verilator +++ b/bin/verilator @@ -2600,8 +2600,8 @@ allows you to modify Verilator for internal use without distributing the modified version. But please contribute back to the community! One limit is that you cannot under either license release a commercial -simulation product incorporating Verilator without making the source code -available. +Verilog simulation product incorporating Verilator without making the +source code available. =item Why is Verilation so slow? diff --git a/include/verilated.cpp b/include/verilated.cpp index 272522a0d..3bee89ebc 100644 --- a/include/verilated.cpp +++ b/include/verilated.cpp @@ -38,7 +38,7 @@ int Verilated::s_randReset = 0; VerilatedVoidCb Verilated::s_flushCb = NULL; // 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_gotFinish = false; bool Verilated::s_assertOn = true;