mirror of https://github.com/YosysHQ/yosys.git
11 lines
130 B
Coq
11 lines
130 B
Coq
|
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
|