1
0
SEm-Labos/Libs/Memory/hdl/bramDualportWritefirst_bhv.vhd

55 lines
1.6 KiB
VHDL
Raw Normal View History

2024-02-23 13:01:05 +00:00
USE std.textio.all;
ARCHITECTURE bhv OF bramDualportWritefirst IS
-- Define ramContent type
type ramContentType is array(0 to (2**addressBitNb)-1) of bit_vector(dataBitNb-1 DOWNTO 0);
-- Define function to create initvalue signal
impure function ReadRamContentFromFile(ramContentFilenAme : in string) return ramContentType is
FILE ramContentFile : text is in ramContentFilenAme;
variable ramContentFileLine : line;
variable ramContent : ramContentType;
begin
for i in ramContentType'range loop
readline(ramContentFile, ramContentFileLine);
read(ramContentFileLine, ramContent(i));
end loop;
return ramContent;
end function;
-- Declare ramContent signal
shared variable ramContent: ramContentType := ReadRamContentFromFile(initFile);
BEGIN
-- Port A
process(clockA)
begin
if clockA'event and clockA='1' then
if enA = '1' then
if writeEnA = '1' then
dataOutA <= dataInA;
ramContent(to_integer(unsigned(addressA))) := to_bitvector(dataInA,'0');
else
dataOutA <= to_stdulogicvector(ramContent(to_integer(unsigned(addressA))));
end if;
end if;
end if;
end process;
-- Port B
process(clockB)
begin
if clockB'event and clockB='1' then
if enB = '1' then
-- if writeEnB = '1' then
-- ramContent(to_integer(unsigned(addressB))) := to_bitvector(dataInB,'0');
-- dataOutB <= dataInB;
-- else
dataOutB <= to_stdulogicvector(ramContent(to_integer(unsigned(addressB))));
-- end if;
end if;
end if;
end process;
END ARCHITECTURE bhv;