1 /* BEGIN INCLUDE FILE tape_ioi_constants.incl.pl1 */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(87-08-18,Hartogs), approve(87-08-18,MCR7726),
 6      audit(87-08-27,GWMay), install(87-08-27,MR12.1-1094):
 7      Initial coding.
 8                                                    END HISTORY COMMENTS */
 9 
10 /*         This include file contains the mnemonic command names for the dcw commands used
11            by tape_ioi_. */
12 
13 dcl      BACKSPACE_ONE_RECORD   bit (6) static options (constant) init ("46"b3);
14 dcl      CONTINUE_NO_MARKER     bit (2) static options (constant) init ("10"b);
15 dcl      ERASE_COMMAND          bit (6) static options (constant) init ("54"b3);
16 dcl      MAX_READ_OPT           bit (6) static options (constant) init ("37"b3);
17 dcl      NO_CONTINUE_NO_MARKER  bit (2) static options (constant) init ("00"b);
18 dcl      NONDATA_TRANSFER       bit (6) static options (constant) init ("02"b3);
19 dcl      ONE_COUNT              bit (6) static options (constant) init ("01"b3);
20 dcl      RELATIVE_MODE          bit (1) static options (constant) init ("1"b);
21 dcl      RELATIVE_SECONDS       bit (2) static options (constant) init ("11"b);
22 dcl      REWIND_COMMAND         bit (6) static options (constant) init ("70"b3);
23 dcl      TDCW_TYPE              bit (2) static options (constant) init ("10"b);
24 dcl      TEN_SECONDS            fixed bin (71) static options (constant) init (10000000);
25 dcl      TWO_MINUTES            fixed bin (71) static options (constant) init (120);
26 
27 /* END INCLUDE FILE tape_ioi_constants.incl.pl1 */