Verilog HDL 8位计数器counter的程序注释.doc_第1页
Verilog HDL 8位计数器counter的程序注释.doc_第2页
Verilog HDL 8位计数器counter的程序注释.doc_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

一、8位计数器counter.v的源程序module counter (count, clk, rst);output 7:0 count;input clk, rst;reg 7:0 count;parameter tpd_clk_to_count = 1;parameter tpd_reset_to_count = 1;function 7:0 increment; input 7:0 val;reg 3:0 i;reg carry; begin increment = val; carry = 1b1; /* * Exit this loop when carry = zero, OR all bits processed */ for (i = 4b0; (carry = 4b1) | (i = 7); i = i+ 4b1) begin incrementi = vali carry; carry = vali & carry; end end endfunction/* * The following always block was changed to make it synthesizable.always (posedge clk or posedge rst) if (rst) count = #tpd_reset_to_count 8h00; else count = #tpd_clk_to_count increment(count);*/always (posedge clk or posedge rst) if (rst) count = 8h00; else count = count + 8h01; endmodule二、8位计数器counter.v的测试文件tcounter.vmodule test_counter;reg clk, rst;wire 7:0 count;counter #(5,10) dut (count,clk,rst); /dutmodule instance/* 这里#(5,10)表示分别改变被引用模块counter中的参数tpd_clk_to_count和tpd_reset_to_count为5和10 ,参见数字系统设计与Verilog HDLP174例6.16 */initial / Clock generator begin clk = 0; #10 forever #10 clk = !clk; / clk的时钟周期为20 end initial/ Test stimulus begin rst = 0; #5 rst = 1; #4 rst = 0; /rst maintains high level for only 4 time units. #50000 $stop; /经过50000个时间单位,则暂停仿真。这里$stop为系统任务 end initial$monitor($stime, rst, clk, count); /* $monitor为系统任务,监控和输出参数列表中的表达式或变量值,并在Main窗口中显示(见下图)。这里$stime为系统函数,返回仿真的当前时间值,为一个截去高位保留低32位的无符号整数 */ endmodule注:在$monitor($stime, rst, clk, coun

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论