|
发表于 2011-12-19 22:33:55
|
显示全部楼层
本帖最后由 wjhdmmm 于 2011-12-20 08:56 编辑
module fre_div
(
input i_clk,
input i_rst, // active high
input [1:0] i_fre_sel, // 0 for 1hz, 1 for 10hz, others for 1khz
output o_clk
);
wire [13:0] endpoint;
assign endpoint = (i_fre_sel == 0) ? 4999 :
(i_fre_sel == 1) ? 499 : 4;
reg [13:0] count;
reg o_clk_tmp;
always @ (posedge i_clk) begin
if (i_rst) begin
count <= 0;
o_clk_tmp <= 0;
end else begin
if (count == endpoint) begin
count <= 0;
o_clk_tmp <= !o_clk_tmp;
end else begin
count <= count + 1'b1;
end
end
end
assign o_clk = o_clk_tmp;
endmodule
粗略写的 没有验证 |
|