diff options
Diffstat (limited to 'test/features/BigInt.fir')
| -rw-r--r-- | test/features/BigInt.fir | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/features/BigInt.fir b/test/features/BigInt.fir new file mode 100644 index 00000000..225f1d8b --- /dev/null +++ b/test/features/BigInt.fir @@ -0,0 +1,10 @@ +; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s +circuit Top : + module Top : + node x = UInt("h2") + node y = UInt("h100000") + node z = UInt("h00") + +;CHECK: node x = UInt("h2") +;CHECK: node z = UInt("h0") +;CHECK: Done! |
