1 
 2 "
 3 "         BEGIN INCLUDE FILE ... link_vector.incl.alm   9/77 P. Krupp
 4 "
 5 " Macro to generate the operator pointers vector for BASIC, COBOL, and the probe command.
 6 " Two versions of the vector are generated.  One for use by trace with COBOL and the other for standard use.
 7 "
 8 " The link to cicg_pascal_operators_ was added because of a communication mixup.
 9 " operator_pointers_ is a system  module and should not be used by private translators.
10 " Pointers in this vector are a resource that must be shared across all
11 " Multics sites.  This resource is allocated by CISL.  Private translators
12 " should generate a link in the object segment to the operator segment.
13 "
14 " Modified 07/23/81 by M. Weaver to add cicg_pascal_operators_ and algol68_operators_
15 "
16           macro     link_vector
17           segdef    &1operator_pointers_
18 &1operator_pointers_:
19 
20 "
21           link      &1l0,<basic_operators_>|[enter_main]
22           link      &1l1,<basic_operators_>|[enter_proc]
23           link      &1l2,<probe>|[break]
24           link      &1l3,<cobol_operators_>|[&1entry_version_1]
25           link      &1l4,<cicg_pascal_operators_>|[&1transfer_vector]
26           link      &1l5,<algol68_operators_>|[&1operator_table]
27 "
28 " New links should be added before this line.  Order of existing
29 " links MUST NOT BE CHANGED!
30 "
31           &end
32 "
33 "         END INCLUDE FILE ... link_vector.incl.alm
34