簡單的FIFO仿真以及程序_第1頁
簡單的FIFO仿真以及程序_第2頁
簡單的FIFO仿真以及程序_第3頁
已閱讀5頁,還剩2頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

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讀數(shù)據(jù)有效信號output 7:0fifo_rddb;/fifo讀數(shù)據(jù)總線/wire 7:0fifo_wrdb_r;/assig n fifo_wrdb_r = fifo_wrdb;/定時產(chǎn)生32個FIF

2、O數(shù)據(jù)寫入和讀出操作reg7:0 fifo_wrdb;/FIFO寫入數(shù)據(jù)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/連續(xù)32個FIFO數(shù)據(jù)寫入else if(c nt > 1O'dO) && (cnt < 1O'd33) beginfifo_wre n <= 1'b1;fifo_rden <= 1'bO;fifo_wrdb <= cn t7:0;end/連續(xù)32個FIFO數(shù)據(jù)讀出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讀數(shù)據(jù)有效標志位/ 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. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論