This website requires JavaScript.
Explore
Help
Sign In
riscv
/
yosys
mirror of
https://github.com/YosysHQ/yosys.git
Watch
1
Star
0
Fork
You've already forked yosys
0
Code
Issues
Projects
Releases
Wiki
Activity
9bd9db56c8
yosys
/
tests
/
arch
/
common
/
mul.v
10 lines
109 B
Coq
Raw
Normal View
History
Unescape
Escape
Add tests for ECP5 architecture
2019-09-03 03:53:37 -05:00
module
top
(
Unify verilog style
2019-10-18 05:50:24 -05:00
input
[
5
:
0
]
x
,
input
[
5
:
0
]
y
,
Add tests for ECP5 architecture
2019-09-03 03:53:37 -05:00
Unify verilog style
2019-10-18 05:50:24 -05:00
output
[
11
:
0
]
A
,
)
;
assign
A
=
x
*
y
;
Add tests for ECP5 architecture
2019-09-03 03:53:37 -05:00
endmodule