summaryrefslogtreecommitdiff
path: root/src/test/scala/cookbook/Bundle2UInt.scala
diff options
context:
space:
mode:
authorRichard Lin2016-11-21 13:44:26 -0800
committerGitHub2016-11-21 13:44:26 -0800
commit3b4755716a74d4711efa3ce6799742479e17e80b (patch)
tree56652eaa478d5dfd8cddfbe2795c0123d39d230d /src/test/scala/cookbook/Bundle2UInt.scala
parentcd6eb41275381a4399a8a88c886110d276bb805c (diff)
parent81e5d00d18a5ba9ae33c10219a270148002fc672 (diff)
Merge pull request #372 from ucb-bar/onetrueliteral
Standardize the One True Way of specifying literals
Diffstat (limited to 'src/test/scala/cookbook/Bundle2UInt.scala')
-rw-r--r--src/test/scala/cookbook/Bundle2UInt.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/scala/cookbook/Bundle2UInt.scala b/src/test/scala/cookbook/Bundle2UInt.scala
index d74218a8..cb9498d1 100644
--- a/src/test/scala/cookbook/Bundle2UInt.scala
+++ b/src/test/scala/cookbook/Bundle2UInt.scala
@@ -11,17 +11,17 @@ import chisel3._
class Bundle2UInt extends CookbookTester(0) {
// Example
class MyBundle extends Bundle {
- val foo = UInt(width = 4)
- val bar = UInt(width = 4)
+ val foo = UInt(4.W)
+ val bar = UInt(4.W)
}
val bundle = Wire(new MyBundle)
- bundle.foo := UInt(0xc)
- bundle.bar := UInt(0x3)
+ bundle.foo := 0xc.U
+ bundle.bar := 0x3.U
val uint = bundle.asUInt
printf(p"$uint") // 195
// Test
- assert(uint === UInt(0xc3))
+ assert(uint === 0xc3.U)
}
class Bundle2UIntSpec extends CookbookSpec {