Archived
1
0
This repository has been archived on 2025-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
SEm-Labos/Libs/Memory/hdl/fifo_oneRegister_rtl.vhd
github-classroom[bot] d212040c30 Initial commit
2024-02-23 13:01:05 +00:00

38 lines
746 B
VHDL

architecture oneRegister of FIFO_oneRegister is
signal dataRegister: std_ulogic_vector(dataIn'range);
begin
writeReg: process(reset, clock)
begin
if reset = '1' then
dataRegister <= (others => '0');
elsif rising_edge(clock) then
if write = '1' then
dataRegister <= dataIn;
end if;
end if;
end process writeReg;
dataOut <= dataRegister;
manageFlags: process(reset, clock)
begin
if reset = '1' then
empty <= '1';
full <= '0';
elsif rising_edge(clock) then
if write = '1' then
empty <= '0';
full <= '1';
elsif read = '1' then
empty <= '1';
full <= '0';
end if;
end if;
end process manageFlags;
end oneRegister;