Make testcase clearer with \o having its own init
authorEddie Hung <eddie@fpgeh.com>
Thu, 12 Dec 2019 07:48:09 +0000 (23:48 -0800)
committerEddie Hung <eddie@fpgeh.com>
Thu, 12 Dec 2019 07:48:09 +0000 (23:48 -0800)
tests/sat/initval.ys

index 337aa9343961a971bdd3cd56018165f8761c0848..6cb68a8d37d31601e97a1b1b31e7711d23a5b7b5 100644 (file)
@@ -6,6 +6,8 @@ sat -seq 10 -prove-asserts
 design -reset
 read_verilog -icells <<EOT
 module top(input clk, i, output o, p);
+(* init = 1'b0 *)
+wire o;
 (* init = 1'bx *)
 wire p = o;
 $_DFF_P_ dff (.C(clk), .D(i), .Q(o));