module blink_top ( input wire clk, output wire led ); blink #( .CLK_SPEED(27_000_000) ) blink_inst ( .clk(clk), .led(led) ); endmodule