OpenCores
URL https://opencores.org/ocsvn/mkjpeg/mkjpeg/trunk

Subversion Repositories mkjpeg

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /mkjpeg/branches/16rgb/trunk/tb/vhdl
    from Rev 48 to Rev 52
    Reverse comparison

Rev 48 → Rev 52

/JPEG_TB.VHD
204,21 → 204,22
wait;
end process;
 
outif_almost_full <= '0';
backpressure : process(CLK, RST)
begin
if RST = '1' then
outif_almost_full <= '0';
count1 <= (others => '0');
elsif CLK'event and CLK = '1' then
if count1 = 10000 then
count1 <= (others => '0');
outif_almost_full <= not outif_almost_full;
else
count1 <= count1 + 1;
end if;
end if;
end process;
--backpressure : process(CLK, RST)
--begin
-- if RST = '1' then
-- outif_almost_full <= '0';
-- count1 <= (others => '0');
-- elsif CLK'event and CLK = '1' then
-- if count1 = 10000 then
-- count1 <= (others => '0');
-- outif_almost_full <= not outif_almost_full;
-- else
-- count1 <= count1 + 1;
-- end if;
-- end if;
--end process;
 
end TB;
-----------------------------------

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.