aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorazidar2016-01-25 16:20:12 -0800
committerazidar2016-01-25 16:20:12 -0800
commit84d9509cb943c859a2d469c56d8973a5efded071 (patch)
treeb1a0ef220098dec4b6da48b629aca61f99fba4a8 /test
parenteeb565de1005927bcfd7bde15bd1d4e09394cb78 (diff)
Fixed bug where poisons were not being declared
Diffstat (limited to 'test')
-rw-r--r--test/passes/jacktest/Tbl.fir34
1 files changed, 18 insertions, 16 deletions
diff --git a/test/passes/jacktest/Tbl.fir b/test/passes/jacktest/Tbl.fir
index f760af68..5feb71bb 100644
--- a/test/passes/jacktest/Tbl.fir
+++ b/test/passes/jacktest/Tbl.fir
@@ -1,19 +1,21 @@
; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
;CHECK: Done!
-circuit Tbl :
- module Tbl :
- input i : UInt<16>
- input d : UInt<16>
+
+circuit Tbl :
+ module Tbl :
input clk : Clock
- output o : UInt<16>
- input we : UInt<1>
-
- cmem m : UInt<10>[256]
- o <= UInt<1>(0)
- when we :
- write mport T_13 = m[i],clk
- node T_14 = bits(d, 9, 0)
- T_13 <= T_14
- else :
- read mport T_15 = m[i],clk
- o <= T_15
+ input reset : UInt<1>
+ output io : {flip wi : UInt<3>, flip ri : UInt<3>, flip we : UInt<1>, flip d : UInt<3>, o : UInt<3>}
+
+ io.o <= UInt<1>("h00")
+ cmem m : UInt<3>[8]
+ infer mport T_12 = m[io.ri], clk
+ io.o <= T_12
+ when io.we :
+ infer mport T_13 = m[io.wi], clk
+ T_13 <= io.d
+ node T_14 = eq(io.ri, io.wi)
+ when T_14 :
+ io.o <= io.d
+ skip
+ skip