aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/Tlb.fir
diff options
context:
space:
mode:
authorazidar2015-05-19 20:16:53 -0700
committerazidar2015-05-19 20:16:53 -0700
commit0faab2b1efb266bc8000b11a474438401ff5af83 (patch)
tree495f90290e9602535fc8e57f04dc620b0c6864ed /test/passes/jacktest/Tlb.fir
parent8feaa0a5ae0479b4063771202d7ad0e93d39c247 (diff)
Updated tests
Diffstat (limited to 'test/passes/jacktest/Tlb.fir')
-rw-r--r--test/passes/jacktest/Tlb.fir18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/passes/jacktest/Tlb.fir b/test/passes/jacktest/Tlb.fir
deleted file mode 100644
index a86b53d6..00000000
--- a/test/passes/jacktest/Tlb.fir
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -X flo -p cTwd | tee %s.out | FileCheck %s
-; CHECK: Done!
-circuit Tbl :
- module Tbl :
- output o : UInt<16>
- input i : UInt<16>
- input d : UInt<16>
- input we : UInt<1>
-
- mem m : UInt<10>[256]
- node T_12 = UInt<1>(0)
- o := Pad(T_12,?)
- when we :
- accessor T_13 = m[i]
- T_13 := Pad(d,?)
- else :
- accessor T_14 = m[i]
- o := Pad(T_14,?)