Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
lattice
/
ice40
/
tests
/
iceff
/
ff.v
blob: d5fdb8e635e54f35ef9c1e99e7af65f378effd25 [
file
] [
log
] [
blame
] [
edit
]
// Single flip-flip test.
module
top
(
input clk
,
input di
,
output
do
);
always
@(
posedge clk
)
do
<=
di
;
endmodule
// top