mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 10:50:25 +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/pack1.v
Normal file
11
passes/tests/flowmap/pack1.v
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Exact reproduction of Figure 3(a) from 10.1109/92.285741.
|
||||
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