3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-07 19:51:23 +00:00

Progress in presentation

This commit is contained in:
Clifford Wolf 2014-02-20 23:44:28 +01:00
parent 4e43cb7317
commit 9351e4d3ca
4 changed files with 51 additions and 11 deletions

View file

@ -1,6 +1,13 @@
module test(a, b, c, d, e, f, y);
module test1(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
module test2(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