使用Verilog HDL实现50MHz分频为50Hz

来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/23 06:10:14
使用VerilogHDL实现50MHz分频为50Hz使用VerilogHDL实现50MHz分频为50Hz使用VerilogHDL实现50MHz分频为50HzmoduleFrequency(nrst,c

使用Verilog HDL实现50MHz分频为50Hz
使用Verilog HDL实现50MHz分频为50Hz

使用Verilog HDL实现50MHz分频为50Hz
module Frequency(nrst,clk_in,clk_out);
input wire nrst;
input wire clk_in;
output reg clk_out;
reg [18:0]r_cnt;

always @(posedge clk_in)
if(nrst) begin
if(r_cnt < 19'd499999)
r_cnt