Files
iceFun_Projects/fsm-tut4/rtl/clk_gen.v
2020-10-24 14:29:44 -05:00

14 lines
270 B
Verilog

`default_nettype none
// dummy clock generator, should be replaced by a PLL clock gen eventually
module clk_gen(
input wire i_clk,
output wire o_clk
);
assign o_clk = i_clk;
endmodule
// Local Variables:
// verilog-library-directories:(".." "./rtl" ".")
// End: