module template ( input rst_i, input clk_i ); always @(posedge clk_i or negedge rst_i) begin if (!rst_i) begin end end endmodule