]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
*** empty log message ***
authorhadeshyp <hadeshyp>
Tue, 1 Jun 2010 13:10:20 +0000 (13:10 +0000)
committerhadeshyp <hadeshyp>
Tue, 1 Jun 2010 13:10:20 +0000 (13:10 +0000)
lattice/ecp2m/lattice_ecp2m_fifo.vhd

index 0d2a7152f92a46f50bf4d075645064fe841c142c..f394524fde77acf05c743cf856c68879ae188d5f 100644 (file)
@@ -241,7 +241,20 @@ package lattice_ecp2m_fifo is
 
 
 
-
+  component fifo_18x16_media_interface is
+    port (
+      Data: in  std_logic_vector(17 downto 0);
+      Clock: in  std_logic;
+      WrEn: in  std_logic;
+      RdEn: in  std_logic;
+      Reset: in  std_logic;
+      Q: out  std_logic_vector(17 downto 0);
+      WCNT: out  std_logic_vector(4 downto 0);
+      Empty: out  std_logic;
+      Full: out  std_logic;
+      AlmostEmpty: out  std_logic
+      );
+  end component;