Verilog hdl用d触发器实现4分频的

Verilog用d触发器实现4分频的Verilog hdl源代码:

module dff_4(clk,rst,clk_out);

input clk,rst;
output clk_out;

wire clk,rst;
reg clk_out;

reg q1,q2;

always @(posedge clk or negedge rst)
 if(!rst)
  begin
   q1 <= 1'b0;
  end
 else
  begin
   q1 <= ~q1;
  end

always @(posedge q1 or negedge rst)
 if(!rst)
  begin
   q2 <= 1'b0;
   clk_out <= 1'b0;
  end
 else
  begin
   q2 <= ~q2;
   clk_out <= q2;
  end

endmodule

RTL viewer原理图:


仿真波形图:


以上是Verilog hdl用d触发器实现4分频的的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>