dpll_two_tp.v

来自「这是基于verilog语言写的」· Verilog 代码 · 共 19 行

V
19
字号
module DPLL_two_tp;reg fout2,reset;wire fout;parameter dely=100;DPLL_two  inst_DPLL_two(fout2,fout,reset);initialbegin fout2=0;reset=0;#(dely*20) reset=1;#(dely*20)$stop;endalways #(dely/2) fout2=~fout2;initial$monitor($time,,,"fout2=%d,fout=%d,reset=%d", fout2,fout,reset);endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?