1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2014 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 module clk_divider(input clk, input [7:0] divisor, output [7:0] div_cnt, output div_clk);
10 reg [7:0] div_cnt_ = 0;
12 assign div_cnt = div_cnt_;
13 assign div_clk = div_clk_;
17 if(div_cnt == divisor) begin
21 div_cnt_ <= div_cnt_ + 1;