1
2
3 dcl models (13) fixed bin static options (constant) init
4 (202, 300, 301, 302, 303, 304, 401, 402, 901, 1000, 1200, 1201, 1600);
5
6 dcl types (13) fixed bin static options (constant) init
7 ( 1, 2, 2, 2, 3, 3, 4, 4, 4, 4, 4, 4, 4);
8
9 dcl nmodels fixed bin static options (constant) init (13);
10
11 dcl (default_line_length init (136),
12 default_page_length init (60),
13 default_lpi init (6)
14 ) fixed bin static options (constant);
15
16 dcl WRITE (4) bit (6) aligned static options (constant) init
17 ("011000"b, "011000"b, "011100"b, "011100"b);
18
19 dcl WRITE_NE_SLEW (4) bit (6) aligned static options (constant) init
20 ("001001"b, "001001"b, "001101"b, "001101"b);
21
22 dcl LOAD_IMAGE (4) bit (6) aligned static options (constant) init
23 ("000000"b, "001100"b, "000001"b, "000001"b);
24
25 dcl LOAD_VFC (4) bit (6) aligned static options (constant) init
26 ("000000"b, "000000"b, "000000"b, "000101"b);
27
28 dcl READ_STATUS (4) bit (6) aligned static options (constant) init
29 ("000000"b, "000000"b, "000000"b, "000011"b);
30
31
32