blob: 71b30f6a39d00e6e237b0460989fe7040fda2220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity ram8 is
port (val : out std_logic_vector (7 downto 0);
addr : std_logic_vector (3 downto 0);
clk : std_logic);
end ram8;
architecture behav of ram8 is
begin
process (clk)
type mem_t is array (15 downto 0) of std_logic_vector(7 downto 0);
variable mem : mem_t;
variable ra : natural;
begin
if rising_edge (clk) then
ra := to_integer(unsigned (addr));
val <= mem(ra);
end if;
end process;
end behav;
|