summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/Chisel')
-rw-r--r--src/main/scala/Chisel/Core.scala3
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)