summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/BitwiseOps.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/chiselTests/BitwiseOps.scala')
-rw-r--r--src/test/scala/chiselTests/BitwiseOps.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/scala/chiselTests/BitwiseOps.scala b/src/test/scala/chiselTests/BitwiseOps.scala
index 08999a1b..0aaa3c57 100644
--- a/src/test/scala/chiselTests/BitwiseOps.scala
+++ b/src/test/scala/chiselTests/BitwiseOps.scala
@@ -11,10 +11,10 @@ class BitwiseOpsTester(w: Int, _a: Int, _b: Int) extends BasicTester {
val mask = (1 << w) - 1
val a = UInt(_a, w)
val b = UInt(_b, w)
- assert(~a === UInt(mask & ~_a))
- assert((a & b) === UInt(_a & _b))
- assert((a | b) === UInt(_a | _b))
- assert((a ^ b) === UInt(_a ^ _b))
+ assert(~a === UInt.Lit(mask & ~_a))
+ assert((a & b) === UInt.Lit(_a & _b))
+ assert((a | b) === UInt.Lit(_a | _b))
+ assert((a ^ b) === UInt.Lit(_a ^ _b))
stop()
}