Sign in
foss-fpga-tools
/
third_party
/
yosys
/
de3476cc233c1c78d3e956aa7e9bd1003ac37f66
/
.
/
examples
/
osu035
/
example.v
blob: 0f043e5fc1e3df4b779c59b80773f016d73a0dd1 [
file
]
module
top
(
input clk
,
input
[
7
:
0
]
a
,
b
,
output reg
[
15
:
0
]
c
);
always
@(
posedge clk
)
c
<=
a
*
b
;
endmodule