From fd3e84941de463fa1a7ebab0a69515b4bf2614cd Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 7 Oct 2014 11:25:20 +0200 Subject: Removed copy of FPGA source files. --- fpga/usrp3/lib/fifo/axi_fifo_short.v | 110 ----------------------------------- 1 file changed, 110 deletions(-) delete mode 100644 fpga/usrp3/lib/fifo/axi_fifo_short.v (limited to 'fpga/usrp3/lib/fifo/axi_fifo_short.v') diff --git a/fpga/usrp3/lib/fifo/axi_fifo_short.v b/fpga/usrp3/lib/fifo/axi_fifo_short.v deleted file mode 100644 index e13993199..000000000 --- a/fpga/usrp3/lib/fifo/axi_fifo_short.v +++ /dev/null @@ -1,110 +0,0 @@ -// -// Copyright 2012 Ettus Research LLC -// - - -// -// 32 word FIFO with AXI4-STREAM interface. -// -// NOTE: This module uses the SRLC32E primitive explicitly and as such -// can only be used with Xilinx technology of the VIRTEX-6/SPARTAN-6/SIERIES-7 or newer. -// - -module axi_fifo_short - #(parameter WIDTH=32) - ( - input clk, - input reset, - input clear, - input [WIDTH-1:0] i_tdata, - input i_tvalid, - output i_tready, - output [WIDTH-1:0] o_tdata, - output o_tvalid, - input o_tready, - - output reg [5:0] space, - output reg [5:0] occupied - ); - - reg full, empty; - wire write = i_tvalid & i_tready; - wire read = o_tready & o_tvalid; - - assign i_tready = ~full; - assign o_tvalid = ~empty; - - reg [4:0] a; - genvar i; - - generate - for (i=0;i