Sign in
foss-fpga-tools
/
third_party
/
yosys
/
952f56c1a1890b08a32ae19319bc140ba8ed32f6
/
.
/
manual
/
PRESENTATION_ExAdv
/
macc_xilinx_xmap.v
blob: 06372f5af0d9b7c290cc2b3f6434f7289ee11da5 [
file
] [
log
] [
blame
]
module
DSP48_MACC
(
a
,
b
,
c
,
y
);
input
[
17
:
0
]
a
;
input
[
24
:
0
]
b
;
input
[
47
:
0
]
c
;
output
[
47
:
0
]
y
;
assign y
=
a
*
b
+
c
;
endmodule