PoC.misc.stat.Histogram

Todo

No documentation available.

Entity Declaration:

 1  );
 2  port (
 3    Clock         : in  std_logic;
 4    Reset         : in  std_logic;
 5
 6    Enable        : in  std_logic;
 7    DataIn        : in  std_logic_vector(DATA_BITS - 1 downto 0);
 8
 9    Histogram     : out T_SLM(2**DATA_BITS - 1 downto 0, COUNTER_BITS - 1 downto 0)
10  );
11end entity;
12
13
14architecture rtl of stat_Histogram is
15  type T_HISTOGRAM_MEMORY   is array(natural range <>) of unsigned(COUNTER_BITS downto 0);