版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、FPGA与硬件描述语言实验报告学院:信息技术学院班级:专业:电子信息科学与技术姓名:日期:学号:1. 实验目的1、 熟悉行为级语法;2、 熟悉有限状态机2.1实验内容设计一四位计数器,进行仿真,并检测输出结果;提示:在时钟上升沿,如果复位信号有效,则复位为0,如果复位信号无效,则计数器需要加一。2.2实验内容完成一个序列信号电路检测器,检测信号为10010,当检测到此序列时输出端口输出高电平,其余时间输出低电平。提示:先画出状态转换图或写出状态转换表,根据状态表或者状态图完成代码的设计;编写测试模块对该功能模块进行仿真。要求实验报告包括完整的状态转化图或者转化表。3实验记录序列信号电路检测器:
2、3.1功能块代码module mian (z, x, clock, clear); output z; reg z; input clock, clear; input x; parameter s0 = 3'd0, s1 = 3'd1, s2 = 3'd2, s3 = 3'd3, s5 = 3'd5, s4 = 3'd4; reg 2:0 state; reg 2:0 next_state; always (posedge clock) if(clear) state <= s0; else state <= next_state;
3、 always (state) begin case(state) s0: show = 0; s1: show = 0; s2: show = 0; s3: show = 0; s4: show = 0; s5: show = 1; endcase end always (x or state) begin case(state) s0: if(x = 0) next_state = s0; else next_state = s1; s1: if(x = 0) next_state = s2; else next_state = s1; s2: if(x = 0) next_state =
4、 s3; else next_state = s1; s3: if(x = 0) next_state = s0; else next_state = s4; s4: if(x = 0) next_state = s5; else next_state = s1; s5: if(x = 0) next_state = s0; else next_state = s1; endcase endendmodule3.2测试模块代码module stimulus_mv; wire z; reg x; reg clock, clear; mianMVP(z, x, clock, clear); ini
5、tial begin clock = 0; forever #5 clock = clock; end initial begin clear = 1; repeat(2)(negedge clock); clear = 0; end initial begin #30 x = 1; #10 x = 0; #10 x = 0; #10 x = 1; #10 x = 0; endendmodule 3.3仿真结果:1. 输出:四位计数器3.1功能块代码module counter(out, clock, clear); output out; input clock, clear; reg 3:
6、0 out; always (posedge clock or negedge clear) begin if(clear) out <= 4'd0; else out <= out + 1; endendmodule3.2测试模块代码module counter_stimulus; reg clock, clear; wire 3:0 out; initial $monitor($time, "count = %b , clear = %b", out3:0, clear); counter MVP(out, clock, clear); always begin clear = 1'b1; #15 clear = 1'b0; #200 clear = 1'b1; #50 clear = 1'b1; end initial begin clock = 1'b0; forever
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年公园绿化带挡土墙工程承包合同书版B版
- 2024年商业合作机密信息保护协议版B版
- 2024年品牌产品销售代理合同模板
- 2024年创业园区租赁合同
- 辽宁省2023-2024学年高二化学上学期第一次月考试题含解析
- 小学数学新教师工作总结
- 2024人防系统综合施工与材料采购合作合同版B版
- 2024年二手车交易标准协议样本版B版
- 2024二手房屋买卖合同协议山
- 2024年口腔正畸治疗标准协议版B版
- 妊娠期癫痫患者的处理原则及孕前咨询建议
- 七年级音乐下册 第5单元《康定情歌》课件3 花城版
- 水沟盖板施工方案
- 三年级上册综合实践活动课件-生活中的标志|教科版
- 《思想道德与法治》第五章
- 《科学思维方法》知识考试题库及答案
- 标准化基础知识教学课件
- 肾内科运用PDCA循环降低透析器凝血发生率品管圈活动
- 混流式水轮机安装记录单
- Unit 4 When is the art show?PA Let's spell(说课稿)-2022-2023学年英语五年级下册
- GB/T 42740-2023轨道交通用电线电缆安全导则
评论
0/150
提交评论