aboutsummaryrefslogtreecommitdiff
path: root/test/chisel3/Rom.fir
diff options
context:
space:
mode:
authorjackbackrack2015-04-20 15:21:30 -0700
committerjackbackrack2015-04-20 15:21:30 -0700
commit6204b6d44aef2f47a8009ad06dfd4e09ce7ce950 (patch)
tree8795de870f20086b0615f7c402c234b79e6a71a0 /test/chisel3/Rom.fir
parent5298af3dffcd0985922a2a8317fa6a67e192a9c0 (diff)
parent7617e33993abf9f6be357e0261755a4736c2e085 (diff)
merge
Diffstat (limited to 'test/chisel3/Rom.fir')
-rw-r--r--test/chisel3/Rom.fir24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/chisel3/Rom.fir b/test/chisel3/Rom.fir
deleted file mode 100644
index bb4960a4..00000000
--- a/test/chisel3/Rom.fir
+++ /dev/null
@@ -1,24 +0,0 @@
-circuit Rom :
- module Rom :
- output out : UInt(8)
- input addr : UInt(8)
-
- node T_24 : UInt(8) = UInt(0, 8)
- node T_25 : UInt(8) = UInt(1, 8)
- node T_26 : UInt(8) = UInt(2, 8)
- node T_27 : UInt(8) = UInt(3, 8)
- node T_28 : UInt(8) = UInt(4, 8)
- node T_29 : UInt(8) = UInt(5, 8)
- node T_30 : UInt(8) = UInt(6, 8)
- node T_31 : UInt(8) = UInt(7, 8)
- wire r : UInt(8)[8]
- r.0 := T_24
- r.1 := T_25
- r.2 := T_26
- r.3 := T_27
- r.4 := T_28
- r.5 := T_29
- r.6 := T_30
- r.7 := T_31
- accessor T_32 = r[addr]
- out := T_32 \ No newline at end of file