diff options
| author | Richard Lin | 2017-04-26 17:52:29 -0700 |
|---|---|---|
| committer | GitHub | 2017-04-26 17:52:29 -0700 |
| commit | 36718cf6040990f2be9ab143adb1d3c519e9d983 (patch) | |
| tree | 34ae121faf999bb962f5257c26de651bd08ecf04 /src/test/scala/chiselTests/ModuleExplicitResetSpec.scala | |
| parent | 7449fdc9043708e426aeb8b12b30226db9e47a80 (diff) | |
Deprecate fromBits and clock/reset constructors (#583)
Diffstat (limited to 'src/test/scala/chiselTests/ModuleExplicitResetSpec.scala')
| -rw-r--r-- | src/test/scala/chiselTests/ModuleExplicitResetSpec.scala | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/scala/chiselTests/ModuleExplicitResetSpec.scala b/src/test/scala/chiselTests/ModuleExplicitResetSpec.scala index 27cf4a5f..af2db95f 100644 --- a/src/test/scala/chiselTests/ModuleExplicitResetSpec.scala +++ b/src/test/scala/chiselTests/ModuleExplicitResetSpec.scala @@ -19,20 +19,4 @@ class ModuleExplicitResetSpec extends ChiselFlatSpec { new ModuleExplicitReset(myReset) } } - - "A Module with an explicit reset in non-compatibility mode" should "elaborate" in { - import chisel3._ - val myReset = true.B - class ModuleExplicitReset(reset: Bool) extends Module(_reset = reset) { - val io = IO(new Bundle { - val done = Output(Bool()) - }) - - io.done := false.B - } - - elaborate { - new ModuleExplicitReset(myReset) - } - } } |
