summaryrefslogtreecommitdiff
path: root/manual/PRESENTATION_ExAdv/macc_xilinx_xmap.v
blob: 15bd04ed15eb7ba24b9a5b5669be269d1bed11f5 (plain)
1
2
3
4
5
6
7
8
9
10
module DSP48_MACC (a, b, c, y);

input [24:0] a;
input [17:0] b;
input [47:0] c;
output [47:0] y;

assign y = a*b + c;

endmodule