Sign in
foss-fpga-tools
/
prjtrellis
/
dc4120e76750ed372feab637f299585908431c35
/
.
/
minitests
/
dsp
/
preadd.v
blob: 8b753f20cea5ddc46e832607069669ef2c959bec [
file
] [
log
] [
blame
]
module
top
(
input
[
8
:
0
]
a
,
input
[
8
:
0
]
b
,
input
[
8
:
0
]
c
,
output
[
17
:
0
]
q
);
wire
[
8
:
0
]
add
=
a
+
b
;
(*
syn_multstyle
=
"block_mult"
*)
wire
[
17
:
0
]
res
=
add
*
c
;
assign q
=
res
;
endmodule