




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、module jtd (zhi,clk,u,i);input zhi,clk;output 2:0u,i;reg2:0u,i;reg d;always(posedge clk)beginif(zhi) begin u2:0<=3'b100; i2:0<=3'b001; endelse begin d<=d+1; if(d=30) u2:0<=3'b010; if(d=34) begin u2:0<=3'b001; i2:0<=3'b100; end if(d=64) begin u2:0<=3'b001;
2、 i2:0<=3'b010; end if(d=68) begin u2:0<=3'b100; i2:0<=3'b001; d<=0; endmodule jtd(zhi,u,i,clk,rst);input zhi,clk,rst;output 2:0u,i;reg 2:0u,i;reg4:0state;reg 5:0d;initial d=0;parameter s0=5'b00001, s1=5'b00010, s2=5'b00100, s3=5'b01000, s4=5'b10000;always(
3、posedge clk)beginif(!rst) begin state<=s0;u2:0<=3'b100;i2:0<=3'b001;endelsebegincase(state)s4:begin u2:0<=3'b100;i2:0<=3'b001;if(zhi)begin state<=s0;end else state<=s4;ends0:begin u2:0<=3'b100;i2:0<=3'b001;d=d+1;if(d=30)begin state<=s1;d=0;end el
4、se state<=s0;ends1:begin u2:0<=3'b010;i2:0<=3'b001;d=d+1;if(d=4)begin state<=s2;d=0;end else state<=s1;ends2:begin u2:0<=3'b001;i2:0<=3'b100;d=d+1;if(d=30) begin state<=s3;d=0;end else state<=s2;ends3:begin u2:0<=3'b001;i2:0<=3'b010;d=d+1;if(d
5、=4)begin state<=s4;d=0;end else state<=s3;enddefault: state<=s4;endcaseendendendmodule黄灯闪module jtde(zhi,u,i,clk,rst);input zhi,clk,rst;output 2:0u,i;reg 2:0u,i;reg4:0state;reg 6:0d;initial d=0;parameter s0=5'b00001, s1=5'b00010, s2=5'b00100, s3=5'b01000, s4=5'b10000;alw
6、ays(posedge clk)beginif(!rst) begin state<=s4;u2:0<=3'b100;i2:0<=3'b001;endelsebegincase(state)s4:begin u2:0<=3'b100;i2:0<=3'b001;if(zhi)begin state<=s0;end else state<=s4;ends0:begin u2:0<=3'b100;i2:0<=3'b001;d=d+1;if(d=30)begin state<=s1;d=0;en
7、d else state<=s0;ends1:begin d=d+1; if(d=1)begin u2:0<=3'b000;i2:0<=3'b001;state<=s1;end if(d=2)begin u2:0<=3'b010;i2:0<=3'b001;state<=s1;end if(d=3)begin u2:0<=3'b000;i2:0<=3'b001;state<=s1;end if(d=4)begin u2:0<=3'b010;i2:0<=3'b00
8、1;state<=s2;d=0;end ends2:begin u2:0<=3'b001;i2:0<=3'b100;d=d+1;if(d=30) begin state<=s3;d=0;end else state<=s2;ends3:begin d=d+1; if(d=1)begin i2:0<=3'b000;u2:0<=3'b001;state<=s3;end if(d=2)begin i2:0<=3'b010;u2:0<=3'b001;state<=s3;end if(d=3
9、)begin i2:0<=3'b000;u2:0<=3'b001;state<=s3;end if(d=4)begin i2:0<=3'b010;u2:0<=3'b001;state<=s4;d=0;end enddefault: state<=s4;endcaseendend黄灯闪且倒计时module mnb(zhi,u,i,clk,rst,ugx,usx,igx,isx);input zhi,clk,rst;output 2:0u,i;output 3:0ugx,usx,igx,isx;reg 2:0u,i;reg4
10、:0state;reg 4:0ugx,usx,igx,isx;reg 6:0d,e,f;initialbegin d<=0; e<=30; f<=34; endparameter s0=5'b00001, s1=5'b00010, s2=5'b00100, s3=5'b01000, s4=5'b10000;always(posedge clk)beginif(!rst) begin state<=s4;u2:0<=3'b100;i2:0<=3'b001;endelsebegincase(state)s4
11、:begin u2:0<=3'b100;i2:0<=3'b001;ugx<=0;usx<=0;igx<=0;isx<=0;if(zhi)begin state<=s0;d<=0;e<=30;f<=35;end else state<=s4;ends0:begin u2:0<=3'b100;i2:0<=3'b001;ugx<=e%10;usx<=e/10;igx<=f%10;isx<=f/10;d<=d+1;e<=e-1;f<=f-1; if(d
12、=30)begin state<=s1;d<=0;e<=4;f<=4;end else state<=s0; ends1:begin ugx<=e%10;usx<=e/10;igx<=f%10;isx<=f/10;e<=e-1;f<=f-1; if(d=0)begin u2:0<=3'b010;i2:0<=3'b001;d<=d+1;state<=s1;end if(d=1)begin u2:0<=3'b000;i2:0<=3'b001;d<=d+1;st
13、ate<=s1;end if(d=2)begin u2:0<=3'b010;i2:0<=3'b001;d<=d+1;state<=s1;end if(d=3)begin u2:0<=3'b000;i2:0<=3'b001;state<=s2;d<=0;e<=35;f<=30;end ends2:begin u2:0<=3'b001;i2:0<=3'b100;ugx<=e%10;usx<=e/10;igx<=f%10;isx<=f/10;d<
14、=d+1;e<=e-1;f<=f-1; if(d=30) begin state<=s3;d<=0;e<=4;f<=4;end else state<=s2; ends3:begin ugx<=e%10;usx<=e/10;igx<=f%10;isx<=f/10;d<=d+1;e<=e-1;f<=f-1; if(d=1)begin i2:0<=3'b000;u2:0<=3'b001;state<=s3;end if(d=2)begin i2:0<=3'b010;u2:0<=3'
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年农业科技创新政策环境优化报告:农业科技创新政策环境优化策略与对策
- 交通运输行业人才需求与培养模式报告:关注交通运输行业无人机与无人车人才培养
- 智能交通系统2025年交通流量预测技术智能交通数据挖掘与智能监控报告
- 2025医药生物行业深度报告-港股创新药-创新突破奠定高增长出海拓疆重塑新估值
- 2025年领导选拔笔试题及答案
- 科研方法论试题及答案
- 2025年机械安规考试题及答案
- 2025年眼科上半年抢救车管理制度考核试题及答案
- 2025年工伤培训试题及答案
- 沉浸式英文教学课件
- DB1305∕T 45-2022 小麦品种冀麦325节水高产栽培技术规程(邢台市)
- 水利信息化水质监测系统单元工程质量验收评定表、检查记录
- 人教版六年级数学上册【全册教案】
- 合同法风险防范培训
- 管理会计学(第6版) 课件 郭晓梅 第1-3章 管理会计导论、成本性态分析与变动成本计算法、作业成本计算法
- 中小学教师专业技术岗位聘任考核方案
- 2024-2025学年高三上学期《为什么要上一个好大学?》主题班会课件
- 职业技术学校物联网应用技术专业调研报告
- GB/T 43934-2024煤矿土地复垦与生态修复技术规范
- 2023年某技术有限公司技术规范
- 秋季传染病预防课件幼儿园
评论
0/150
提交评论