aboutsummaryrefslogtreecommitdiff
path: root/test/chisel3/Test.fir
diff options
context:
space:
mode:
authorAdam Izraelevitz2015-07-29 11:22:02 -0700
committerAdam Izraelevitz2015-07-29 11:22:02 -0700
commit6ce20db7e2f81cd3ef8f859614f423bea897484b (patch)
treef1a60ab050d9dda6aca63bc4b6be9df138adb4f2 /test/chisel3/Test.fir
parent0c7aca561aef907314b0d9c9737fcea04ae6ce82 (diff)
Add bigint support.
Diffstat (limited to 'test/chisel3/Test.fir')
-rw-r--r--test/chisel3/Test.fir9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/chisel3/Test.fir b/test/chisel3/Test.fir
index aea7acde..1a39b93a 100644
--- a/test/chisel3/Test.fir
+++ b/test/chisel3/Test.fir
@@ -3,7 +3,10 @@
circuit Test :
module Test :
- wire x : UInt<10>
- x := UInt(5151)
- x := UInt(515151512512412414124124124124)
+ wire x : UInt
+ x := UInt(0)
+ x := UInt(1)
+ x := UInt(10)
+ x := UInt(21474836)
+ x := UInt("h21474836")