aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/ModuleVec.fir
diff options
context:
space:
mode:
authorazidar2015-12-09 18:31:45 -0800
committerazidar2016-01-16 14:28:17 -0800
commitbe78d49aa01c097978f69a3b022acb2047fdf438 (patch)
tree76dc4b32b5e6861938404ebb4d124ca5b87d13a5 /test/passes/jacktest/ModuleVec.fir
parentc427b31a1ef8361b643d5f7435aeb42472dfe626 (diff)
New memory works with verilog. Slowly changing tests and fixing bugs.
Decided to not have Conditionally in low firrtl - instead, Print and Stop have enables
Diffstat (limited to 'test/passes/jacktest/ModuleVec.fir')
-rw-r--r--test/passes/jacktest/ModuleVec.fir16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/passes/jacktest/ModuleVec.fir b/test/passes/jacktest/ModuleVec.fir
index 8ac27aaf..9a8e7f2c 100644
--- a/test/passes/jacktest/ModuleVec.fir
+++ b/test/passes/jacktest/ModuleVec.fir
@@ -6,13 +6,13 @@ circuit ModuleVec :
output out : UInt<32>
node T_33 = addw(in, UInt<1>(1))
- out := T_33
+ out <= T_33
module PlusOne_25 :
input in : UInt<32>
output out : UInt<32>
node T_34 = addw(in, UInt<1>(1))
- out := T_34
+ out <= T_34
module ModuleVec :
input ins : UInt<32>[2]
output outs : UInt<32>[2]
@@ -20,9 +20,9 @@ circuit ModuleVec :
inst T_35 of PlusOne
inst T_36 of PlusOne_25
wire pluses : {flip in : UInt<32>, out : UInt<32>}[2]
- pluses[0] := T_35
- pluses[1] := T_36
- pluses[0].in := ins[0]
- outs[0] := pluses[0].out
- pluses[1].in := ins[1]
- outs[1] := pluses[1].out
+ pluses[0] <= T_35
+ pluses[1] <= T_36
+ pluses[0].in <= ins[0]
+ outs[0] <= pluses[0].out
+ pluses[1].in <= ins[1]
+ outs[1] <= pluses[1].out