summaryrefslogtreecommitdiff
path: root/manual/PRESENTATION_ExAdv/macc_simple_test_02.v
blob: 3630102faf08a6d90685ca26e97b83cd4730b579 (plain)
1
2
3
4
5
6
module test(a, b, c, d, x, y);
input [15:0] a, b, c, d;
input [31:0] x;
output [31:0] y;
assign y = a*b + (c*d + x);
endmodule