Remove usrp1 and usrp2 FPGA files. These are now hosted at:
[debian/gnuradio] / usrp / fpga / sdr_lib / hb / ram16_2port.v
diff --git a/usrp/fpga/sdr_lib/hb/ram16_2port.v b/usrp/fpga/sdr_lib/hb/ram16_2port.v
deleted file mode 100644 (file)
index e1761a9..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-module ram16_2port (input clock, input write, 
-                   input [3:0] wr_addr, input [15:0] wr_data,
-                   input [3:0] rd_addr1, output reg [15:0] rd_data1,
-                   input [3:0] rd_addr2, output reg [15:0] rd_data2);
-   
-   reg [15:0]                  ram_array [0:31];
-   
-   always @(posedge clock)
-     rd_data1 <= #1 ram_array[rd_addr1];
-   
-   always @(posedge clock)
-     rd_data2 <= #1 ram_array[rd_addr2];
-   
-   always @(posedge clock)
-     if(write)
-       ram_array[wr_addr] <= #1 wr_data;
-   
-endmodule // ram16_2port
-
-