Sign in
foss-fpga-tools
/
third_party
/
yosys
/
1d148491c5a9b816297c08e5ea3a98ff0bd3623d
/
.
/
manual
/
PRESENTATION_ExAdv
/
macc_simple_xmap.v
blob: 42f5bae958e594f7dcc3541934dd1bd8620708d6 [
file
]
module
macc_16_16_32
(
a
,
b
,
c
,
y
);
input
[
15
:
0
]
a
,
b
;
input
[
31
:
0
]
c
;
output
[
31
:
0
]
y
;
assign y
=
a
*
b
+
c
;
endmodule