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