diff options
| author | Jim Lawson | 2016-08-29 12:17:48 -0700 |
|---|---|---|
| committer | Jim Lawson | 2016-08-29 12:17:48 -0700 |
| commit | 6df3a785f8abe706838bc5b4b35c3374b6512f96 (patch) | |
| tree | a6b4961f966b69577ff4de28f2aa770b9355b7d9 /src/main/scala/chisel3/testers | |
| parent | 5fcdd12fe92bd22f9cdfb8f5e39e510684b709bf (diff) | |
Pass compileOptions as an implicit Module parameter.
Diffstat (limited to 'src/main/scala/chisel3/testers')
| -rw-r--r-- | src/main/scala/chisel3/testers/BasicTester.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/testers/BasicTester.scala b/src/main/scala/chisel3/testers/BasicTester.scala index 329237c6..0c8df2eb 100644 --- a/src/main/scala/chisel3/testers/BasicTester.scala +++ b/src/main/scala/chisel3/testers/BasicTester.scala @@ -9,8 +9,9 @@ import internal._ import internal.Builder.pushCommand import internal.firrtl._ import internal.sourceinfo.SourceInfo +import chisel3.NotStrict.NotStrictCompileOptions -class BasicTester extends Module { +class BasicTester extends Module() { // The testbench has no IOs, rather it should communicate using printf, assert, and stop. val io = IO(new Bundle()) |
