aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/Tlb.fir
diff options
context:
space:
mode:
authorazidar2015-04-27 11:14:06 -0700
committerazidar2015-04-27 11:14:06 -0700
commit2d2120a05549a5d31072aa792dc96fb7e6e7c629 (patch)
tree900e95aecdd6af6dc0e62a889ab2b81c8b4d2f80 /test/passes/jacktest/Tlb.fir
parent55a4ce521e06aa51aa005eb37c47918c0eece57c (diff)
Added on-reset
Diffstat (limited to 'test/passes/jacktest/Tlb.fir')
-rw-r--r--test/passes/jacktest/Tlb.fir12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/jacktest/Tlb.fir b/test/passes/jacktest/Tlb.fir
index 35442ac8..b458ac4a 100644
--- a/test/passes/jacktest/Tlb.fir
+++ b/test/passes/jacktest/Tlb.fir
@@ -2,13 +2,13 @@
; CHECK: Done!
circuit Tbl :
module Tbl :
- output o : UInt(16)
- input i : UInt(16)
- input d : UInt(16)
- input we : UInt(1)
+ 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(0, 1)
+ mem m : UInt<10>[256]
+ node T_12 = UInt<1>(0)
o := Pad(T_12,?)
when we :
accessor T_13 = m[i]