mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-28 06:57:57 +00:00
Start opt_hier
This commit is contained in:
parent
99f7d79abb
commit
22a44e4333
9 changed files with 575 additions and 6 deletions
7
tests/opt/opt_hier_simple2.v
Normal file
7
tests/opt/opt_hier_simple2.v
Normal file
|
@ -0,0 +1,7 @@
|
|||
module m(input [3:0] i, output [3:0] y);
|
||||
assign y = i + 1;
|
||||
endmodule
|
||||
|
||||
module top(output [3:0] y);
|
||||
m inst(.i(4), .y(y));
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue