简单的FIFO仿真以及程序_第1页
简单的FIFO仿真以及程序_第2页
简单的FIFO仿真以及程序_第3页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

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

文档简介

1、fifo的仿真。有图有真相,抛砖引玉 下面是程序:module fifo(clk,rst,/ fifo_wrdb, /dinfifo_rddb,/doutfifo_full,fifo_empty);in put clk;in put rst;/in put7:0fifo_wrdb;output fifo_full;output fifo_empty;/ reg fifo_rdrdy;/fifo读数据有效信号output 7:0fifo_rddb;/fifo读数据总线/wire 7:0fifo_wrdb_r;/assig n fifo_wrdb_r = fifo_wrdb;/定时产生32个FIF

2、O数据写入和读出操作reg7:0 fifo_wrdb;/FIFO写入数据reg fifo_wren;/FIFO 写使能信号reg fifo_rden;/FIFO 读使能信号reg9:0 cnt;always (posedge elk or n egedge rst)if(!rst) ent <= 10'd0;else cnt <= en t+1'b1;always (posedge elk or n egedge rst )if(!rst) beg infifo_wre n <= 1'bO;fifo_rden <= 1'bO;fifo_w

3、rdb <= 8'dO;end/连续32个FIFO数据写入else if(c nt > 1O'dO) && (cnt < 1O'd33) beginfifo_wre n <= 1'b1;fifo_rden <= 1'bO;fifo_wrdb <= cn t7:0;end/连续32个FIFO数据读出else if(c nt > 1O'd1OO) && (cnt < 1O'd133) beginfifo_wre n <= 1'bO;fifo_rden

4、 <= 1'b1;fifo_wrdb <= 8'dO;endelse begi nfifo_wre n <= 1'bO;fifo_rden <= 1'bO;fifo_wrdb <= 8'dO;end/*/FIFO读数据有效标志位/ always (posedge clk or n egedge rst)/ if(rst) fifo_rdrdy <= 1'b0;/ else fifo_rdrdy <= fifo_rde n;/*fifo_co ntrollerfifo_c on troller_ck(.cl

5、k(clk), / i nput clk.rst(rst), /input rst.di n(fifo_wrdb), /in put 7 : 0 din.wr_e n(fifo_wre n), / input wr_en.rd_e n(fifo_rde n), /in put rd_e n.dout(fifo_rddb), / output 7 : 0 dout.full(fifo_full), / output full.empty(fifo_empty) / output empty);en dmodule下面是仿真程序:module fifo_text;/ I nputsreg clk;

6、reg rst;/ Outputswire 7:0 fifo_rddb;wire fifo_full;wire fifo_empty;/I nsta ntiate the Unit Under Test (UUT) fifo uut (.clk(clk),.rst(rst),.fifo_rddb(fifo_rddb),.fifo_full(fifo_full),.fifo_empty(fifo_empty);in itial beg in/ I nitialize In putsclk = 1'bO;rst = 1'b0;/fifo_wrdb = 1;/ Wait 100 ns for global reset to finish#100;rst =

温馨提示

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

评论

0/150

提交评论