diff options
| -rw-r--r-- | src/main/scala/Core.scala | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/scala/Core.scala b/src/main/scala/Core.scala index 8dd60bb8..d94e08b5 100644 --- a/src/main/scala/Core.scala +++ b/src/main/scala/Core.scala @@ -1135,6 +1135,9 @@ abstract class Module(private[Chisel] _reset: Bool = null) extends Id { } } } + + // TODO: actually implement assert + def assert(cond: Bool, msg: String): Unit = {} } // TODO: actually implement BlackBox (this hack just allows them to compile) |
