1
0
mirror of https://github.com/Klagarge/Cursor.git synced 2024-11-23 09:53:29 +00:00
Cursor/Libs/Memory/hdl/sdramControllerStoreData_RTL.vhd

15 lines
287 B
VHDL
Raw Normal View History

2021-11-24 09:50:51 +00:00
ARCHITECTURE RTL OF sdramControllerStoreData IS
BEGIN
storeData : process(reset, clock)
begin
if reset = '1' then
memDataOut <= (others => '0');
elsif rising_edge(clock) then
memDataOut <= ramDataOut;
end if;
end process storeData;
END ARCHITECTURE RTL;