~ubuntu-branches/ubuntu/trusty/gnuradio/trusty-updates

« back to all changes in this revision

Viewing changes to usrp/fpga/models/fifo_4k.v

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2012-02-26 21:26:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120226212616-vsfkbi1158xshdql
Tags: 3.5.1-1
* new upstream version, re-packaged from scratch with modern tools
    closes: #642716, #645332, #394849, #616832, #590048, #642580,
    #647018, #557050, #559640, #631863
* CMake build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
 
3
 
module fifo_4k
4
 
  (  input [15:0] data,
5
 
     input      wrreq,
6
 
     input      rdreq,
7
 
     input      rdclk,
8
 
     input      wrclk,
9
 
     input      aclr,
10
 
     output [15:0] q,
11
 
     output      rdfull,
12
 
     output      rdempty,
13
 
     output [11:0] rdusedw,
14
 
     output      wrfull,
15
 
     output      wrempty,
16
 
     output [11:0]  wrusedw
17
 
     );
18
 
 
19
 
fifo #(.width(16),.depth(4096),.addr_bits(12)) fifo_4k 
20
 
  ( data, wrreq, rdreq, rdclk, wrclk, aclr, q,
21
 
    rdfull, rdempty, rdusedw, wrfull, wrempty, wrusedw);
22
 
   
23
 
endmodule // fifo_1k
24