PoC.misc.stat.Histogram
Todo
No documentation available.
Entity Declaration:
1 COUNTER_BITS : positive := 16
2 );
3 port (
4 Clock : in std_logic;
5 Reset : in std_logic;
6
7 Enable : in std_logic;
8 DataIn : in std_logic_vector(DATA_BITS - 1 downto 0);
9
10 Histogram : out T_SLM(2**DATA_BITS - 1 downto 0, COUNTER_BITS - 1 downto 0)
11 );
12end entity;
13
14
15architecture rtl of stat_Histogram is