23 lines
233 B
Verilog
23 lines
233 B
Verilog
module fifo_8x2048 (
|
|
clk,
|
|
srst,
|
|
din,
|
|
wr_en,
|
|
rd_en,
|
|
dout,
|
|
full,
|
|
empty
|
|
);
|
|
|
|
input clk;
|
|
input srst;
|
|
input [7 : 0] din;
|
|
input wr_en;
|
|
input rd_en;
|
|
output [7 : 0] dout;
|
|
output full;
|
|
output empty;
|
|
|
|
endmodule
|
|
|