From: Cahit Date: Wed, 3 Sep 2014 08:10:29 +0000 (+0200) Subject: 31 bit std_logic array X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=8c6d73644f16d70d48a0f043bf847a3eee4704cf;p=trbnet.git 31 bit std_logic array --- diff --git a/trb_net_std.vhd b/trb_net_std.vhd index df73da5..9e251ee 100644 --- a/trb_net_std.vhd +++ b/trb_net_std.vhd @@ -151,12 +151,11 @@ package trb_net_std is type std_logic_vector_array_36 is array (integer range <>) of std_logic_vector(35 downto 0); type std_logic_vector_array_32 is array (integer range <>) of std_logic_vector(31 downto 0); + type std_logic_vector_array_31 is array (integer range <>) of std_logic_vector(30 downto 0); type std_logic_vector_array_24 is array (integer range <>) of std_logic_vector(23 downto 0); type std_logic_vector_array_11 is array (integer range <>) of std_logic_vector(10 downto 0); type std_logic_vector_array_8 is array (integer range <>) of std_logic_vector(7 downto 0); - - --function declarations function and_all (arg : std_logic_vector) return std_logic;