aboutsummaryrefslogtreecommitdiff
path: root/test/errors/gender/BulkWrong.fir
diff options
context:
space:
mode:
authorazidar2015-12-09 18:31:45 -0800
committerazidar2016-01-16 14:28:17 -0800
commitbe78d49aa01c097978f69a3b022acb2047fdf438 (patch)
tree76dc4b32b5e6861938404ebb4d124ca5b87d13a5 /test/errors/gender/BulkWrong.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/errors/gender/BulkWrong.fir')
-rw-r--r--test/errors/gender/BulkWrong.fir20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/errors/gender/BulkWrong.fir b/test/errors/gender/BulkWrong.fir
index 830e8156..1becd104 100644
--- a/test/errors/gender/BulkWrong.fir
+++ b/test/errors/gender/BulkWrong.fir
@@ -9,18 +9,18 @@ circuit BTB :
input in : {x : UInt<1>, flip y : {flip z : UInt<1>}}
output out : {x : UInt<1>, flip y : {flip z : UInt<1>}}
- in <> out
- out.y <> in.y
- out.y.z <> in.y.z
+ in <- out
+ out.y <- in.y
+ out.y.z <- in.y.z
wire w : {x : UInt<1>, flip y : {flip z : UInt<1>}}
- w <> in
- in.y <> w.y
- in.y.z <> w.y.z
+ w <- in
+ in.y <- w.y
+ in.y.z <- w.y.z
- w.x := addw(in.x,in.y.z)
+ w.x <= addw(in.x,in.y.z)
- out <> in
- in.y <> out.y
- in.y.z <> out.y.z
+ out <- in
+ in.y <- out.y
+ in.y.z <- out.y.z