3
0
Fork 0
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:
whitequark 2019-01-04 13:06:51 +00:00
parent f042559e9d
commit 211c26a4c9
7 changed files with 762 additions and 22 deletions

View 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