--*************** DEFINITION OF LIBRARYS ********** LIBRARY IEEE; USE IEEE.std_logic_1164.all; USE IEEE.std_logic_unsigned.all; USE IEEE.numeric_std.all; --***************** DEFINITION of PACKAGE ****************** --ce module permet de definir les dimmensions du package of application : ega package definitions is type VECTORint is array (natural RANGE <>) of std_logic_vector(8-1 downto 0); type VECTORfloat is array (natural RANGE <>) of std_logic_vector(16-1 downto 0); type VECTORcpx is array (natural RANGE <>) of std_logic_vector(32-1 downto 0); end definitions;