📄 dpll_4count.txt
字号:
module DPLL_4count(fout2,idout,N);
output fout2;
input idout;
input[8:0] N;
reg fout2;
reg out3;
always @(posedge idout)
begin
if(out3==N)
begin
out3<=0;fout2<=1;
end
else if(out3!=N)
begin
out3<=out3+1;fout2<=0;
end
end
endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -