aboutsummaryrefslogtreecommitdiff
path: root/test/chisel3
diff options
context:
space:
mode:
Diffstat (limited to 'test/chisel3')
-rw-r--r--test/chisel3/Test.fir9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/chisel3/Test.fir b/test/chisel3/Test.fir
new file mode 100644
index 00000000..aea7acde
--- /dev/null
+++ b/test/chisel3/Test.fir
@@ -0,0 +1,9 @@
+; RUN: firrtl -i %s -o %s.v -X verilog -p c | tee %s.out | FileCheck %s
+; CHECK: Done!
+
+circuit Test :
+ module Test :
+ wire x : UInt<10>
+ x := UInt(5151)
+ x := UInt(515151512512412414124124124124)
+