1 /* BEGIN INCLUDE FILE ... dbr.adp.incl.pl1 ... Created July, 1981 */
 2 
 3 dcl 1 adp_dbr aligned based,                                /* ADP Descriptor Base Register */
 4 
 5    (2 add bit (26),                                         /* Page table address */
 6     2 pad1 bit (1),                                         /* overlays adp_sdw.valid */
 7     2 pad2 bit (9),                                         /* overlays adp_sdw.rungs */
 8 
 9     2 bound bit (14),                                       /* Bound of segment, in 16 word blocks */
10     2 pad3 bit (2),
11     2 stack_base_segno fixed bin (14) unsigned,             /* overlays ad_sdw.entry_bound */
12     2 pad4 bit (4),                                         /* overlays adp_sdw.access */
13     2 unpaged bit (1),                                      /* "1"b => segment is unpaged */
14     2 pad5 bit (1)) unaligned;                              /* overlays adp_sdw.not_a_gate */
15 
16 /* END INCLUDE FILE dbr.adp.incl.pl1 */