标签:nbsp pac log 触发器 class div ted lse pos
module divide_2(clk,rst,clk_out);
input clk,rst;
output clk_out;
reg clk_out;
always @(posedge clk or negedge rst)
if(!rst)
begin
clk_out<=0;
end
else
begin
clk_out<=~clk_out;
end
endmodule
用Verilog来实现d触发器2分频的Verilog hdl程序
标签:nbsp pac log 触发器 class div ted lse pos
原文地址:https://www.cnblogs.com/ajiaoa/p/13037440.html