Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
quicklogic
/
pp3
/
tests
/
btn_ff
/
btn_ff.v
blob: 754bbafabec1187ed5e2c4e9fb51f0c985d8e4ec [
file
] [
log
] [
blame
] [
edit
]
module
top
(
input wire clk
,
input wire d
,
output reg q
);
always
@(
posedge clk
)
q
<=
d
;
endmodule