This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/Quartus/v3/jyh_4490_3_divide.v
2022-04-12 16:38:43 +08:00

15 lines
179 B
Verilog

module jyh_4490_3_divide(clkin,clkout);
input clkin;
output reg clkout=0;
reg [2:0] temp;
always@(posedge clkin)
begin
temp<=temp+1;
if(temp==0)
clkout=~clkout;
end
endmodule