Sign in
foss-fpga-tools
/
third_party
/
yosys
/
8b68a939f451731cc82fd03b1048d9aab471f47b
/
.
/
tests
/
asicworld
/
code_verilog_tutorial_multiply.v
blob: 1912e1e26ffb941099b3fca152e9c5022bcf4640 [
file
] [
log
] [
blame
]
module
muliply
(
a
,
product
);
input
[
3
:
0
]
a
;
output
[
4
:
0
]
product
;
wire
[
4
:
0
]
product
;
assign product
=
a
<<
1
;
endmodule