1
2
3
4
5
6
7
8
9
10
11
12 dcl NO_CONFIG_PRESENT fixed bin init (0) static options (constant);
13 dcl NOT_CONFIGED fixed bin init (1) static options (constant);
14 dcl PH_NOT_PRESENT fixed bin init (2) static options (constant);
15 dcl BASIC_ROM_FAILED fixed bin init (3) static options (constant);
16 dcl JAM_FAILED fixed bin init (4) static options (constant);
17 dcl SELF_FAILED fixed bin init (5) static options (constant);
18 dcl HW_ID_NO_MATCH fixed bin init (6) static options (constant);
19 dcl CON_SET_UP_FAILED fixed bin init (7) static options (constant);
20 dcl RSO_FAILED fixed bin init (8) static options (constant);
21 dcl FW_NOT_FOUND fixed bin init (9) static options (constant);
22 dcl FW_LOAD_FAILED fixed bin init (10) static options (constant);
23 dcl ALTER_NOT_FOUND fixed bin init (11) static options (constant);
24 dcl ALTER_LOAD_FAILED fixed bin init (12) static options (constant);
25 dcl FW_EXEC_FAILED fixed bin init (13) static options (constant);
26 dcl OPERATIONAL fixed bin init (14) static options (constant);
27 dcl STOP_ON_COND fixed bin init (15) static options (constant);
28
29 dcl PSIA_2_TRIP fixed bin init (1) static options (constant);
30 dcl IPC_PDSI fixed bin init (2) static options (constant);
31 dcl IPC_CONS_2 fixed bin init (3) static options (constant);
32 dcl IPC_DAI fixed bin init (4) static options (constant);
33 dcl IPC_IDI fixed bin init (5) static options (constant);
34 dcl IPC_TAPE_FIPS fixed bin init (6) static options (constant);
35 dcl IPC_DISK_FIPS fixed bin init (7) static options (constant);
36 dcl NDIC fixed bin init (9) static options (constant);
37 dcl PSIA_4_TRIP fixed bin init (15) static options (constant);
38
39 dcl TYPE (0:15) char (9) init ("N/A","psia_2","ur-pdsi","cons_2","ur-dai",
40 "idi","fips","fips","N/A","ndic",
41 "N/A","N/A","N/A","N/A","N/A","psia_4");
42
43
44