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