-- +-----------------------------+ -- | Library: image_processing | -- | designer : Tim Pagden | -- | opened: 07 Jul 1996 | -- +-----------------------------+ -- Function: parameterizable IP cache register array. Window size, -- and framestore size all -- parameterizable. library IEEE; library vfp; library image_processing; use IEEE.std_logic_1164.all; use image_processing.image_class.all; use vfp.bus_class.all; entity ipcra_generic is generic ( image_width : integer; window : window_size ); port ( pixel_in : in std_ulogic_vector(7 downto 0); clock : in std_ulogic; window_pixel : out ulogic_8_vector(0 to (window.depth * window.width)-1) ); end ipcra_generic;