1 /* Begin include file io_status_word.incl.pl1 */
 2 /* Made from iom_stat.incl.pl1 by C. Hornig */
 3 
 4 dcl  io_status_word_ptr ptr;
 5 dcl  1 io_status_word based (io_status_word_ptr) aligned,   /* I/O status information */
 6        (
 7        2 t bit (1),                                         /* set to "1"b by IOM */
 8        2 power bit (1),                                     /* non-zero if peripheral absent or power off */
 9        2 major bit (4),                                     /* major status */
10        2 sub bit (6),                                       /* substatus */
11        2 eo bit (1),                                        /* even/odd bit */
12        2 marker bit (1),                                    /* non-zero if marker status */
13        2 soft bit (2),                                      /* software status */
14        2 initiate bit (1),                                  /* initiate bit */
15        2 abort bit (1),                                     /* software abort bit */
16        2 channel_stat bit (3),                              /* IOM channel status */
17        2 central_stat bit (3),                              /* IOM central status */
18        2 mbz bit (6),
19        2 rcount bit (6)
20        ) unaligned;                                         /* record count residue */
21 
22 /* End include file io_status_word.incl.pl1 */