aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/Rom.fir
diff options
context:
space:
mode:
authorAdam Izraelevitz2016-08-15 10:32:41 -0700
committerGitHub2016-08-15 10:32:41 -0700
commitbebd04c4c68c320b2b72325e348c726dc33beae6 (patch)
tree69f6d4da577977cc7ff428b0545bb4735507aad0 /test/passes/jacktest/Rom.fir
parentcca37c46fc0848f5dbf5f95ba60755ed6d60712b (diff)
Remove stanza (#231)
* Removed stanza implementation/tests. In the future we can move the stanza tests over, but for now they should be deleted. * Added back integration .fir files * Added Makefile to give Travis hooks * Added firrtl script (was ignored before)
Diffstat (limited to 'test/passes/jacktest/Rom.fir')
-rw-r--r--test/passes/jacktest/Rom.fir26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/passes/jacktest/Rom.fir b/test/passes/jacktest/Rom.fir
deleted file mode 100644
index db76b9c7..00000000
--- a/test/passes/jacktest/Rom.fir
+++ /dev/null
@@ -1,26 +0,0 @@
-; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | 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)
- node T_39 = r[addr]
- out <= T_39