blob: bbde896cdc0e1a070c0dbcaecbbac39e78143b33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
library ieee;
use ieee.std_logic_1164.all;
entity myEntity is
end myEntity;
architecture behavioral of myEntity is
constant sizeArray : integer := 3;
type arrayT is array (0 to sizeArray-1) of std_logic;
constant myArray : arrayT := ('0','1');
begin
end behavioral;
|