Significant progress to getting pl1$pl1 to compile something, implemented many necess...
[multics_sim.git] / definition_dcls.c
1 #include "definition_dcls.h"
2
3 char *class_names[7] = {
4   "text",
5   "linkage",
6   "symbol",
7   "segname",
8   "static",
9   "system",
10   "heap"
11 };
12
13 char *symbolic_section_names[7] = {
14   "*text",
15   "*link",
16   "*symbol",
17   "*",
18   "*static",
19   "*system",
20   "*heap"
21 };
22
23 char *link_type_names[6] = {
24   "absolute in section",
25   "unused",
26   "absolute off of refname",
27   "symbolic off of refname",
28   "symbolic in section",
29   "symbolic off of refname; create"
30 };