Sign in
foss-fpga-tools
/
third_party
/
yosys
/
9204c444650ff1ca39ef206cf4a61545294f7549
/
.
/
manual
/
PRESENTATION_ExAdv
/
sym_mul_cells.v
blob: ce1771544f6db2df97d6086b525d7bea4290b2e4 [
file
] [
log
] [
blame
]
module
MYMUL
(
A
,
B
,
Y
);
parameter WIDTH
=
1
;
input
[
WIDTH
-
1
:
0
]
A
,
B
;
output
[
WIDTH
-
1
:
0
]
Y
;
assign Y
=
A
*
B
;
endmodule