spartan3e: BRAM gehaxe. lesbarer und wird auch richtig(er) instanziert
[calu.git] / cpu / src / mem_pkg.vhd
index 906f175f8ca9d552899f45225cd24042a05a48fe..425af910287f0e10682f16532ddb9884f74f23b3 100644 (file)
@@ -43,6 +43,25 @@ package mem_pkg is
        );
        end component r_w_ram_be;
 
+       component ram_xilinx is
+       generic (
+                               ADDR_WIDTH : integer range 1 to integer'high
+                       );
+       port(
+               clk : in std_logic;
+
+               waddr, raddr : in std_logic_vector(ADDR_WIDTH-1 downto 0);
+
+               be : in std_logic_vector (3 downto 0);
+               
+               we : in std_logic;
+
+               wdata : in std_logic_vector(31 downto 0);
+               
+               q : out std_logic_vector(31 downto 0)
+       );
+       end component ram_xilinx;
+
        component rom is
        generic (
                                ADDR_WIDTH : integer range 1 to integer'high;