FPGA编写的三角波发生器

源代码在线查看: sinwave.v

软件大小: 490 K
上传用户: sfdong
关键词: FPGA 编写 三角波发生器
下载地址: 免注册下载 普通下载 VIP

相关代码

				module sinwave(clkout,clkin);
				input clkin;
				output clkout;
				reg clkout;
				reg[10:0] temp=0;
				always@(posedge clkin)
				begin
					temp=temp+11'd1;
					if(temp==10)
					begin
						clkout=~clkout;
						temp=11'd0;
					end
				end
				endmodule			

相关资源