aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sat
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-23 09:11:04 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-23 09:11:04 -0700
commit10c41a5cf51427d96f465113decb752e501e926e (patch)
treeef9466069ce2face060833b7de50c6f561f6db60 /tests/sat
parent51ffb093b5beeb5e2c687d2bf34b13d246f3fc7d (diff)
downloadyosys-10c41a5cf51427d96f465113decb752e501e926e.tar.gz
yosys-10c41a5cf51427d96f465113decb752e501e926e.tar.bz2
yosys-10c41a5cf51427d96f465113decb752e501e926e.zip
Blocking assignment
Diffstat (limited to 'tests/sat')
-rw-r--r--tests/sat/initval.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sat/initval.v b/tests/sat/initval.v
index d46ccae48..fcec9dd8c 100644
--- a/tests/sat/initval.v
+++ b/tests/sat/initval.v
@@ -13,7 +13,7 @@ module test(input clk, input [3:0] bar, output [3:0] foo);
last_bar <= bar;
always @*
- asdf[2:0] <= 3'b111;
+ asdf[2:0] = 3'b111;
assert property (foo == {last_bar[3:2], bar[1:0]});
endmodule