...;= (counter < 125000)?1'b0:1'b1;
end
endmodule
// D-flip-flop for debouncing module
module my_dff(input DFF_CLOCK, D, output reg Q);
always @ (posedge DFF_CLOCK) begin
Q <= D;
end
endmo...