3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-10 05:00:52 +00:00

Progress in presentation

This commit is contained in:
Clifford Wolf 2014-02-20 20:44:41 +01:00
parent 0dadfed46d
commit b0e84802ec
5 changed files with 207 additions and 0 deletions

View file

@ -0,0 +1,6 @@
module test(a, b, c, d, e, f, y);
input [19:0] a, b, c;
input [15:0] d, e, f;
output [41:0] y;
assign y = a*b + c*d + e*f;
endmodule