diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-18 11:51:34 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-18 11:51:34 -0700 |
commit | 776d7cea6ad42a58f47cdcb7a71a801e1ea1055f (patch) | |
tree | 3d3c920a9197c2b9430de37b044be6c9213320f7 /backends | |
parent | 5b999ae68decef5646ef0ccac53463f22fe18d8f (diff) | |
parent | 64947453e22404e570d670416ad66511a799e666 (diff) | |
download | yosys-776d7cea6ad42a58f47cdcb7a71a801e1ea1055f.tar.gz yosys-776d7cea6ad42a58f47cdcb7a71a801e1ea1055f.tar.bz2 yosys-776d7cea6ad42a58f47cdcb7a71a801e1ea1055f.zip |
Merge remote-tracking branch 'origin/master' into eddie/muxpack
Diffstat (limited to 'backends')
-rw-r--r-- | backends/smt2/smtio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py index ab20a4af2..cea0fc56c 100644 --- a/backends/smt2/smtio.py +++ b/backends/smt2/smtio.py @@ -1023,6 +1023,8 @@ class MkVcd: assert t >= self.t if t != self.t: if self.t == -1: + print("$version Generated by Yosys-SMTBMC $end", file=self.f) + print("$timescale 1ns $end", file=self.f) print("$var integer 32 t smt_step $end", file=self.f) print("$var event 1 ! smt_clock $end", file=self.f) |