1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity bugw is
port ( a : in std_logic_vector(1 downto 0);
we : in std_logic;
rd : in std_logic;
d : in std_logic_vector(1 downto 0);
q : out std_logic_vector(1 downto 0));
end;
architecture beh of bugw is
type mem_type is array (1 to 0) of std_logic_vector(1 downto 0);
signal mem : mem_type;
begin
process(a, we, rd)
begin
if we = '1' then
mem(to_integer(unsigned(a))) <= d;
end if;
end process;
end beh;
|