diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/Chisel/Core.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/scala/Chisel/Core.scala b/src/main/scala/Chisel/Core.scala index 10ebb45b..e18920b5 100644 --- a/src/main/scala/Chisel/Core.scala +++ b/src/main/scala/Chisel/Core.scala @@ -1064,8 +1064,9 @@ abstract class Module(private[Chisel] _reset: Bool = null) extends Id { } } - // TODO: actually implement assert + // TODO: actually implement these def assert(cond: Bool, msg: String): Unit = {} + def printf(message: String, args: Bits*): Unit = {} } // TODO: actually implement BlackBox (this hack just allows them to compile) |
