index
:
iCE40/yosys
master
[no description]
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
ice40
/
dffs.v
blob: d57c8c97cd6e898377312f5d0413c27c66b3d99f (
plain
)
1
2
3
4
5
module
top
(
input
d
,
clk
,
output
reg
q
);
always
@(
posedge
clk
)
q
<=
d
;
endmodule