- 1、本文档共10页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
分频器
module div(clk, div1,div2,div3);
input clk;
output div1;
output div2;
output div3;
reg [31:0] counter1;
reg [31:0] counter2;
reg [31:0] counter3;
reg div1;
reg div2;
reg div3;
initial begin
div1=0;div2=0;div3=0;
counter1=0;counter2=0;counter3=0;
end
always @(posedge clk)
begin
/*if(counter1==2) counter1 = 0;else counter1 = counter1+1;
if(counter2==3) counter2 = 0;else counter2 = counter2+1;
if(counter3==4) counter3 = 0;else counter3 = counter3+1;*/
if(counter1= counter1 = 0;else counter1 = counter1+1;
if(counter2==24999) counter2 = 0;else counter2 = counter2+1;
if(counter3= counter3 =0;else counter3 = counter3+1;
end
always @(posedge clk)
begin
/*if(counter1==2) div1 = ~div1;
if(counter2==3) div2 = ~div2;
if(counter3==4) div3 = ~div3;*/
if(counter1= div1 = ~div1;
if(counter2==24999) div2 = ~div2;
if(counter3= div3 = ~div3;
end
endmodule
30s计数器
module count30(div1,number,direction );
input div1;
output [4:0] number;
output direction;
reg [4:0] number;
reg direction;
initial
begin
direction=0;
number=30;
end
always@(posedge div1)
begin
if(number==0)
begin
direction=~direction;
number=30;
end
else number=number-1;
end
endmodule
控制器
module moniter( div3,
number,
direction,
eastred,
eastyellow,
eastgreen,
northred,
northyellow,
northgreen );
input div3;
input direction;
input [4:0]number;
output eastred;
output eastyellow;
output eastgreen;
output northred;
output northyellow;
output northgreen ;
//wire [4:0] number;
//reg direction;
reg eastred;
reg eastyellow;
reg eastgreen;
reg northred;
reg northyellow;
reg northgreen ;
initial begin
eastred=1;
eastgreen=0;
您可能关注的文档
最近下载
- 餐饮值班管理课程培训.pptx
- 尔雅《批判与创意思考》课后习题+期末试题.docx VIP
- 6-4正奇租赁二期资产支持专项计划现金流预测分析报告1213日.pdf
- 算法设计与分析(北航)中国大学MOOC慕课 章节测验期末考试客观题答案.docx
- 2024年山东省济宁市中考化学试卷(附答案).docx VIP
- T IAC CAMRA 50-2024 《事故汽车常用零部件修复与更换判别规范》(2).pdf
- 北师大版数学八年级下册第六章 平行四边形 大单元整体教学设计学历案教案附作业设计(基于新课标教学评一致性).docx
- 长江经济带港口发展研究(2011~).docx VIP
- 染色技术 8.1 涤纶结构特点和分散染料分类 8.1 涤纶结构特点、分散染料分类.pptx
- 人教版三年级下册必读书目《中国古代寓言故事》 .pdf
文档评论(0)