mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-19 01:32:20 +00:00
flowmap: implement depth relaxation.
This commit is contained in:
parent
f042559e9d
commit
211c26a4c9
7 changed files with 762 additions and 22 deletions
11
passes/tests/flowmap/pack1p.v
Normal file
11
passes/tests/flowmap/pack1p.v
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Like pack1.v, but results in a simpler network.
|
||||
module top(...);
|
||||
input a,b,c,d,e,f,g,h;
|
||||
wire x = c|d;
|
||||
wire y = e&f;
|
||||
wire u = a&b;
|
||||
wire v = x|y;
|
||||
wire w = g&h;
|
||||
output s = u|v;
|
||||
output t = v|w;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue