From 36718cf6040990f2be9ab143adb1d3c519e9d983 Mon Sep 17 00:00:00 2001 From: Richard Lin Date: Wed, 26 Apr 2017 17:52:29 -0700 Subject: Deprecate fromBits and clock/reset constructors (#583) --- src/test/scala/chiselTests/ModuleExplicitResetSpec.scala | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/test/scala/chiselTests/ModuleExplicitResetSpec.scala') 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) - } - } } -- cgit v1.2.3