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

Subversion Repositories mkjpeg

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /mkjpeg/trunk/design/bytestuffer
    from Rev 25 to Rev 36
    Reverse comparison

Rev 25 → Rev 36

/ByteStuffer.vhd
94,9 → 94,7
 
huf_buf_sel <= huf_buf_sel_s;
huf_rd_req <= huf_rd_req_s;
num_enc_bytes <= std_logic_vector(wraddr);
 
-------------------------------------------------------------------
-- CTRL_SM
-------------------------------------------------------------------
201,6 → 199,19
end if;
end if;
end process;
-------------------------------------------------------------------
-- num_enc_bytes
-------------------------------------------------------------------
p_num_enc_bytes : process(CLK, RST)
begin
if RST = '1' then
num_enc_bytes <= (others => '0');
elsif CLK'event and CLK = '1' then
-- plus 2 for EOI marker last bytes
num_enc_bytes <= std_logic_vector(wraddr + 2);
end if;
end process;
 
 
end architecture RTL;

powered by: WebSVN 2.1.0

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