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
1fc50a03fc
yosys
/
tests
/
ice40
/
mul.v
12 lines
99 B
Coq
Raw
Normal View
History
Unescape
Escape
Add new tests for ice40 architecture
2019-08-19 23:50:05 -05:00
module
top
(
Make multiplier wider, do not do tech independent synth
2019-08-22 14:17:25 -05:00
input
[
5
:
0
]
x
,
input
[
5
:
0
]
y
,
Add new tests for ice40 architecture
2019-08-19 23:50:05 -05:00
Make multiplier wider, do not do tech independent synth
2019-08-22 14:17:25 -05:00
output
[
11
:
0
]
A
,
Add new tests for ice40 architecture
2019-08-19 23:50:05 -05:00
)
;
assign
A
=
x
*
y
;
endmodule