diff options
| author | Jim Lawson | 2016-10-06 09:41:16 -0700 |
|---|---|---|
| committer | GitHub | 2016-10-06 09:41:16 -0700 |
| commit | 357d80176eeeb696808cb4efb038843c3c49e2a6 (patch) | |
| tree | 1945c13cd45794199f64df27e3602c4d889ce776 /src/test/scala/cookbook/UInt2Bundle.scala | |
| parent | a37973e0ed6150fc94d7e7a66640217e19b165a7 (diff) | |
| parent | 7e5aef460e089b3dfd53ddd181f9384cc25145d7 (diff) | |
Merge pull request #285 from ucb-bar/cookbook-tests
Add Cookbook tests
Diffstat (limited to 'src/test/scala/cookbook/UInt2Bundle.scala')
| -rw-r--r-- | src/test/scala/cookbook/UInt2Bundle.scala | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/scala/cookbook/UInt2Bundle.scala b/src/test/scala/cookbook/UInt2Bundle.scala new file mode 100644 index 00000000..fbf7fe8a --- /dev/null +++ b/src/test/scala/cookbook/UInt2Bundle.scala @@ -0,0 +1,30 @@ +// See LICENSE for license details. + +package cookbook + +import chisel3._ + +/* ### How do I create a Bundle from a UInt? + * + * On an instance of the Bundle, call the method fromBits with the UInt as the argument + */ +class UInt2Bundle extends CookbookTester(0) { + // Example + class MyBundle extends Bundle { + val foo = UInt(width = 4) + val bar = UInt(width = 4) + } + val uint = UInt(0xb4) + val bundle = (new MyBundle).fromBits(uint) + printf(p"$bundle") // Bundle(foo -> 11, bar -> 4) + + // Test + assert(bundle.foo === UInt(0xb)) + assert(bundle.bar === UInt(0x4)) +} + +class UInt2BundleSpec extends CookbookSpec { + "UInt2Bundle" should "work" in { + assertTesterPasses { new UInt2Bundle } + } +} |
