begin
if (clk'event and clk = '1') then
-- if (en_1 = '1') then
if (w_en_1 = '1') then
RAM_1(conv_integer(addressA)) := inputA;
end if;
outputA <= RAM_1(conv_integer(addressA));
outputB <= RAM_1(conv_integer(addressB));
-- end if;
end if;
end process;