Module Prescaler(
Module Prescaler(
2.
module top (
input wire clk_50mhz, // 50 MHz clock input
output wire led // LED output
);
3.
module blinker (
input wire clk, // Input clock (Slow Clock)
output reg led // Output LED signal
);
always @(posedge clk) begin
led <= ~led;
end
endmodule