3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-14 12:58:45 +00:00
yosys/manual/PRESENTATION_ExAdv/macc_xilinx_test.v
2014-02-20 20:44:41 +01:00

7 lines
133 B
Verilog

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