PoC.misc.stat.Maximum

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    Valids        : out std_logic_vector(DEPTH - 1 downto 0);
11    Maximums      : out T_SLM(DEPTH - 1 downto 0, DATA_BITS - 1 downto 0);
12    Counts        : out T_SLM(DEPTH - 1 downto 0, COUNTER_BITS - 1 downto 0)
13  );
14end entity;
15
16
17architecture rtl of stat_Maximum is
18  type T_TAG_MEMORY       is array(natural range <>) of unsigned(DATA_BITS - 1 downto 0);