Sign in
foss-fpga-tools
/
third_party
/
yosys
/
952f56c1a1890b08a32ae19319bc140ba8ed32f6
/
.
/
manual
/
PRESENTATION_ExAdv
/
macc_simple_test.v
blob: 6358a47c9720a8fb8b1d89a5d5f5b138b7eac495 [
file
] [
log
] [
blame
]
module
test
(
a
,
b
,
c
,
d
,
y
);
input
[
15
:
0
]
a
,
b
;
input
[
31
:
0
]
c
,
d
;
output
[
31
:
0
]
y
;
assign y
=
a
*
b
+
c
+
d
;
endmodule