3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00
This commit is contained in:
Eddie Hung 2019-06-28 13:32:09 -07:00
parent b3f162e94e
commit 2c6aaef3db

17
tests/various/script.ys Normal file
View file

@ -0,0 +1,17 @@
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