-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.vhd
31 lines (27 loc) · 808 Bytes
/
types.vhd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 04/13/2021 04:36:36 PM
-- Design Name:
-- Module Name: types - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.NUMERIC_STD.ALL;
package types is
type vector_8bit is array(natural range <>) of signed(7 downto 0);
type vector_32bit is array(natural range <>) of signed(31 downto 0);
type vector_int is array(natural range <>) of integer;
type matrix_int is array(natural range <>) of vector_int(0 to 8);
end package;