aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-03-29 12:38:41 +0200
committerClifford Wolf <clifford@clifford.at>2018-03-29 12:38:41 +0200
commit665eec3d531e0da3a2d599fd9869d81dfa8c3966 (patch)
treef73c65f38900bae84e182c6be946263779ff2ce2
parent0acea3548b54a2acf6f3b554e6878f884a4414fe (diff)
downloadyosys-665eec3d531e0da3a2d599fd9869d81dfa8c3966.tar.gz
yosys-665eec3d531e0da3a2d599fd9869d81dfa8c3966.tar.bz2
yosys-665eec3d531e0da3a2d599fd9869d81dfa8c3966.zip
Removed $timescale from "sat" command VCD writer
Signed-off-by: Clifford Wolf <clifford@clifford.at>
-rw-r--r--passes/sat/sat.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/passes/sat/sat.cc b/passes/sat/sat.cc
index a6ac7afd4..6c0834deb 100644
--- a/passes/sat/sat.cc
+++ b/passes/sat/sat.cc
@@ -691,7 +691,6 @@ struct SatHelper
// VCD has some limits on internal (non-display) identifier names, so make legal ones
std::map<std::string, std::string> vcdnames;
- fprintf(f, "$timescale 1ns\n"); // arbitrary time scale since actual clock period is unknown/unimportant
fprintf(f, "$scope module %s $end\n", module->name.c_str());
for (auto &info : modelInfo)
{