Verilog HDL實現模N計數器

Verilog HDL實現N進制計數器 N進制計數器代碼以下:web //N進制計數器 module counter(count,clk,reset); parameter N=6; //定義進制N的值 output reg [4:1]count; //定義四位寄存器變量 input clk,reset; //定義1個wire型clk時鐘變量,1個wire型清零信號變量 alway
相關文章
相關標籤/搜索