a120a29dd6263a1f5226ad2e1ff4f5236a7de1a0
[calu.git] / cpu / src / r_w_ram_b.vhd
1 library ieee;
2
3 use IEEE.std_logic_1164.all;
4 use IEEE.numeric_std.all;
5
6 use work.mem_pkg.all;
7
8 architecture behaviour of r_w_ram is
9
10         subtype RAM_ENTRY_TYPE is std_logic_vector(DATA_WIDTH -1 downto 0);
11         type RAM_TYPE is array (0 to (2**ADDR_WIDTH)-1) of RAM_ENTRY_TYPE;
12         
13         signal ram : RAM_TYPE := (others => x"00000000");
14         
15 begin
16         process(clk)
17         begin
18                 if rising_edge(clk) then
19                  data_out <= ram(to_integer(UNSIGNED(rd_addr)));
20
21
22                         
23                         if wr_en = '1' then
24                                 ram(to_integer(UNSIGNED(wr_addr))) <= data_in;
25                         end if;
26                 end if;
27         end process;
28         
29 end architecture behaviour;