3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-08 12:11:24 +00:00

Merge remote-tracking branch 'origin/master' into xc7dsp

This commit is contained in:
Eddie Hung 2019-09-05 13:01:27 -07:00
commit e742478e1d
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