aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/Tbl.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/jacktest/Tbl.fir')
-rw-r--r--test/passes/jacktest/Tbl.fir6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/passes/jacktest/Tbl.fir b/test/passes/jacktest/Tbl.fir
index 22c5fd5c..4ae87360 100644
--- a/test/passes/jacktest/Tbl.fir
+++ b/test/passes/jacktest/Tbl.fir
@@ -9,11 +9,11 @@ circuit Tbl :
input we : UInt<1>
cmem m : UInt<10>[256],clk
- o := UInt<1>(0)
+ o <= UInt<1>(0)
when we :
infer accessor T_13 = m[i]
node T_14 = bits(d, 9, 0)
- T_13 := T_14
+ T_13 <= T_14
else :
infer accessor T_15 = m[i]
- o := T_15
+ o <= T_15