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
c5754d9e8b
yosys
/
tests
/
ice40
/
dffs.v
6 lines
102 B
Coq
Raw
Normal View
History
Unescape
Escape
Fix all comments from PR
2019-08-21 13:52:07 -05:00
module
top
(
input
d
,
clk
,
output
reg
q
)
;
Add new tests for ice40 architecture
2019-08-19 23:50:05 -05:00
always
@
(
posedge
clk
)
q
<
=
d
;
endmodule