mirror of
https://github.com/YosysHQ/sby.git
synced 2025-11-03 14:27:53 +00:00
21 lines
223 B
Text
21 lines
223 B
Text
[tasks]
|
|
abc
|
|
abc_keepgoing
|
|
|
|
[options]
|
|
mode prove
|
|
|
|
[engines]
|
|
abc: abc pdr
|
|
abc_keepgoing: abc --keep-going pdr
|
|
|
|
[script]
|
|
read -sv test.sv
|
|
prep -top top
|
|
|
|
[file test.sv]
|
|
module top(input i, output o);
|
|
|
|
assign o = ~i;
|
|
|
|
endmodule
|