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 dcl 1 SIMPLE_TYPED_VECTOR_INIT int static options (constant),
27 2 type fixed bin (17) unal init (3),
28 2 number_of_dimensions
29 fixed bin (17) unal init (256),
30 2 dimension (256),
31 3 value_ptr ptr unaligned init ((256) null ());
32
33 dcl 1 GENERAL_TYPED_VECTOR_INIT int static options (constant),
34 2 type fixed bin (17) unal init (2),
35 2 number_of_dimensions fixed bin (17) unal init (256),
36 2 dimension (256),
37 3 identifier fixed bin (17) unal init ((256) 0),
38 3 pad bit (18) unal init ((256) ("0"b)),
39 3 value_ptr ptr unal init ((256) null ());
40
41