URL
https://opencores.org/ocsvn/s80186/s80186/trunk
Subversion Repositories s80186
[/] [s80186/] [trunk/] [rtl/] [Fifo.sv] - Rev 2
Compare with Previous | Blame | View Log
// Copyright Jamie Iles, 2017//// This file is part of s80x86.//// s80x86 is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.//// s80x86 is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with s80x86. If not, see <http://www.gnu.org/licenses/>.module Fifo(input logic clk,input logic reset,// Write portinput logic wr_en,input logic [data_width-1:0] wr_data,// Read portinput logic rd_en,output logic [data_width-1:0] rd_data,output logic empty,output logic nearly_full,output logic full);parameter data_width = 32;parameter depth = 6;parameter full_threshold = 2; // Number of entries free to be not-fulllocalparam ptr_bits = $clog2(depth);reg [data_width-1:0] mem[depth-1:0];reg [ptr_bits-1:0] rd_ptr;reg [ptr_bits-1:0] wr_ptr;reg [ptr_bits:0] count;assign empty = count == 0;assign full = count == depth;assign nearly_full = count >= depth - full_threshold;assign rd_data = mem[rd_ptr];always_ff @(posedge clk or posedge reset) beginif (reset) beginwr_ptr <= {ptr_bits{1'b0}};end else if (wr_en && !full) beginmem[wr_ptr] <= wr_data;wr_ptr <= wr_ptr + 1'b1;if (wr_ptr == depth[ptr_bits-1:0] - 1'b1)wr_ptr <= {ptr_bits{1'b0}};endendalways_ff @(posedge clk or posedge reset) beginif (reset) beginrd_ptr <= {ptr_bits{1'b0}};end else if (rd_en && !empty) beginrd_ptr <= rd_ptr + 1'b1;if (rd_ptr == depth[ptr_bits-1:0] - 1'b1)rd_ptr <= {ptr_bits{1'b0}};endendalways_ff @(posedge clk or posedge reset) beginif (reset)count <= {ptr_bits + 1{1'b0}};else if (wr_en && !full && !rd_en)count <= count + 1'b1;else if (rd_en && !empty && !wr_en)count <= count - 1'b1;endendmodule
