Initial commit
This commit is contained in:
17
Libs/Memory/hdl/sdramControllerSampleDataIn_RTL.vhd
Normal file
17
Libs/Memory/hdl/sdramControllerSampleDataIn_RTL.vhd
Normal file
@@ -0,0 +1,17 @@
|
||||
ARCHITECTURE RTL OF sdramControllerSampleDataIn IS
|
||||
BEGIN
|
||||
|
||||
sampleRamData: process(reset, clock)
|
||||
begin
|
||||
if reset = '1' then
|
||||
ramDataIn <= (others => '0');
|
||||
elsif falling_edge(clock) then
|
||||
if sampleData = '1' then
|
||||
ramDataIn <= memDataIn;
|
||||
end if;
|
||||
end if;
|
||||
end process sampleRamData;
|
||||
|
||||
|
||||
END ARCHITECTURE RTL;
|
||||
|
||||
Reference in New Issue
Block a user