blob: 0346621f983b6773cfb727604b1443bf8e8ac061 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use std.textio.all;
package pkg is
type enum_t is (a,b,c,d);
type arr_t is array (enum_t range <>) of line;
shared variable arr : arr_t(a to d) := (others => null);
end package;
package body pkg is
end package body pkg;
|