Sign in
foss-fpga-tools
/
third_party
/
yosys
/
a3a7bb9bf7160d434db7a4737e68f6b015b221ef
/
.
/
tests
/
arch
/
common
/
mul.v
blob: 437a91cfcfd6b39f9756693e11d357d5f580d0c4 [
file
]
module
top
(
input
[
5
:
0
]
x
,
input
[
5
:
0
]
y
,
output
[
11
:
0
]
A
,
);
assign A
=
x
*
y
;
endmodule