Make testcase clearer with \o having its own init

This commit is contained in:
Eddie Hung 2019-12-11 23:48:09 -08:00
parent 9a892199f7
commit 61a1f3f49b
1 changed files with 2 additions and 0 deletions

View 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));