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