1 /* BEGIN INCLUDE FILE salv_options.incl.pl1 --- 04/06/76 A. Kobziar */
 2 
 3 dcl 1 salv_opts unaligned based (addr (salv_opt_bits)),     /* layout of salv_data$options array */
 4     2 (console bit (1),
 5      debug bit (1),
 6      dump bit (1),
 7      check bit (1),
 8      rbld bit (1),
 9      pnames bit (1),
10      dcf bit (1),
11      pad1 bit (11),                                         /* rest are neg options */
12      nconsole bit (1),                                      /* negates setting on salv config card */
13      ndebug bit (1),
14      ndump bit (1),
15      ncheck bit (1),
16      nrbld bit (1),
17      npnames bit (1),
18      ndcf bit (1),
19      pad2 bit (11)) unaligned;
20 
21 dcl  salv_opt_bits bit (36) aligned;
22 
23 /* END INCLUDE FILE ... salv_options.incl.pl1 */