3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 07:27:58 +00:00

Merge branch 'master' of github.com:YosysHQ/yosys

This commit is contained in:
Eddie Hung 2019-09-06 22:52:00 -07:00
commit de8adecd39
28 changed files with 717 additions and 213 deletions

View file

@ -5,5 +5,7 @@ always @*
endmodule
module abc9_test028(input i, output o);
unknown u(~i, o);
wire w;
unknown u(~i, w);
unknown2 u2(w, o);
endmodule