mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-12 20:51:27 +00:00
Start opt_hier
This commit is contained in:
parent
99f7d79abb
commit
22a44e4333
9 changed files with 575 additions and 6 deletions
8
tests/opt/opt_hier_simple1.v
Normal file
8
tests/opt/opt_hier_simple1.v
Normal file
|
@ -0,0 +1,8 @@
|
|||
module m(input a, output y1, output y2);
|
||||
assign y1 = a;
|
||||
assign y2 = a;
|
||||
endmodule
|
||||
|
||||
module top(input a, output y2, output y1);
|
||||
m inst(.a(a), .y1(y1), .y2(y2));
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue