projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a89219
)
Make testcase clearer with \o having its own init
author
Eddie Hung
<eddie@fpgeh.com>
Thu, 12 Dec 2019 07:48:09 +0000
(23:48 -0800)
committer
Eddie Hung
<eddie@fpgeh.com>
Thu, 12 Dec 2019 07:48:09 +0000
(23:48 -0800)
tests/sat/initval.ys
patch
|
blob
|
history
diff --git
a/tests/sat/initval.ys
b/tests/sat/initval.ys
index 337aa9343961a971bdd3cd56018165f8761c0848..6cb68a8d37d31601e97a1b1b31e7711d23a5b7b5 100644
(file)
--- a/
tests/sat/initval.ys
+++ b/
tests/sat/initval.ys
@@
-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));