blob: 23e57a74cc2ea00ffdc428b06e56c96bd95ff7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package OCONST2 is
type u8 is mod 2**8;
type Base is record
i1 : Integer;
end Record;
type R is record
u : u8;
b : Base;
end record;
for R use record
u at 0 range 0 .. 7;
b at 1 range 0 .. 31; -- aligned SImode bitfield
end record;
My_R : constant R := (u=>1, b=>(i1=>2));
procedure check (arg : R);
end;
|