--****************************************************************************** --* @short Data types for readout logic --****************************************************************************** --* @author SAKULIN Hannes <hsakulin@dsy-srv5.cern.ch> --* @date $Date: 2004/12/17 09:30:38 $ --* @version $Revision: 1.3 $ --****************************************************************************** --/ library IEEE; use IEEE.Std_logic_1164.all; use STD.TEXTIO.all; package ReadOutBufTypes is -- Select bits subtype TReadoutData is std_logic_vector(31 downto 0); type TReadoutData_vec is array (integer range <>) of TReadoutData; subtype TReadoutMonData is std_logic_vector(7 downto 0); type TReadoutMonData_vec is array (integer range <>) of TReadoutMonData; end; package body ReadOutBufTypes is end ReadOutBufTypes;