summaryrefslogtreecommitdiff
path: root/src/test/scala
diff options
context:
space:
mode:
authorJim Lawson2015-07-15 14:54:36 -0700
committerJim Lawson2015-07-24 15:50:54 -0700
commita7d7f64e2a29e5737f23a5d2a11b070c83a0be79 (patch)
tree9a485b92a6b0ee2c50b9c6150e72c5d25475ba5a /src/test/scala
parent9ff6673f54b18386fd205eeb8be8d3c21a40fdca (diff)
Restore Vec() factory signature; replace MInt with BitPat.
Diffstat (limited to 'src/test/scala')
-rw-r--r--src/test/scala/ChiselTests/Decoder.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/ChiselTests/Decoder.scala b/src/test/scala/ChiselTests/Decoder.scala
index c9b9f418..0a295678 100644
--- a/src/test/scala/ChiselTests/Decoder.scala
+++ b/src/test/scala/ChiselTests/Decoder.scala
@@ -2,7 +2,7 @@ package ChiselTests
import Chisel._
object Insts {
- def ADD = MInt("b0000000??????????000?????0110011")
+ def ADD = BitPat("b0000000??????????000?????0110011")
}
class Decoder extends Module {