diff options
| author | Colin Schmidt | 2016-09-05 14:47:42 -0700 |
|---|---|---|
| committer | Adam Izraelevitz | 2016-09-05 14:47:42 -0700 |
| commit | c1ca57452af8adc00bef92e2ddf8984c8cde5620 (patch) | |
| tree | 8b4e0cdfed6a02f47fcdc239aac8290a5d14f481 /src | |
| parent | e4ad4d09484fcc7056b23c1dc747943d8935ea95 (diff) | |
Change null statement to empty begin end (#264)
this eliminates warnings in recent versions of VCS
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/Emitter.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/Emitter.scala b/src/main/scala/firrtl/Emitter.scala index 46e1716c..a4f5c14d 100644 --- a/src/main/scala/firrtl/Emitter.scala +++ b/src/main/scala/firrtl/Emitter.scala @@ -657,7 +657,7 @@ class VerilogEmitter extends Emitter { // then start the simulation later // Verilator does not support delay statements, so they are omitted. emit(Seq(" `ifndef verilator")) - emit(Seq(" #0.002;")) + emit(Seq(" #0.002 begin end")) emit(Seq(" `endif")) for (x <- initials) { emit(Seq(tab,x)) |
