3
0
Fork 0
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:
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 @@
// 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