aboutsummaryrefslogtreecommitdiff
path: root/test/chisel3/Rom.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/Rom.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/Rom.fir')
-rw-r--r--test/chisel3/Rom.fir27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/chisel3/Rom.fir b/test/chisel3/Rom.fir
deleted file mode 100644
index f91593a4..00000000
--- a/test/chisel3/Rom.fir
+++ /dev/null
@@ -1,27 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c | tee %s.out | FileCheck %s
-;CHECK: Done!
-
-circuit Rom :
- module Rom :
- output out : UInt<5>
- input addr : UInt<4>
-
- wire r : UInt<5>[16]
- r[0] := UInt<5>(0)
- r[1] := UInt<5>(2)
- r[2] := UInt<5>(4)
- r[3] := UInt<5>(6)
- r[4] := UInt<5>(8)
- r[5] := UInt<5>(10)
- r[6] := UInt<5>(12)
- r[7] := UInt<5>(14)
- r[8] := UInt<5>(16)
- r[9] := UInt<5>(18)
- r[10] := UInt<5>(20)
- r[11] := UInt<5>(22)
- r[12] := UInt<5>(24)
- r[13] := UInt<5>(26)
- r[14] := UInt<5>(28)
- r[15] := UInt<5>(30)
- infer accessor T_39 = r[addr]
- out := T_39