aboutsummaryrefslogtreecommitdiff
path: root/test/chisel3/Outer.fir
diff options
context:
space:
mode:
authorazidar2015-08-24 10:58:49 -0700
committerazidar2015-08-24 10:58:49 -0700
commit50cf7a4823d69967dcb2b10cdef892b0ab5f2184 (patch)
treeb8a4d9fc9b2063703a5f37fec538f7a220cc7681 /test/chisel3/Outer.fir
parent02a7fb53fc424346a1693f23661a1b1a4a867c4f (diff)
Removed old chisel3 tests that all failed for syntax reasons. Tests should now be small examples, categorized by either passes, errors, or features.
Diffstat (limited to 'test/chisel3/Outer.fir')
-rw-r--r--test/chisel3/Outer.fir19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/chisel3/Outer.fir b/test/chisel3/Outer.fir
deleted file mode 100644
index 886a01ba..00000000
--- a/test/chisel3/Outer.fir
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c | tee %s.out | FileCheck %s
-;CHECK: Done!
-
-circuit Outer :
- module Inner :
- input in : UInt<8>
- output out : UInt<8>
-
- node T_15 = add-wrap(in, UInt<1>(1))
- out := T_15
- module Outer :
- input in : UInt<8>
- output out : UInt<8>
-
- inst T_16 of Inner
- T_16.in := in
- node T_17 = mul(T_16.out, UInt<2>(2))
- node T_18 = bits(T_17, 7, 0)
- out := T_18