Sign in
foss-fpga-tools
/
third_party
/
yosys
/
8b68a939f451731cc82fd03b1048d9aab471f47b
/
.
/
manual
/
PRESENTATION_ExAdv
/
sym_mul_test.v
blob: eb715f83d7151794ab3a3c53f96266a263b08d72 [
file
] [
log
] [
blame
]
module
test
(
A
,
B
,
C
,
Y1
,
Y2
);
input
[
7
:
0
]
A
,
B
,
C
;
output
[
7
:
0
]
Y1
=
A
*
B
;
output
[
15
:
0
]
Y2
=
A
*
C
;
endmodule