题解 | #状态机与时钟分频#
状态机与时钟分频
https://www.nowcoder.com/practice/25d694a351b748d9808065beb6120025
`timescale 1ns/1ns module huawei7( input wire clk , input wire rst , output reg clk_out ); //*************code***********// reg [2:0]cnt; always@(posedge clk or negedge rst)begin if(!rst) cnt <= 0; else if(cnt == 3) cnt <= 0; else cnt <= cnt + 1; end always@(posedge clk or negedge rst)begin if(!rst) clk_out <= 0; else begin case(cnt) 0:clk_out <= 1; 1:clk_out <= 0; 2:clk_out <= 0; 3:clk_out <= 0; endcase end end //*************code***********// endmodule