summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/Chisel/BitPat.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/Chisel/BitPat.scala b/src/main/scala/Chisel/BitPat.scala
index cf412542..96206f63 100644
--- a/src/main/scala/Chisel/BitPat.scala
+++ b/src/main/scala/Chisel/BitPat.scala
@@ -54,7 +54,7 @@ object BitPat {
*
* @note the BitPat must not have don't care bits (will error out otherwise)
*/
- implicit def bitPatToUInt(x: BitPat): UInt = {
+ def bitPatToUInt(x: BitPat): UInt = {
require(x.mask == (BigInt(1) << x.getWidth) - 1)
UInt(x.value, x.getWidth)
}
@@ -65,7 +65,7 @@ object BitPat {
*
* @note the UInt must be a literal
*/
- implicit def apply(x: UInt): BitPat = {
+ def apply(x: UInt): BitPat = {
require(x.isLit)
BitPat("b" + x.litValue.toString(2))
}