blob: 327f902fe81c96b1b8ebaede2739f8abb1cf9c53 (
plain)
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
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity test is
end entity test;
architecture rtl of test is
type test_t is record
t1 : natural;
t2 : natural;
end record test_t;
constant C_TEST_T : test_t :=
(
t1 => 1,
t2 => 2);
constant C_TEST : std_ulogic_vector(0 to 7) :=
(C_TEST_T.t1 => '1', others => '0');
begin
end architecture rtl;
|