diff options
| author | Adam Izraelevitz | 2015-07-29 11:22:02 -0700 |
|---|---|---|
| committer | Adam Izraelevitz | 2015-07-29 11:22:02 -0700 |
| commit | 6ce20db7e2f81cd3ef8f859614f423bea897484b (patch) | |
| tree | f1a60ab050d9dda6aca63bc4b6be9df138adb4f2 /test/chisel3 | |
| parent | 0c7aca561aef907314b0d9c9737fcea04ae6ce82 (diff) | |
Add bigint support.
Diffstat (limited to 'test/chisel3')
| -rw-r--r-- | test/chisel3/Test.fir | 9 |
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") |
