[笔记].等占空比分频器的几种写法.[Verilog]

1 偶数分频 (1)2的幂分频 案例I 二分频 i: div_2.v module div_2( input i_clk, input i_rst_n, output o_clk ); reg [0:0] cnt; always @ (posedge i_clk, negedge i_rst_n) if (!i_rst_n) cnt <= 0; else
相关文章
相关标签/搜索