1 /* BEGIN INCLUDE FILE:  dm_ci_layout_types.incl.pl1 */
 2 
 3 /* DESCRIPTION:
 4 
 5         This include file contains constants for the valid control
 6    interval layout types.  The layout type of a control interval is
 7    kept in the first word of the addressable portion of the control
 8    interval.
 9 
10    ****  NOTE: CI_LAYOUT_BASIC and BASIC_CI_LAYOUT_1 in the include ****
11    ****  file dm_cm_basic_ci.incl.pl1, but expressed in different   ****
12    ****  data types.  Ideally, BASIC_CI_LAYOUT_1 should be in this  ****
13    ****  include file.                                              ****
14 */
15 
16 /* HISTORY:
17 Written by Matthew Pierret, 11/07/84.
18   (Moved from dm_ci_header.incl.pl1.)
19 Modified:
20 */
21 
22 /* format: style2,ind3 */
23 
24      dcl     CI_LAYOUT_BASIC        bit (36) aligned static options (constant) init ("242722567301"b3);
25      dcl     CI_LAYOUT_BJ           bit (36) aligned static options (constant) init ("542400121402"b3);
26      dcl     CI_LAYOUT_AJ           bit (36) aligned static options (constant) init ("643135724103"b3);
27 
28 /* END INCLUDE FILE:  dm_ci_layout_types.incl.pl1 */