mirror of https://github.com/YosysHQ/yosys.git
18 lines
395 B
Plaintext
18 lines
395 B
Plaintext
|
read_verilog -formal <<EOT
|
||
|
module top;
|
||
|
foo bar();
|
||
|
foo asdf();
|
||
|
winnie the_pooh();
|
||
|
|
||
|
wire [1023:0] _RUNME0 = "select -assert-count 2 t:foo";
|
||
|
wire [1023:0] _RUNME1 = "select -assert-count 1 t:winnie";
|
||
|
wire [1023:0] _DELETE = "delete c:bar";
|
||
|
endmodule
|
||
|
EOT
|
||
|
|
||
|
script -select w:_RUNME*
|
||
|
|
||
|
select w:_DELETE
|
||
|
script -select
|
||
|
select -assert-count 1 t:foo
|