mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-11-02 12:53:15 +00:00
git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3457 19bc5d8c-e614-43d4-8b26-e1612bc8e597
25 lines
499 B
Verilog
25 lines
499 B
Verilog
|
|
|
|
module fifo_1k
|
|
( input [15:0] data,
|
|
input wrreq,
|
|
input rdreq,
|
|
input rdclk,
|
|
input wrclk,
|
|
input aclr,
|
|
output [15:0] q,
|
|
output rdfull,
|
|
output rdempty,
|
|
output [9:0] rdusedw,
|
|
output wrfull,
|
|
output wrempty,
|
|
output [9:0] wrusedw
|
|
);
|
|
|
|
fifo #(.width(16),.depth(1024),.addr_bits(10)) fifo_1k
|
|
( data, wrreq, rdreq, rdclk, wrclk, aclr, q,
|
|
rdfull, rdempty, rdusedw, wrfull, wrempty, wrusedw);
|
|
|
|
endmodule // fifo_1k
|
|
|