aboutsummaryrefslogtreecommitdiff
path: root/test/passes/infer-widths/simple.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/infer-widths/simple.fir')
-rw-r--r--test/passes/infer-widths/simple.fir12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/infer-widths/simple.fir b/test/passes/infer-widths/simple.fir
index 13452ae2..e0d23c37 100644
--- a/test/passes/infer-widths/simple.fir
+++ b/test/passes/infer-widths/simple.fir
@@ -6,19 +6,19 @@ circuit top :
input clk : Clock
input reset : UInt<1>
wire e : UInt<30>
- e := UInt(1)
+ e <= UInt(1)
reg y : UInt,clk,reset
- y := e
+ y <= e
wire a : UInt<20>
- a := UInt(1)
+ a <= UInt(1)
wire b : UInt<10>
- b := UInt(1)
+ b <= UInt(1)
wire c : UInt
- c := UInt(1)
+ c <= UInt(1)
wire z : UInt
- z := mux(c,a,b)
+ z <= mux(c,a,b)