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