文件名称:数控脉冲信号发生器(基于FPGA的设计)
文件大小:1.53MB
文件格式:DOC
更新时间:2013-07-11 05:35:11
发生器
一个运用FPGA产生波形的电路。 module lcnt(clk,rst_n,ld,d,cao); input clk; input ld; input [7:0]d; input rst_n; output cao; reg [7:0] count; reg cao; always@(posedge clk ) begin if (!rst_n) begin count<=8'b00000000; end else if (ld) begin count<=d; end else begin count<=count+1'b1; end end always@(posedge clk) begin if (count==255) begin cao<=1'b0; end end endmodule