counter.v

来自「Verilog编程」· Verilog 代码 · 共 46 行

V
46
字号
module counter(rst,inclk,outclk,clkdata);	input rst,inclk;	input[25:0] clkdata;	output outclk;	reg outclktemp;	reg[25:0] cout;	 	 assign outclk=(clkdata>=2)?outclktemp:inclk;	initial 	begin		cout = 0;	end	always @(posedge inclk or posedge rst)			begin 						if(rst)				begin					cout<=16'h0000;					outclktemp<=1'b0;				end			else				begin				  					if(clkdata>=16'h0002)						begin							if(cout>=clkdata-1)								begin									outclktemp<=1'b0;									cout<=16'h0000;								end							else if(cout>=((clkdata>>1)-1))								begin									cout<=cout+1;									outclktemp<=1'b1;								end							else								begin									outclktemp<=1'b0;								  	cout<=cout+1;								end						 end				end	  endendmodule

⌨️ 快捷键说明

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