模10计数器

mac2024-02-01  33

//10计数器 module ex_cnt( input wire sclk,//sclk一般指系统时钟 input wire rst_n, output reg [3:0] cnt ); always @(posedge sclk or negedge rst_n) begin if
最新回复(0)