ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.0-1206>graphic_error_table_.alm ASSEMBLED ON: 11/05/86 1059.1 mst Wed OPTIONS USED: list ASSEMBLED BY: ALM Version 6.7 October 1986 ASSEMBLER CREATED: 10/08/86 1557.5 mst Wed  1 " ***********************************************************  2 " * *  3 " * *  4 " * Copyright, (C) Honeywell Information Systems Inc., 1981 *  5 " * *  6 " * *  7 " ***********************************************************  8  9 " ******************************************************  10 " * *  11 " * *  12 " * Copyright (c) 1972 by Massachusetts Institute of *  13 " * Technology and Honeywell Information Systems, Inc. *  14 " * *  15 " * *  16 " ******************************************************  17  18  19 include et_macros  1-1 " Begin include file ...... et_macros.incl.alm  1-2 " Written 6/15/77 by Noel I. Morris 1-3 " Modified '82 so error code entries are in first page of segment.  1-4  1-5 " This include file contains macros for generating error tables 1-6 " for both system and non-system use.  1-7  1-8 " ET MACRO  1-9 "  1-10 " This macro is used to initialize the error table for either  1-11 " system or non-system use. It is invoked at the beginning of  1-12 " the error table as follows:  1-13 "  1-14 " et table_name{,system}  1-15 "  1-16  1-17 macro et  1 1-18 maclist on 2 1-19  3 1-20 name &1  4 1-21  5 1-22 &^=&2,system&[  6 1-23  7 1-24 include stack_header  8 1-25  9 1-26  10 1-27  11 1-28 use codes  12 1-29 .code_start:  13 1-30  14 1-31 use past_codes 15 1-32 .code_end:  16 1-33  17 1-34 join /link/codes,past_codes  18 1-35  19 1-36 use messages  20 1-37  21 1-38 .trapproc:  22 1-39 epaq 0,ic  23 1-40 eax0 0,au  24 1-41 epbpsb sp|0  25 1-42 lprplp sb|stack_header.lot_ptr,*au 26 1-43 eax1 .code_start  27 1-44 .loop: stx0 lp|0,x1 28 1-45 eax1 1,x1  29 1-46 cmpx1 .code_end,du 30 1-47 tmi .loop-*,ic 31 1-48 short_return  32 1-49  33 1-50 firstref <*text>|.trapproc 34 1-51  35 1-52 &; use codes  36 1-53 use messages  37 1-54  38 1-55 join /text/codes,messages  39 1-56  40 1-57 &]  41 1-58  42 1-59 bool .segno,77777  43 1-60  44 1-61 maclist off  45 1-62  46 1-63 &end  1-64  1-65  1-66  1-67 " EC MACRO  1-68 "  1-69 " This macro is used to define an error code as shown:  1-70 "  1-71 " ec name,{short_mess},(long_mess)  1-72 "  1-73 " If more than a single name is to be defined for a given message,  1-74 " a list of names separated by commas and enclosed in parentheses  1-75 " must be given. short_mess must be 8 or less characters. If omitted,  1-76 " the short_mess will be set to the name. long_mess is enclosed  1-77 " in parentheses in order to cause ALM to ignore embedded blanks. Please  1-78 " note that double quote characters in either short_mess or long_mess  1-79 " must be doubled in order to make the ALM assembly work properly.  1-80 " Note that a macro invocation line terminated by a comma will cause that  1-81 " statement to be continued on the next line.  1-82  1-83 macro ec  1 1-84 use codes  2 1-85  3 1-86 maclist on,save  4 1-87 &(1 segdef &i  5 1-88 &) maclist restore  6 1-89 &(1&i:  7 1-90 &) maclist object,save  8 1-91 zero .segno,&U 9 1-92 maclist restore  10 1-93 use messages  11 1-94 &^=&l2,0&[ shortname &2  12 1-95 &; shortname &1  13 1-96 &]  14 1-97 &U: 15 1-98 maclist on,save  16 1-99 acc "&3"  17 1-100  18 1-101 maclist restore  19 1-102 &end  1-103  1-104 macro shortname 1 1-105 maclist on,save  2 1-106 aci "&1",8  3 1-107 maclist restore  4 1-108 &end  1-109  1-110  1-111  1-112 " A typical error table source program might have the following format: 1-113 "  1-114 " include et_macros 1-115 "  1-116 " et name_of_error_table  1-117 "  1-118 " ec error_code_1,ecode1,(This is error code 1.)  1-119 "  1-120 " ec error_code_2,ecode2,(This is error code 2.)  1-121 "  1-122 " : : : :  1-123 "  1-124 " ec error_code_n,ecoden,(This is the nth error code.)  1-125 "  1-126 " end  1-127 "  1-128  1-129 " End of include file ...... et_macros.incl.alm 1-130  20  21  22  23 et graphic_error_table_   000000 name graphic_error_table_     include stack_header  2-1 " BEGIN INCLUDE FILE ... stack_header.incl.alm 3/72 Bill Silver  2-2 "  2-3 " modified 7/76 by M. Weaver for *system links and more system use of areas 2-4 " modified 3/77 by M. Weaver to add rnt_ptr  2-5 " modified 7/77 by S. Webber to add run_unit_depth and assign_linkage_ptr  2-6 " modified 6/83 by J. Ives to add trace_frames and in_trace.  2-7  2-8 " HISTORY COMMENTS: 2-9 " 1) change(86-06-24,DGHowe), approve(86-06-24,MCR7396),  2-10 " audit(86-08-05,Schroth), install(86-11-03,MR12.0-1206):  2-11 " added the heap_header_ptr definition  2-12 " 2) change(86-08-12,Kissel), approve(86-08-12,MCR7473),  2-13 " audit(86-10-10,Fawcett), install(86-11-03,MR12.0-1206):  2-14 " Modified to support control point management. These changes were 2-15 " actually made in February 1985 by G. Palter.  2-16 " 3) change(86-10-22,Fawcett), approve(86-10-22,MCR7473),  2-17 " audit(86-10-22,Farley), install(86-11-03,MR12.0-1206):  2-18 " Remove the old_lot pointer and replace it with cpm_data_ptr. Use the 18  2-19 " bit pad after cur_lot_size for the cpm_enabled. This was done to save 2-20 " some space int the stack header and change the cpd_ptr unal to  2-21 " cpm_data_ptr (ITS pair).  2-22 " END HISTORY COMMENTS 2-23  000004 2-24 equ stack_header.cpm_data_ptr,4 ptr to control point for this stack  000006 2-25 equ stack_header.combined_stat_ptr,6 ptr to separate static area  2-26  000010 2-27 equ stack_header.clr_ptr,8 ptr to area containing linkage sections  000012 2-28 equ stack_header.max_lot_size,10 number of words allowed in lot (DU)  000012 2-29 equ stack_header.main_proc_invoked,10 nonzero if main proc was invoked in run unit (DL)  000012 2-30 equ stack_header.run_unit_depth,10 number of active run units stacked (DL) 000013 2-31 equ stack_header.cur_lot_size,11 DU number of words (entries) in lot  000013 2-32 equ stack_header.cpm_enabled,11 DL non-zero if control point management is enabled  000014 2-33 equ stack_header.system_free_ptr,12 ptr to system storage area 000016 2-34 equ stack_header.user_free_ptr,14 ptr to user storage area  2-35  000020 2-36 equ stack_header.parent_ptr,16 ptr to parent stack or null  000022 2-37 equ stack_header.stack_begin_ptr,18 ptr to first stack frame  000024 2-38 equ stack_header.stack_end_ptr,20 ptr to next useable stack frame 000026 2-39 equ stack_header.lot_ptr,22 ptr to the lot for the current ring  2-40  000030 2-41 equ stack_header.signal_ptr,24 ptr to signal proc for current ring  000032 2-42 equ stack_header.bar_mode_sp,26 value of sp before entering bar mode  000034 2-43 equ stack_header.pl1_operators_ptr,28 ptr: pl1_operators_$operator_table  000036 2-44 equ stack_header.call_op_ptr,30 ptr to standard call operator 2-45  000040 2-46 equ stack_header.push_op_ptr,32 ptr to standard push operator 000042 2-47 equ stack_header.return_op_ptr,34 ptr to standard return operator 000044 2-48 equ stack_header.ret_no_pop_op_ptr,36 ptr: stand. return/ no pop operator  000046 2-49 equ stack_header.entry_op_ptr,38 ptr to standard entry operator  2-50  000050 2-51 equ stack_header.trans_op_tv_ptr,40 ptr to table of translator operator ptrs  000052 2-52 equ stack_header.isot_ptr,42 pointer to ISOT  000054 2-53 equ stack_header.sct_ptr,44 pointer to System Condition Table 000056 2-54 equ stack_header.unwinder_ptr,46 pointer to unwinder for current ring 2-55  000060 2-56 equ stack_header.sys_link_info_ptr,48 ptr to *system link name table  000062 2-57 equ stack_header.rnt_ptr,50 ptr to reference name table  000064 2-58 equ stack_header.ect_ptr,52 ptr to event channel table  000066 2-59 equ stack_header.assign_linkage_ptr,54 ptr to area for hcs_$assign_linkage calls  000070 2-60 equ stack_header.heap_header_ptr,56 ptr to heap header.  000072 2-61 equ stack_header.trace_frames,58 stack of trace_catch_ frames 000073 2-62 equ stach_header.trace_top_ptr,59 trace pointer  000074 2-63 equ stack_header.in_trace,60 trace antirecurse bit  000100 2-64 equ stack_header_end,64 length of stack header  2-65  2-66  2-67  2-68  000000 2-69 equ trace_frames.count,0 number of trace frames on stack  000001 2-70 equ trace_frames.top_ptr,1 packed pointer to top one  2-71  2-72 " The following constant is an offset within the pl1 operators table.  2-73 " It references a transfer vector table.  2-74  000551 2-75 bool tv_offset,551 2-76  2-77  2-78 " The following constants are offsets within this transfer vector table.  2-79  001170 2-80 equ call_offset,tv_offset+271  001171 2-81 equ push_offset,tv_offset+272  001172 2-82 equ return_offset,tv_offset+273  001173 2-83 equ return_no_pop_offset,tv_offset+274 001174 2-84 equ entry_offset,tv_offset+275 2-85  2-86  2-87 " END INCLUDE FILE stack_header.incl.alm     use codes  000010 .code_start:   use past_codes 000070 .code_end:   join /link/codes,past_codes   use messages   000000 .trapproc:  000000 aa 000000 2130 04 epaq 0,ic  000001 aa 000000 6200 01 eax0 0,au  000002 aa 6 00000 3731 00 epbpsb sp|0  000003 aa 7 00026 7641 61 lprplp sb|stack_header.lot_ptr,*au 000004 8a 000010 6210 00 eax1 .code_start  000005 aa 4 00000 7401 11 .loop: stx0 lp|0,x1 000006 aa 000001 6210 11 eax1 1,x1  000007 8a 000070 1010 03 cmpx1 .code_end,du 000010 aa 777775 6040 04 tmi .loop-*,ic 000011 aa 7 00044 7101 20 short_return   000012 firstref <*text>|.trapproc    077777 bool .segno,77777   24  25  26  27 ec abs_pos_in_clipping,abs_clip,  28 (An absolute effector appears in an array within the scope of an extent element.)  000010 segdef abs_pos_in_clipping  000010 a0 077777 000014 000012 aa 141 142 163 137 aci "abs_clip",8  000013 aa 143 154 151 160 000014 aa 117 101 156 040 acc "An absolute effector appears in an array within the scope of an extent element." 000015 aa 141 142 163 157 000016 aa 154 165 164 145 000017 aa 040 145 146 146 000020 aa 145 143 164 157 000021 aa 162 040 141 160 000022 aa 160 145 141 162 000023 aa 163 040 151 156 000024 aa 040 141 156 040 000025 aa 141 162 162 141 000026 aa 171 040 167 151 000027 aa 164 150 151 156 000030 aa 040 164 150 145 000031 aa 040 163 143 157 000032 aa 160 145 040 157 000033 aa 146 040 141 156 000034 aa 040 145 170 164 000035 aa 145 156 164 040 000036 aa 145 154 145 155 000037 aa 145 156 164 056  29 ec bad_align,badalign, 30 (The alignment provided for a text node is undefined.) 000011 segdef bad_align  000011 a0 077777 000042 000040 aa 142 141 144 141 aci "badalign",8  000041 aa 154 151 147 156 000042 aa 064 124 150 145 acc "The alignment provided for a text node is undefined."  000043 aa 040 141 154 151 000044 aa 147 156 155 145 000045 aa 156 164 040 160 000046 aa 162 157 166 151 000047 aa 144 145 144 040 000050 aa 146 157 162 040 000051 aa 141 040 164 145 000052 aa 170 164 040 156 000053 aa 157 144 145 040 000054 aa 151 163 040 165 000055 aa 156 144 145 146 000056 aa 151 156 145 144 000057 aa 056 000 000 000  31 ec bad_device_type,badevice,  32 (Graphic input device number is not defined.)  000012 segdef bad_device_type  000012 a0 077777 000062 000060 aa 142 141 144 145 aci "badevice",8  000061 aa 166 151 143 145 000062 aa 053 107 162 141 acc "Graphic input device number is not defined." 000063 aa 160 150 151 143 000064 aa 040 151 156 160 000065 aa 165 164 040 144 000066 aa 145 166 151 143 000067 aa 145 040 156 165 000070 aa 155 142 145 162 000071 aa 040 151 163 040 000072 aa 156 157 164 040 000073 aa 144 145 146 151 000074 aa 156 145 144 056  33 ec bad_no_iter,bad_iter,  34 (The number of iterations to be performed is negative.)  000013 segdef bad_no_iter  000013 a0 077777 000077 000075 aa 142 141 144 137 aci "bad_iter",8  000076 aa 151 164 145 162 000077 aa 065 124 150 145 acc "The number of iterations to be performed is negative."  000100 aa 040 156 165 155 000101 aa 142 145 162 040 000102 aa 157 146 040 151 000103 aa 164 145 162 141 000104 aa 164 151 157 156 000105 aa 163 040 164 157 000106 aa 040 142 145 040 000107 aa 160 145 162 146 000110 aa 157 162 155 145 000111 aa 144 040 151 163 000112 aa 040 156 145 147 000113 aa 141 164 151 166 000114 aa 145 056 000 000  35 ec bad_node,bad_node,  36 (Node is not a defined graphic datum.) 000014 segdef bad_node  000014 a0 077777 000117 000115 aa 142 141 144 137 aci "bad_node",8  000116 aa 156 157 144 145 000117 aa 044 116 157 144 acc "Node is not a defined graphic datum."  000120 aa 145 040 151 163 000121 aa 040 156 157 164 000122 aa 040 141 040 144 000123 aa 145 146 151 156 000124 aa 145 144 040 147 000125 aa 162 141 160 150 000126 aa 151 143 040 144 000127 aa 141 164 165 155 000130 aa 056 000 000 000  37 ec clipping_unimplemented,cantclip,  38 (Graphic clipping is not yet implemented.) 000015 segdef clipping_unimplemented 000015 a0 077777 000133 000131 aa 143 141 156 164 aci "cantclip",8  000132 aa 143 154 151 160 000133 aa 050 107 162 141 acc "Graphic clipping is not yet implemented."  000134 aa 160 150 151 143 000135 aa 040 143 154 151 000136 aa 160 160 151 156 000137 aa 147 040 151 163 000140 aa 040 156 157 164 000141 aa 040 171 145 164 000142 aa 040 151 155 160 000143 aa 154 145 155 145 000144 aa 156 164 145 144 000145 aa 056 000 000 000  39 ec compiler_error,compiler,  40 (Internal graphic compiler error.) 000016 segdef compiler_error 000016 a0 077777 000150 000146 aa 143 157 155 160 aci "compiler",8  000147 aa 151 154 145 162 000150 aa 040 111 156 164 acc "Internal graphic compiler error."  000151 aa 145 162 156 141 000152 aa 154 040 147 162 000153 aa 141 160 150 151 000154 aa 143 040 143 157 000155 aa 155 160 151 154 000156 aa 145 162 040 145 000157 aa 162 162 157 162 000160 aa 056 000 000 000  41 ec gct_bad_special_char,gctspchr,  42 (Unrecognized special format character specified in graphic character table.)  000017 segdef gct_bad_special_char  000017 a0 077777 000163 000161 aa 147 143 164 163 aci "gctspchr",8  000162 aa 160 143 150 162 000163 aa 113 125 156 162 acc "Unrecognized special format character specified in graphic character table." 000164 aa 145 143 157 147 000165 aa 156 151 172 145 000166 aa 144 040 163 160 000167 aa 145 143 151 141 000170 aa 154 040 146 157 000171 aa 162 155 141 164 000172 aa 040 143 150 141 000173 aa 162 141 143 164 000174 aa 145 162 040 163 000175 aa 160 145 143 151 000176 aa 146 151 145 144 000177 aa 040 151 156 040 000200 aa 147 162 141 160 000201 aa 150 151 143 040 000202 aa 143 150 141 162 000203 aa 141 143 164 145 000204 aa 162 040 164 141 000205 aa 142 154 145 056  43 ec gdt_missing,no_gdt, 44 (Graphic device table was not specified or is internally inconsistent.)  000020 segdef gdt_missing  000020 a0 077777 000210 000206 aa 156 157 137 147 aci "no_gdt",8  000207 aa 144 164 040 040 000210 aa 105 107 162 141 acc "Graphic device table was not specified or is internally inconsistent."  000211 aa 160 150 151 143 000212 aa 040 144 145 166 000213 aa 151 143 145 040 000214 aa 164 141 142 154 000215 aa 145 040 167 141 000216 aa 163 040 156 157 000217 aa 164 040 163 160 000220 aa 145 143 151 146 000221 aa 151 145 144 040 000222 aa 157 162 040 151 000223 aa 163 040 151 156 000224 aa 164 145 162 156 000225 aa 141 154 154 171 000226 aa 040 151 156 143 000227 aa 157 156 163 151 000230 aa 163 164 145 156 000231 aa 164 056 000 000  45 ec impossible_effector_length,badeffln,  46 (Encountered effector has an impossible length.)  000021 segdef impossible_effector_length 000021 a0 077777 000234 000232 aa 142 141 144 145 aci "badeffln",8  000233 aa 146 146 154 156 000234 aa 056 105 156 143 acc "Encountered effector has an impossible length."  000235 aa 157 165 156 164 000236 aa 145 162 145 144 000237 aa 040 145 146 146 000240 aa 145 143 164 157 000241 aa 162 040 150 141 000242 aa 163 040 141 156 000243 aa 040 151 155 160 000244 aa 157 163 163 151 000245 aa 142 154 145 040 000246 aa 154 145 156 147 000247 aa 164 150 056 000  47 ec incomplete_structure,blksize,  56 (Too many elements supplied to create a single graphic list or array.) 000026 segdef lsm_blk_len  000026 a0 077777 000351 000347 aa 076 142 154 153 aci ">blksize",8  000350 aa 163 151 172 145 000351 aa 104 124 157 157 acc "Too many elements supplied to create a single graphic list or array."  000352 aa 040 155 141 156 000353 aa 171 040 145 154 000354 aa 145 155 145 156 000355 aa 164 163 040 163 000356 aa 165 160 160 154 000357 aa 151 145 144 040 000360 aa 164 157 040 143 000361 aa 162 145 141 164 000362 aa 145 040 141 040 000363 aa 163 151 156 147 000364 aa 154 145 040 147 000365 aa 162 141 160 150 000366 aa 151 143 040 154 000367 aa 151 163 164 040 000370 aa 157 162 040 141 000371 aa 162 162 141 171 000372 aa 056 000 000 000  57 ec lsm_invalid_op,lsm_Xop, 58 (The directed operation is invalid.)  000027 segdef lsm_invalid_op 000027 a0 077777 000375 000373 aa 154 163 155 137 aci "lsm_Xop",8  000374 aa 130 157 160 040 000375 aa 042 124 150 145 acc "The directed operation is invalid."  000376 aa 040 144 151 162 000377 aa 145 143 164 145 000400 aa 144 040 157 160 000401 aa 145 162 141 164 000402 aa 151 157 156 040 000403 aa 151 163 040 151 000404 aa 156 166 141 154 000405 aa 151 144 056 000  59 ec lsm_node_ob,lsm_oob,  60 (The node value supplied is out of bounds.)  000030 segdef lsm_node_ob  000030 a0 077777 000410 000406 aa 154 163 155 137 aci "lsm_oob",8  000407 aa 157 157 142 040 000410 aa 051 124 150 145 acc "The node value supplied is out of bounds."  000411 aa 040 156 157 144 000412 aa 145 040 166 141 000413 aa 154 165 145 040 000414 aa 163 165 160 160 000415 aa 154 151 145 144 000416 aa 040 151 163 040 000417 aa 157 165 164 040 000420 aa 157 146 040 142 000421 aa 157 165 156 144 000422 aa 163 056 000 000  61 ec lsm_seg_full,lsm_full,  62 (The graphic segment is full.) 000031 segdef lsm_seg_full  000031 a0 077777 000425 000423 aa 154 163 155 137 aci "lsm_full",8  000424 aa 146 165 154 154 000425 aa 034 124 150 145 acc "The graphic segment is full."  000426 aa 040 147 162 141 000427 aa 160 150 151 143 000430 aa 040 163 145 147 000431 aa 155 145 156 164 000432 aa 040 151 163 040 000433 aa 146 165 154 154 000434 aa 056 000 000 000  63 ec lsm_sym_search,nosymbol,  64 (Symbol not found in symbol table.)  000032 segdef lsm_sym_search 000032 a0 077777 000437 000435 aa 156 157 163 171 aci "nosymbol",8  000436 aa 155 142 157 154 000437 aa 041 123 171 155 acc "Symbol not found in symbol table."  000440 aa 142 157 154 040 000441 aa 156 157 164 040 000442 aa 146 157 165 156 000443 aa 144 040 151 156 000444 aa 040 163 171 155 000445 aa 142 157 154 040 000446 aa 164 141 142 154 000447 aa 145 056 000 000  65 ec malformed_input,malformd,  66 (The graphic input received was malformed.)  000033 segdef malformed_input  000033 a0 077777 000452 000450 aa 155 141 154 146 aci "malformd",8  000451 aa 157 162 155 144 000452 aa 051 124 150 145 acc "The graphic input received was malformed."  000453 aa 040 147 162 141 000454 aa 160 150 151 143 000455 aa 040 151 156 160 000456 aa 165 164 040 162 000457 aa 145 143 145 151 000460 aa 166 145 144 040 000461 aa 167 141 163 040 000462 aa 155 141 154 146 000463 aa 157 162 155 145 000464 aa 144 056 000 000  67 ec neg_delay,negdelay, 68 (A negative delay between increments has been specified.)  000034 segdef neg_delay  000034 a0 077777 000467 000465 aa 156 145 147 144 aci "negdelay",8  000466 aa 145 154 141 171 000467 aa 067 101 040 156 acc "A negative delay between increments has been specified." 000470 aa 145 147 141 164 000471 aa 151 166 145 040 000472 aa 144 145 154 141 000473 aa 171 040 142 145 000474 aa 164 167 145 145 000475 aa 156 040 151 156 000476 aa 143 162 145 155 000477 aa 145 156 164 163 000500 aa 040 150 141 163 000501 aa 040 142 145 145 000502 aa 156 040 163 160 000503 aa 145 143 151 146 000504 aa 151 145 144 056  69 ec no_wgs_yet,no_wgs,  70 (No working graphic segment exists.)  000035 segdef no_wgs_yet 000035 a0 077777 000507 000505 aa 156 157 137 167 aci "no_wgs",8  000506 aa 147 163 040 040 000507 aa 042 116 157 040 acc "No working graphic segment exists."  000510 aa 167 157 162 153 000511 aa 151 156 147 040 000512 aa 147 162 141 160 000513 aa 150 151 143 040 000514 aa 163 145 147 155 000515 aa 145 156 164 040 000516 aa 145 170 151 163 000517 aa 164 163 056 000  71 ec node_list_overflow,>nodetbl,  72 (The internal node list table has overflowed.) 000036 segdef node_list_overflow 000036 a0 077777 000522 000520 aa 076 156 157 144 aci ">nodetbl",8  000521 aa 145 164 142 154 000522 aa 054 124 150 145 acc "The internal node list table has overflowed."  000523 aa 040 151 156 164 000524 aa 145 162 156 141 000525 aa 154 040 156 157 000526 aa 144 145 040 154 000527 aa 151 163 164 040 000530 aa 164 141 142 154 000531 aa 145 040 150 141 000532 aa 163 040 157 166 000533 aa 145 162 146 154 000534 aa 157 167 145 144 000535 aa 056 000 000 000  73 ec node_mismatch,wrongnod, 74 (The node returned by the graphic terminal was not the node requested.)  000037 segdef node_mismatch  000037 a0 077777 000540 000536 aa 167 162 157 156 aci "wrongnod",8  000537 aa 147 156 157 144 000540 aa 105 124 150 145 acc "The node returned by the graphic terminal was not the node requested."  000541 aa 040 156 157 144 000542 aa 145 040 162 145 000543 aa 164 165 162 156 000544 aa 145 144 040 142 000545 aa 171 040 164 150 000546 aa 145 040 147 162 000547 aa 141 160 150 151 000550 aa 143 040 164 145 000551 aa 162 155 151 156 000552 aa 141 154 040 167 000553 aa 141 163 040 156 000554 aa 157 164 040 164 000555 aa 150 145 040 156 000556 aa 157 144 145 040 000557 aa 162 145 161 165 000560 aa 145 163 164 145 000561 aa 144 056 000 000  75 ec node_not_active,nodeinac,  76 (The node is not resident in the graphic processor.)  000040 segdef node_not_active  000040 a0 077777 000564 000562 aa 156 157 144 145 aci "nodeinac",8  000563 aa 151 156 141 143 000564 aa 062 124 150 145 acc "The node is not resident in the graphic processor."  000565 aa 040 156 157 144 000566 aa 145 040 151 163 000567 aa 040 156 157 164 000570 aa 040 162 145 163 000571 aa 151 144 145 156 000572 aa 164 040 151 156 000573 aa 040 164 150 145 000574 aa 040 147 162 141 000575 aa 160 150 151 143 000576 aa 040 160 162 157 000577 aa 143 145 163 163 000600 aa 157 162 056 000  77 ec nongraphic_switch,^graphsw, 78 (This operation only permitted for a graphic I/O switch.)  000041 segdef nongraphic_switch  000041 a0 077777 000603 000601 aa 136 147 162 141 aci "^graphsw",8  000602 aa 160 150 163 167 000603 aa 067 124 150 151 acc "This operation only permitted for a graphic I/O switch." 000604 aa 163 040 157 160 000605 aa 145 162 141 164 000606 aa 151 157 156 040 000607 aa 157 156 154 171 000610 aa 040 160 145 162 000611 aa 155 151 164 164 000612 aa 145 144 040 146 000613 aa 157 162 040 141 000614 aa 040 147 162 141 000615 aa 160 150 151 143 000616 aa 040 111 057 117 000617 aa 040 163 167 151 000620 aa 164 143 150 056  79 ec not_a_gdt,notagdt,  80 (Segment is not a graphic device table.)  000042 segdef not_a_gdt  000042 a0 077777 000623 000621 aa 156 157 164 141 aci "notagdt",8  000622 aa 147 144 164 040 000623 aa 046 123 145 147 acc "Segment is not a graphic device table."  000624 aa 155 145 156 164 000625 aa 040 151 163 040 000626 aa 156 157 164 040 000627 aa 141 040 147 162 000630 aa 141 160 150 151 000631 aa 143 040 144 145 000632 aa 166 151 143 145 000633 aa 040 164 141 142 000634 aa 154 145 056 000  81 ec not_a_structure,notstruc,  82 (Data is not a graphic structure.) 000043 segdef not_a_structure  000043 a0 077777 000637 000635 aa 156 157 164 163 aci "notstruc",8  000636 aa 164 162 165 143 000637 aa 040 104 141 164 acc "Data is not a graphic structure."  000640 aa 141 040 151 163 000641 aa 040 156 157 164 000642 aa 040 141 040 147 000643 aa 162 141 160 150 000644 aa 151 143 040 163 000645 aa 164 162 165 143 000646 aa 164 165 162 145 000647 aa 056 000 000 000  83 ec null_replacement,replnull,  84 (The null node cannot be used to replace an existing node.)  000044 segdef null_replacement  000044 a0 077777 000652 000650 aa 162 145 160 154 aci "replnull",8  000651 aa 156 165 154 154 000652 aa 071 124 150 145 acc "The null node cannot be used to replace an existing node."  000653 aa 040 156 165 154 000654 aa 154 040 156 157 000655 aa 144 145 040 143 000656 aa 141 156 156 157 000657 aa 164 040 142 145 000660 aa 040 165 163 145 000661 aa 144 040 164 157 000662 aa 040 162 145 160 000663 aa 154 141 143 145 000664 aa 040 141 156 040 000665 aa 145 170 151 163 000666 aa 164 151 156 147 000667 aa 040 156 157 144 000670 aa 145 056 000 000  85 ec recursive_structure,recursiv,  86 (The specified graphic structure is recursive.)  000045 segdef recursive_structure  000045 a0 077777 000673 000671 aa 162 145 143 165 aci "recursiv",8  000672 aa 162 163 151 166 000673 aa 055 124 150 145 acc "The specified graphic structure is recursive."  000674 aa 040 163 160 145 000675 aa 143 151 146 151 000676 aa 145 144 040 147 000677 aa 162 141 160 150 000700 aa 151 143 040 163 000701 aa 164 162 165 143 000702 aa 164 165 162 145 000703 aa 040 151 163 040 000704 aa 162 145 143 165 000705 aa 162 163 151 166 000706 aa 145 056 000 000  87 ec struc_duplication,strucdup, 88 (A name duplication has occurred in moving a graphic structure.)  000046 segdef struc_duplication  000046 a0 077777 000711 000707 aa 163 164 162 165 aci "strucdup",8  000710 aa 143 144 165 160 000711 aa 076 101 040 156 acc "A name duplication has occurred in moving a graphic structure."  000712 aa 141 155 145 040 000713 aa 144 165 160 154 000714 aa 151 143 141 164 000715 aa 151 157 156 040 000716 aa 150 141 163 040 000717 aa 157 143 143 165 000720 aa 162 162 145 144 000721 aa 040 151 156 040 000722 aa 155 157 166 151 000723 aa 156 147 040 141 000724 aa 040 147 162 141 000725 aa 160 150 151 143 000726 aa 040 163 164 162 000727 aa 165 143 164 165 000730 aa 162 145 056 000  89 ec term_bad_effector,Tbad_eff, 90 (Terminal encountered an unimplemented graphic effector.)  000047 segdef term_bad_effector  000047 a0 077777 000733 000731 aa 124 142 141 144 aci "Tbad_eff",8  000732 aa 137 145 146 146 000733 aa 067 124 145 162 acc "Terminal encountered an unimplemented graphic effector." 000734 aa 155 151 156 141 000735 aa 154 040 145 156 000736 aa 143 157 165 156 000737 aa 164 145 162 145 000740 aa 144 040 141 156 000741 aa 040 165 156 151 000742 aa 155 160 154 145 000743 aa 155 145 156 164 000744 aa 145 144 040 147 000745 aa 162 141 160 150 000746 aa 151 143 040 145 000747 aa 146 146 145 143 000750 aa 164 157 162 056  91 ec term_bad_err_message,Tbaderr,  92 (Terminal returned a garbled error message.)  000050 segdef term_bad_err_message  000050 a0 077777 000753 000751 aa 124 142 141 144 aci "Tbaderr",8  000752 aa 145 162 162 040 000753 aa 052 124 145 162 acc "Terminal returned a garbled error message."  000754 aa 155 151 156 141 000755 aa 154 040 162 145 000756 aa 164 165 162 156 000757 aa 145 144 040 141 000760 aa 040 147 141 162 000761 aa 142 154 145 144 000762 aa 040 145 162 162 000763 aa 157 162 040 155 000764 aa 145 163 163 141 000765 aa 147 145 056 000  93 ec term_bad_err_no,Tbaderr#,  94 (Terminal returned an invalid error code.) 000051 segdef term_bad_err_no  000051 a0 077777 000770 000766 aa 124 142 141 144 aci "Tbaderr#",8  000767 aa 145 162 162 043 000770 aa 050 124 145 162 acc "Terminal returned an invalid error code."  000771 aa 155 151 156 141 000772 aa 154 040 162 145 000773 aa 164 165 162 156 000774 aa 145 144 040 141 000775 aa 156 040 151 156 000776 aa 166 141 154 151 000777 aa 144 040 145 162 001000 aa 162 157 162 040 001001 aa 143 157 144 145 001002 aa 056 000 000 000  95 ec term_bad_increment_eff,Tnoincef,  96 (Terminal reported unimplemented effector in increment command.)  000052 segdef term_bad_increment_eff 000052 a0 077777 001005 001003 aa 124 156 157 151 aci "Tnoincef",8  001004 aa 156 143 145 146 001005 aa 076 124 145 162 acc "Terminal reported unimplemented effector in increment command."  001006 aa 155 151 156 141 001007 aa 154 040 162 145 001010 aa 160 157 162 164 001011 aa 145 144 040 165 001012 aa 156 151 155 160 001013 aa 154 145 155 145 001014 aa 156 164 145 144 001015 aa 040 145 146 146 001016 aa 145 143 164 157 001017 aa 162 040 151 156 001020 aa 040 151 156 143 001021 aa 162 145 155 145 001022 aa 156 164 040 143 001023 aa 157 155 155 141 001024 aa 156 144 056 000  97 ec term_bad_increment_node,Tnoincnd,  98 (Terminal cannot increment requested node.)  000053 segdef term_bad_increment_node  000053 a0 077777 001027 001025 aa 124 156 157 151 aci "Tnoincnd",8  001026 aa 156 143 156 144 001027 aa 051 124 145 162 acc "Terminal cannot increment requested node."  001030 aa 155 151 156 141 001031 aa 154 040 143 141 001032 aa 156 156 157 164 001033 aa 040 151 156 143 001034 aa 162 145 155 145 001035 aa 156 164 040 162 001036 aa 145 161 165 145 001037 aa 163 164 145 144 001040 aa 040 156 157 144 001041 aa 145 056 000 000  99 ec term_bad_input_device,Tbad_dev, 100 (Terminal does not implement requested input device)  000054 segdef term_bad_input_device  000054 a0 077777 001044 001042 aa 124 142 141 144 aci "Tbad_dev",8  001043 aa 137 144 145 166 001044 aa 062 124 145 162 acc "Terminal does not implement requested input device"  001045 aa 155 151 156 141 001046 aa 154 040 144 157 001047 aa 145 163 040 156 001050 aa 157 164 040 151 001051 aa 155 160 154 145 001052 aa 155 145 156 164 001053 aa 040 162 145 161 001054 aa 165 145 163 164 001055 aa 145 144 040 151 001056 aa 156 160 165 164 001057 aa 040 144 145 166 001060 aa 151 143 145 000  101 ec term_bad_message,Tgarbage,  102 (Terminal reported error in graphic message contents.) 000055 segdef term_bad_message  000055 a0 077777 001063 001061 aa 124 147 141 162 aci "Tgarbage",8  001062 aa 142 141 147 145 001063 aa 064 124 145 162 acc "Terminal reported error in graphic message contents."  001064 aa 155 151 156 141 001065 aa 154 040 162 145 001066 aa 160 157 162 164 001067 aa 145 144 040 145 001070 aa 162 162 157 162 001071 aa 040 151 156 040 001072 aa 147 162 141 160 001073 aa 150 151 143 040 001074 aa 155 145 163 163 001075 aa 141 147 145 040 001076 aa 143 157 156 164 001077 aa 145 156 164 163 001100 aa 056 000 000 000  103 ec term_bad_parity,Txparity,  104 (Terminal reported parity error in graphic message.)  000056 segdef term_bad_parity  000056 a0 077777 001103 001101 aa 124 170 160 141 aci "Txparity",8  001102 aa 162 151 164 171 001103 aa 062 124 145 162 acc "Terminal reported parity error in graphic message."  001104 aa 155 151 156 141 001105 aa 154 040 162 145 001106 aa 160 157 162 164 001107 aa 145 144 040 160 001110 aa 141 162 151 164 001111 aa 171 040 145 162 001112 aa 162 157 162 040 001113 aa 151 156 040 147 001114 aa 162 141 160 150 001115 aa 151 143 040 155 001116 aa 145 163 163 141 001117 aa 147 145 056 000  105 ec term_no_active_structure,Tnotactv,  106 (Terminal reported that no structure was active.)  000057 segdef term_no_active_structure  000057 a0 077777 001122 001120 aa 124 156 157 164 aci "Tnotactv",8  001121 aa 141 143 164 166 001122 aa 057 124 145 162 acc "Terminal reported that no structure was active." 001123 aa 155 151 156 141 001124 aa 154 040 162 145 001125 aa 160 157 162 164 001126 aa 145 144 040 164 001127 aa 150 141 164 040 001130 aa 156 157 040 163 001131 aa 164 162 165 143 001132 aa 164 165 162 145 001133 aa 040 167 141 163 001134 aa 040 141 143 164 001135 aa 151 166 145 056  107 ec term_no_room,Tno_room,  108 (Terminal graphic buffer full.)  000060 segdef term_no_room  000060 a0 077777 001140 001136 aa 124 156 157 137 aci "Tno_room",8  001137 aa 162 157 157 155 001140 aa 035 124 145 162 acc "Terminal graphic buffer full."  001141 aa 155 151 156 141 001142 aa 154 040 147 162 001143 aa 141 160 150 151 001144 aa 143 040 142 165 001145 aa 146 146 145 162 001146 aa 040 146 165 154 001147 aa 154 056 000 000  109 ec term_node_not_found,Tno_node,  110 (Terminal cannot locate requested node.)  000061 segdef term_node_not_found  000061 a0 077777 001152 001150 aa 124 156 157 137 aci "Tno_node",8  001151 aa 156 157 144 145 001152 aa 046 124 145 162 acc "Terminal cannot locate requested node."  001153 aa 155 151 156 141 001154 aa 154 040 143 141 001155 aa 156 156 157 164 001156 aa 040 154 157 143 001157 aa 141 164 145 040 001160 aa 162 145 161 165 001161 aa 145 163 164 145 001162 aa 144 040 156 157 001163 aa 144 145 056 000  111 ec term_node_too_large,Tnodsize,  112 (Terminal reported replacement node was too large.)  000062 segdef term_node_too_large  000062 a0 077777 001166 001164 aa 124 156 157 144 aci "Tnodsize",8  001165 aa 163 151 172 145 001166 aa 061 124 145 162 acc "Terminal reported replacement node was too large."  001167 aa 155 151 156 141 001170 aa 154 040 162 145 001171 aa 160 157 162 164 001172 aa 145 144 040 162 001173 aa 145 160 154 141 001174 aa 143 145 155 145 001175 aa 156 164 040 156 001176 aa 157 144 145 040 001177 aa 167 141 163 040 001200 aa 164 157 157 040 001201 aa 154 141 162 147 001202 aa 145 056 000 000  113 ec term_too_many_ends,T>nodend,  114 (Terminal encountered too many node ends.) 000063 segdef term_too_many_ends 000063 a0 077777 001205 001203 aa 124 076 156 157 aci "T>nodend",8  001204 aa 144 145 156 144 001205 aa 050 124 145 162 acc "Terminal encountered too many node ends."  001206 aa 155 151 156 141 001207 aa 154 040 145 156 001210 aa 143 157 165 156 001211 aa 164 145 162 145 001212 aa 144 040 164 157 001213 aa 157 040 155 141 001214 aa 156 171 040 156 001215 aa 157 144 145 040 001216 aa 145 156 144 163 001217 aa 056 000 000 000  115 ec term_too_many_levels,T>levels,  116 (Terminal reported stack depth overflow.)  000064 segdef term_too_many_levels  000064 a0 077777 001222 001220 aa 124 076 154 145 aci "T>levels",8  001221 aa 166 145 154 163 001222 aa 047 124 145 162 acc "Terminal reported stack depth overflow." 001223 aa 155 151 156 141 001224 aa 154 040 162 145 001225 aa 160 157 162 164 001226 aa 145 144 040 163 001227 aa 164 141 143 153 001230 aa 040 144 145 160 001231 aa 164 150 040 157 001232 aa 166 145 162 146 001233 aa 154 157 167 056  117 ec too_many_node_ends,>nodends,  118 (Too many node ends encountered.)  000065 segdef too_many_node_ends 000065 a0 077777 001236 001234 aa 076 156 157 144 aci ">nodends",8  001235 aa 145 156 144 163 001236 aa 037 124 157 157 acc "Too many node ends encountered." 001237 aa 040 155 141 156 001240 aa 171 040 156 157 001241 aa 144 145 040 145 001242 aa 156 144 163 040 001243 aa 145 156 143 157 001244 aa 165 156 164 145 001245 aa 162 145 144 056  119 ec unimplemented_effector,unimpeff,  120 (Effector not implemented by this graphic device.) 000066 segdef unimplemented_effector 000066 a0 077777 001250 001246 aa 165 156 151 155 aci "unimpeff",8  001247 aa 160 145 146 146 001250 aa 060 105 146 146 acc "Effector not implemented by this graphic device."  001251 aa 145 143 164 157 001252 aa 162 040 156 157 001253 aa 164 040 151 155 001254 aa 160 154 145 155 001255 aa 145 156 164 145 001256 aa 144 040 142 171 001257 aa 040 164 150 151 001260 aa 163 040 147 162 001261 aa 141 160 150 151 001262 aa 143 040 144 145 001263 aa 166 151 143 145 001264 aa 056 000 000 000  121 ec unrecognized_effector,unreceff, 122 (Unrecognized graphic effector encountered.)  000067 segdef unrecognized_effector  000067 a0 077777 001267 001265 aa 165 156 162 145 aci "unreceff",8  001266 aa 143 145 146 146 001267 aa 052 125 156 162 acc "Unrecognized graphic effector encountered."  001270 aa 145 143 157 147 001271 aa 156 151 172 145 001272 aa 144 040 147 162 001273 aa 141 160 150 151 001274 aa 143 040 145 146 001275 aa 146 145 143 164 001276 aa 157 162 040 145 001277 aa 156 143 157 165 001300 aa 156 164 145 162 001301 aa 145 144 056 000  123  124 end  NO LITERALS  NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 001302 5a 000003 000000 001303 5a 000577 600000 001304 aa 000000 000000 001305 55 000014 000002 001306 5a 000002 400003 001307 55 000006 000014 001310 aa 024 147 162 141 001311 aa 160 150 151 143 001312 aa 137 145 162 162 001313 aa 157 162 137 164 001314 aa 141 142 154 145 001315 aa 137 000 000 000 001316 55 000025 000003 001317 2a 000067 400001 001320 55 000017 000003 001321 aa 025 165 156 162 unrecognized_effector  001322 aa 145 143 157 147 001323 aa 156 151 172 145 001324 aa 144 137 145 146 001325 aa 146 145 143 164 001326 aa 157 162 000 000 001327 55 000036 000014 001330 2a 000066 400001 001331 55 000030 000003 001332 aa 026 165 156 151 unimplemented_effector  001333 aa 155 160 154 145 001334 aa 155 145 156 164 001335 aa 145 144 137 145 001336 aa 146 146 145 143 001337 aa 164 157 162 000 001340 55 000046 000025 001341 2a 000065 400001 001342 55 000041 000003 001343 aa 022 164 157 157 too_many_node_ends  001344 aa 137 155 141 156 001345 aa 171 137 156 157 001346 aa 144 145 137 145 001347 aa 156 144 163 000 001350 55 000057 000036 001351 2a 000064 400001 001352 55 000051 000003 001353 aa 024 164 145 162 term_too_many_levels  001354 aa 155 137 164 157 001355 aa 157 137 155 141 001356 aa 156 171 137 154 001357 aa 145 166 145 154 001360 aa 163 000 000 000 001361 55 000067 000046 001362 2a 000063 400001 001363 55 000062 000003 001364 aa 022 164 145 162 term_too_many_ends  001365 aa 155 137 164 157 001366 aa 157 137 155 141 001367 aa 156 171 137 145 001370 aa 156 144 163 000 001371 55 000077 000057 001372 2a 000062 400001 001373 55 000072 000003 001374 aa 023 164 145 162 term_node_too_large 001375 aa 155 137 156 157 001376 aa 144 145 137 164 001377 aa 157 157 137 154 001400 aa 141 162 147 145 001401 55 000107 000067 001402 2a 000061 400001 001403 55 000102 000003 001404 aa 023 164 145 162 term_node_not_found 001405 aa 155 137 156 157 001406 aa 144 145 137 156 001407 aa 157 164 137 146 001410 aa 157 165 156 144 001411 55 000116 000077 001412 2a 000060 400001 001413 55 000112 000003 001414 aa 014 164 145 162 term_no_room  001415 aa 155 137 156 157 001416 aa 137 162 157 157 001417 aa 155 000 000 000 001420 55 000130 000107 001421 2a 000057 400001 001422 55 000121 000003 001423 aa 030 164 145 162 term_no_active_structure  001424 aa 155 137 156 157 001425 aa 137 141 143 164 001426 aa 151 166 145 137 001427 aa 163 164 162 165 001430 aa 143 164 165 162 001431 aa 145 000 000 000 001432 55 000137 000116 001433 2a 000056 400001 001434 55 000133 000003 001435 aa 017 164 145 162 term_bad_parity 001436 aa 155 137 142 141 001437 aa 144 137 160 141 001440 aa 162 151 164 171 001441 55 000147 000130 001442 2a 000055 400001 001443 55 000142 000003 001444 aa 020 164 145 162 term_bad_message  001445 aa 155 137 142 141 001446 aa 144 137 155 145 001447 aa 163 163 141 147 001450 aa 145 000 000 000 001451 55 000160 000137 001452 2a 000054 400001 001453 55 000152 000003 001454 aa 025 164 145 162 term_bad_input_device  001455 aa 155 137 142 141 001456 aa 144 137 151 156 001457 aa 160 165 164 137 001460 aa 144 145 166 151 001461 aa 143 145 000 000 001462 55 000171 000147 001463 2a 000053 400001 001464 55 000163 000003 001465 aa 027 164 145 162 term_bad_increment_node 001466 aa 155 137 142 141 001467 aa 144 137 151 156 001470 aa 143 162 145 155 001471 aa 145 156 164 137 001472 aa 156 157 144 145 001473 55 000202 000160 001474 2a 000052 400001 001475 55 000174 000003 001476 aa 026 164 145 162 term_bad_increment_eff  001477 aa 155 137 142 141 001500 aa 144 137 151 156 001501 aa 143 162 145 155 001502 aa 145 156 164 137 001503 aa 145 146 146 000 001504 55 000211 000171 001505 2a 000051 400001 001506 55 000205 000003 001507 aa 017 164 145 162 term_bad_err_no 001510 aa 155 137 142 141 001511 aa 144 137 145 162 001512 aa 162 137 156 157 001513 55 000222 000202 001514 2a 000050 400001 001515 55 000214 000003 001516 aa 024 164 145 162 term_bad_err_message  001517 aa 155 137 142 141 001520 aa 144 137 145 162 001521 aa 162 137 155 145 001522 aa 163 163 141 147 001523 aa 145 000 000 000 001524 55 000232 000211 001525 2a 000047 400001 001526 55 000225 000003 001527 aa 021 164 145 162 term_bad_effector  001530 aa 155 137 142 141 001531 aa 144 137 145 146 001532 aa 146 145 143 164 001533 aa 157 162 000 000 001534 55 000242 000222 001535 2a 000046 400001 001536 55 000235 000003 001537 aa 021 163 164 162 struc_duplication  001540 aa 165 143 137 144 001541 aa 165 160 154 151 001542 aa 143 141 164 151 001543 aa 157 156 000 000 001544 55 000252 000232 001545 2a 000045 400001 001546 55 000245 000003 001547 aa 023 162 145 143 recursive_structure 001550 aa 165 162 163 151 001551 aa 166 145 137 163 001552 aa 164 162 165 143 001553 aa 164 165 162 145 001554 55 000262 000242 001555 2a 000044 400001 001556 55 000255 000003 001557 aa 020 156 165 154 null_replacement  001560 aa 154 137 162 145 001561 aa 160 154 141 143 001562 aa 145 155 145 156 001563 aa 164 000 000 000 001564 55 000271 000252 001565 2a 000043 400001 001566 55 000265 000003 001567 aa 017 156 157 164 not_a_structure 001570 aa 137 141 137 163 001571 aa 164 162 165 143 001572 aa 164 165 162 145 001573 55 000277 000262 001574 2a 000042 400001 001575 55 000274 000003 001576 aa 011 156 157 164 not_a_gdt  001577 aa 137 141 137 147 001600 aa 144 164 000 000 001601 55 000307 000271 001602 2a 000041 400001 001603 55 000302 000003 001604 aa 021 156 157 156 nongraphic_switch  001605 aa 147 162 141 160 001606 aa 150 151 143 137 001607 aa 163 167 151 164 001610 aa 143 150 000 000 001611 55 000316 000277 001612 2a 000040 400001 001613 55 000312 000003 001614 aa 017 156 157 144 node_not_active 001615 aa 145 137 156 157 001616 aa 164 137 141 143 001617 aa 164 151 166 145 001620 55 000325 000307 001621 2a 000037 400001 001622 55 000321 000003 001623 aa 015 156 157 144 node_mismatch  001624 aa 145 137 155 151 001625 aa 163 155 141 164 001626 aa 143 150 000 000 001627 55 000335 000316 001630 2a 000036 400001 001631 55 000330 000003 001632 aa 022 156 157 144 node_list_overflow  001633 aa 145 137 154 151 001634 aa 163 164 137 157 001635 aa 166 145 162 146 001636 aa 154 157 167 000 001637 55 000343 000325 001640 2a 000035 400001 001641 55 000340 000003 001642 aa 012 156 157 137 no_wgs_yet  001643 aa 167 147 163 137 001644 aa 171 145 164 000 001645 55 000351 000335 001646 2a 000034 400001 001647 55 000346 000003 001650 aa 011 156 145 147 neg_delay  001651 aa 137 144 145 154 001652 aa 141 171 000 000 001653 55 000360 000343 001654 2a 000033 400001 001655 55 000354 000003 001656 aa 017 155 141 154 malformed_input 001657 aa 146 157 162 155 001660 aa 145 144 137 151 001661 aa 156 160 165 164 001662 55 000367 000351 001663 2a 000032 400001 001664 55 000363 000003 001665 aa 016 154 163 155 lsm_sym_search  001666 aa 137 163 171 155 001667 aa 137 163 145 141 001670 aa 162 143 150 000 001671 55 000376 000360 001672 2a 000031 400001 001673 55 000372 000003 001674 aa 014 154 163 155 lsm_seg_full  001675 aa 137 163 145 147 001676 aa 137 146 165 154 001677 aa 154 000 000 000 001700 55 000404 000367 001701 2a 000030 400001 001702 55 000401 000003 001703 aa 013 154 163 155 lsm_node_ob 001704 aa 137 156 157 144 001705 aa 145 137 157 142 001706 55 000413 000376 001707 2a 000027 400001 001710 55 000407 000003 001711 aa 016 154 163 155 lsm_invalid_op  001712 aa 137 151 156 166 001713 aa 141 154 151 144 001714 aa 137 157 160 000 001715 55 000421 000404 001716 2a 000026 400001 001717 55 000416 000003 001720 aa 013 154 163 155 lsm_blk_len 001721 aa 137 142 154 153 001722 aa 137 154 145 156 001723 55 000427 000413 001724 2a 000025 400001 001725 55 000424 000003 001726 aa 010 154 151 163 list_oob  001727 aa 164 137 157 157 001730 aa 142 000 000 000 001731 55 000436 000421 001732 2a 000024 400001 001733 55 000432 000003 001734 aa 017 151 156 166 invalid_node_no 001735 aa 141 154 151 144 001736 aa 137 156 157 144 001737 aa 145 137 156 157 001740 55 000445 000427 001741 2a 000023 400001 001742 55 000441 000003 001743 aa 015 151 156 166 inv_node_type  001744 aa 137 156 157 144 001745 aa 145 137 164 171 001746 aa 160 145 000 000 001747 55 000456 000436 001750 2a 000022 400001 001751 55 000450 000003 001752 aa 024 151 156 143 incomplete_structure  001753 aa 157 155 160 154 001754 aa 145 164 145 137 001755 aa 163 164 162 165 001756 aa 143 164 165 162 001757 aa 145 000 000 000 001760 55 000470 000445 001761 2a 000021 400001 001762 55 000461 000003 001763 aa 032 151 155 160 impossible_effector_length  001764 aa 157 163 163 151 001765 aa 142 154 145 137 001766 aa 145 146 146 145 001767 aa 143 164 157 162 001770 aa 137 154 145 156 001771 aa 147 164 150 000 001772 55 000476 000456 001773 2a 000020 400001 001774 55 000473 000003 001775 aa 013 147 144 164 gdt_missing 001776 aa 137 155 151 163 001777 aa 163 151 156 147 002000 55 000507 000470 002001 2a 000017 400001 002002 55 000501 000003 002003 aa 024 147 143 164 gct_bad_special_char  002004 aa 137 142 141 144 002005 aa 137 163 160 145 002006 aa 143 151 141 154 002007 aa 137 143 150 141 002010 aa 162 000 000 000 002011 55 000516 000476 002012 2a 000016 400001 002013 55 000512 000003 002014 aa 016 143 157 155 compiler_error  002015 aa 160 151 154 145 002016 aa 162 137 145 162 002017 aa 162 157 162 000 002020 55 000527 000507 002021 2a 000015 400001 002022 55 000521 000003 002023 aa 026 143 154 151 clipping_unimplemented  002024 aa 160 160 151 156 002025 aa 147 137 165 156 002026 aa 151 155 160 154 002027 aa 145 155 145 156 002030 aa 164 145 144 000 002031 55 000535 000516 002032 2a 000014 400001 002033 55 000532 000003 002034 aa 010 142 141 144 bad_node  002035 aa 137 156 157 144 002036 aa 145 000 000 000 002037 55 000543 000527 002040 2a 000013 400001 002041 55 000540 000003 002042 aa 013 142 141 144 bad_no_iter 002043 aa 137 156 157 137 002044 aa 151 164 145 162 002045 55 000552 000535 002046 2a 000012 400001 002047 55 000546 000003 002050 aa 017 142 141 144 bad_device_type 002051 aa 137 144 145 166 002052 aa 151 143 145 137 002053 aa 164 171 160 145 002054 55 000560 000543 002055 2a 000011 400001 002056 55 000555 000003 002057 aa 011 142 141 144 bad_align  002060 aa 137 141 154 151 002061 aa 147 156 000 000 002062 55 000570 000552 002063 2a 000010 400001 002064 55 000563 000003 002065 aa 023 141 142 163 abs_pos_in_clipping 002066 aa 137 160 157 163 002067 aa 137 151 156 137 002070 aa 143 154 151 160 002071 aa 160 151 156 147 002072 55 000002 000560 002073 6a 000000 400002 002074 55 000573 000003 002075 aa 014 163 171 155 symbol_table  002076 aa 142 157 154 137 002077 aa 164 141 142 154 002100 aa 145 000 000 000 DEFINITIONS HASH TABLE  002101 aa 000000 000131 002102 aa 000000 000000 002103 aa 000000 000000 002104 5a 000570 000000 002105 aa 000000 000000 002106 5a 000535 000000 002107 5a 000171 000000 002110 aa 000000 000000 002111 5a 000376 000000 002112 5a 000413 000000 002113 aa 000000 000000 002114 5a 000036 000000 002115 5a 000232 000000 002116 5a 000277 000000 002117 5a 000445 000000 002120 5a 000360 000000 002121 5a 000025 000000 002122 5a 000404 000000 002123 5a 000476 000000 002124 5a 000507 000000 002125 aa 000000 000000 002126 aa 000000 000000 002127 aa 000000 000000 002130 5a 000252 000000 002131 5a 000222 000000 002132 aa 000000 000000 002133 5a 000307 000000 002134 aa 000000 000000 002135 5a 000271 000000 002136 aa 000000 000000 002137 5a 000552 000000 002140 5a 000046 000000 002141 5a 000211 000000 002142 5a 000325 000000 002143 aa 000000 000000 002144 aa 000000 000000 002145 5a 000351 000000 002146 5a 000560 000000 002147 5a 000160 000000 002150 5a 000335 000000 002151 5a 000367 000000 002152 aa 000000 000000 002153 5a 000107 000000 002154 5a 000262 000000 002155 5a 000543 000000 002156 aa 000000 000000 002157 aa 000000 000000 002160 aa 000000 000000 002161 aa 000000 000000 002162 5a 000130 000000 002163 5a 000202 000000 002164 5a 000316 000000 002165 5a 000421 000000 002166 5a 000427 000000 002167 aa 000000 000000 002170 aa 000000 000000 002171 5a 000057 000000 002172 5a 000343 000000 002173 aa 000000 000000 002174 aa 000000 000000 002175 aa 000000 000000 002176 5a 000456 000000 002177 5a 000470 000000 002200 5a 000147 000000 002201 aa 000000 000000 002202 aa 000000 000000 002203 aa 000000 000000 002204 aa 000000 000000 002205 aa 000000 000000 002206 aa 000000 000000 002207 5a 000116 000000 002210 5a 000516 000000 002211 aa 000000 000000 002212 aa 000000 000000 002213 5a 000436 000000 002214 aa 000000 000000 002215 aa 000000 000000 002216 aa 000000 000000 002217 aa 000000 000000 002220 aa 000000 000000 002221 aa 000000 000000 002222 5a 000137 000000 002223 5a 000014 000000 002224 aa 000000 000000 002225 5a 000242 000000 002226 aa 000000 000000 002227 aa 000000 000000 002230 5a 000527 000000 002231 5a 000067 000000 002232 5a 000077 000000 NO EXTERNAL NAMES  NO TRAP POINTER WORDS  TYPE PAIR BLOCKS  002233 aa 000001 000000 002234 aa 000000 000000 INTERNAL EXPRESSION WORDS 002235 50 000731 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 001302 000072 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000070 000075 000007 a2 000000 000060 000070 9a 777710 0000 46 *text|  000071 5a 000733 0000 00 FIRST REFERENCE TRAP LIST  000072 aa 000000 000001 000073 aa 000000 000001 000074 2a 000070 000000 000075 aa 000000 000000 SYMBOL INFORMATION SYMBOL TABLE HEADER  000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000004 000004 aa 000000 114732 000005 aa 732732 062314 000006 aa 000000 114775 000007 aa 675760 053526 000010 aa 141154 155040 000011 aa 040040 040040 000012 aa 000024 000040 000013 aa 000034 000040 000014 aa 000044 000100 000015 aa 000002 000002 000016 aa 000064 000000 000017 aa 000000 000245 000020 aa 000000 000147 000021 aa 000000 000221 000022 aa 000235 000147 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 040066 056067 000030 aa 040040 117143 000031 aa 164157 142145 000032 aa 162040 061071 000033 aa 070066 040040 000034 aa 107112 157150 000035 aa 156163 157156 000036 aa 056123 171163 000037 aa 115141 151156 000040 aa 164056 141040 000041 aa 040040 040040 000042 aa 040040 040040 000043 aa 040040 040040 000044 aa 154151 163164 000045 aa 040040 040040 000046 aa 040040 040040 000047 aa 040040 040040 000050 aa 040040 040040 000051 aa 040040 040040 000052 aa 040040 040040 000053 aa 040040 040040 000054 aa 040040 040040 000055 aa 040040 040040 000056 aa 040040 040040 000057 aa 040040 040040 000060 aa 040040 040040 000061 aa 040040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000003 000066 aa 000102 000071 000067 aa 147740 446362 000070 aa 000000 114774 000071 aa 461302 400000 000072 aa 000121 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000131 000066 000077 aa 147714 750316 000100 aa 000000 114774 000101 aa 453561 000000 000102 aa 076163 160145 >special_ldd>install>MR12.0-1206>graphic_error_table_.alm  000103 aa 143151 141154 000104 aa 137154 144144 000105 aa 076151 156163 000106 aa 164141 154154 000107 aa 076115 122061 000110 aa 062056 060055 000111 aa 061062 060066 000112 aa 076147 162141 000113 aa 160150 151143 000114 aa 137145 162162 000115 aa 157162 137164 000116 aa 141142 154145 000117 aa 137056 141154 000120 aa 155040 040040 000121 aa 076154 144144 >ldd>include>et_macros.incl.alm 000122 aa 076151 156143 000123 aa 154165 144145 000124 aa 076145 164137 000125 aa 155141 143162 000126 aa 157163 056151 000127 aa 156143 154056 000130 aa 141154 155040 000131 aa 076163 160145 >special_ldd>install>MR12.0-1206>stack_header.incl.alm  000132 aa 143151 141154 000133 aa 137154 144144 000134 aa 076151 156163 000135 aa 164141 154154 000136 aa 076115 122061 000137 aa 062056 060055 000140 aa 061062 060066 000141 aa 076163 164141 000142 aa 143153 137150 000143 aa 145141 144145 000144 aa 162056 151156 000145 aa 143154 056141 000146 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number  *text graphic_error_table_: 23. 14 .._00000 graphic_error_table_: 28. 42 .._00001 graphic_error_table_: 30. 62 .._00002 graphic_error_table_: 32. 77 .._00003 graphic_error_table_: 34. 117 .._00004 graphic_error_table_: 36. 133 .._00005 graphic_error_table_: 38. 150 .._00006 graphic_error_table_: 40. 163 .._00007 graphic_error_table_: 42. 210 .._00010 graphic_error_table_: 44. 234 .._00011 graphic_error_table_: 46. 252 .._00012 graphic_error_table_: 48. 265 .._00013 graphic_error_table_: 50. 310 .._00014 graphic_error_table_: 52. 327 .._00015 graphic_error_table_: 54. 351 .._00016 graphic_error_table_: 56. 375 .._00017 graphic_error_table_: 58. 410 .._00020 graphic_error_table_: 60. 425 .._00021 graphic_error_table_: 62. 437 .._00022 graphic_error_table_: 64. 452 .._00023 graphic_error_table_: 66. 467 .._00024 graphic_error_table_: 68. 507 .._00025 graphic_error_table_: 70. 522 .._00026 graphic_error_table_: 72. 540 .._00027 graphic_error_table_: 74. 564 .._00030 graphic_error_table_: 76. 603 .._00031 graphic_error_table_: 78. 623 .._00032 graphic_error_table_: 80. 637 .._00033 graphic_error_table_: 82. 652 .._00034 graphic_error_table_: 84. 673 .._00035 graphic_error_table_: 86. 711 .._00036 graphic_error_table_: 88. 733 .._00037 graphic_error_table_: 90. 753 .._00040 graphic_error_table_: 92. 770 .._00041 graphic_error_table_: 94. 1005 .._00042 graphic_error_table_: 96. 1027 .._00043 graphic_error_table_: 98. 1044 .._00044 graphic_error_table_: 100. 1063 .._00045 graphic_error_table_: 102. 1103 .._00046 graphic_error_table_: 104. 1122 .._00047 graphic_error_table_: 106. 1140 .._00050 graphic_error_table_: 108. 1152 .._00051 graphic_error_table_: 110. 1166 .._00052 graphic_error_table_: 112. 1205 .._00053 graphic_error_table_: 114. 1222 .._00054 graphic_error_table_: 116. 1236 .._00055 graphic_error_table_: 118. 1250 .._00056 graphic_error_table_: 120. 1267 .._00057 graphic_error_table_: 122. 70 .code_end graphic_error_table_: 23. 10 .code_start graphic_error_table_: 23. 5 .loop graphic_error_table_: 23. 77777 .segno graphic_error_table_: 23, 28, 30, 32, 34, 36, 38, 40, 42, 44,  46, 48, 50, 52, 54, 56, 58, 60, 62, 64,  66, 68, 70, 72, 74, 76, 78, 80, 82, 84,  86, 88, 90, 92, 94, 96, 98, 100, 102, 104,  106, 108, 110, 112, 114, 116, 118, 120, 122. 0 .trapproc graphic_error_table_: 23. 10 abs_pos_in_clipping graphic_error_table_: 28. 11 bad_align graphic_error_table_: 30. 12 bad_device_type graphic_error_table_: 32. 14 bad_node graphic_error_table_: 36. 13 bad_no_iter graphic_error_table_: 34. 1170 call_offset stack_header: 80.  15 clipping_unimplemented graphic_error_table_: 38. 10 codes graphic_error_table_: 23, 28, 30, 32, 34, 36, 38, 40, 42, 44,  46, 48, 50, 52, 54, 56, 58, 60, 62, 64,  66, 68, 70, 72, 74, 76, 78, 80, 82, 84,  86, 88, 90, 92, 94, 96, 98, 100, 102, 104,  106, 108, 110, 112, 114, 116, 118, 120, 122. 16 compiler_error graphic_error_table_: 40. 1174 entry_offset stack_header: 84.  17 gct_bad_special_char graphic_error_table_: 42. 20 gdt_missing graphic_error_table_: 44. 21 impossible_effector_length graphic_error_table_: 46.  22 incomplete_structure graphic_error_table_: 48. 24 invalid_node_no graphic_error_table_: 52. 23 inv_node_type graphic_error_table_: 50. 25 list_oob graphic_error_table_: 54. 26 lsm_blk_len graphic_error_table_: 56. 27 lsm_invalid_op graphic_error_table_: 58. 30 lsm_node_ob graphic_error_table_: 60. 31 lsm_seg_full graphic_error_table_: 62. 32 lsm_sym_search graphic_error_table_: 64. 33 malformed_input graphic_error_table_: 66. 0 messages graphic_error_table_: 23, 28, 30, 32, 34, 36, 38, 40, 42, 44,  46, 48, 50, 52, 54, 56, 58, 60, 62, 64,  66, 68, 70, 72, 74, 76, 78, 80, 82, 84,  86, 88, 90, 92, 94, 96, 98, 100, 102, 104,  106, 108, 110, 112, 114, 116, 118, 120, 122. 34 neg_delay graphic_error_table_: 68. 36 node_list_overflow graphic_error_table_: 72. 37 node_mismatch graphic_error_table_: 74. 40 node_not_active graphic_error_table_: 76. 41 nongraphic_switch graphic_error_table_: 78. 42 not_a_gdt graphic_error_table_: 80. 43 not_a_structure graphic_error_table_: 82. 35 no_wgs_yet graphic_error_table_: 70. 44 null_replacement graphic_error_table_: 84. 70 past_codes graphic_error_table_: 23. 1171 push_offset stack_header: 81.  45 recursive_structure graphic_error_table_: 86. 1173 return_no_pop_offset stack_header: 83.  1172 return_offset stack_header: 82.  73 stach_header.trace_top_ptr stack_header: 62. 66 stack_header.assign_linkage_ptr stack_header: 59.  32 stack_header.bar_mode_sp stack_header: 42. 36 stack_header.call_op_ptr stack_header: 44. 10 stack_header.clr_ptr stack_header: 27.  6 stack_header.combined_stat_ptr stack_header: 25.  4 stack_header.cpm_data_ptr stack_header: 24. 13 stack_header.cpm_enabled stack_header: 32. 13 stack_header.cur_lot_size stack_header: 31. 64 stack_header.ect_ptr stack_header: 58.  46 stack_header.entry_op_ptr stack_header: 49. 70 stack_header.heap_header_ptr stack_header: 60. 74 stack_header.in_trace stack_header: 63.  52 stack_header.isot_ptr stack_header: 52.  26 stack_header.lot_ptr graphic_error_table_: 23, stack_header: 39.  12 stack_header.main_proc_invoked stack_header: 29.  12 stack_header.max_lot_size stack_header: 28. 20 stack_header.parent_ptr stack_header: 36.  34 stack_header.pl1_operators_ptr stack_header: 43.  40 stack_header.push_op_ptr stack_header: 46. 42 stack_header.return_op_ptr stack_header: 47. 44 stack_header.ret_no_pop_op_ptr stack_header: 48.  62 stack_header.rnt_ptr stack_header: 57.  12 stack_header.run_unit_depth stack_header: 30. 54 stack_header.sct_ptr stack_header: 53.  30 stack_header.signal_ptr stack_header: 41.  22 stack_header.stack_begin_ptr stack_header: 37. 24 stack_header.stack_end_ptr stack_header: 38. 14 stack_header.system_free_ptr stack_header: 33. 60 stack_header.sys_link_info_ptr stack_header: 56.  72 stack_header.trace_frames stack_header: 61. 50 stack_header.trans_op_tv_ptr stack_header: 51. 56 stack_header.unwinder_ptr stack_header: 54. 16 stack_header.user_free_ptr stack_header: 34. 100 stack_header_end stack_header: 64.  46 struc_duplication graphic_error_table_: 88. 47 term_bad_effector graphic_error_table_: 90. 50 term_bad_err_message graphic_error_table_: 92. 51 term_bad_err_no graphic_error_table_: 94. 52 term_bad_increment_eff graphic_error_table_: 96. 53 term_bad_increment_node graphic_error_table_: 98. 54 term_bad_input_device graphic_error_table_: 100. 55 term_bad_message graphic_error_table_: 102. 56 term_bad_parity graphic_error_table_: 104. 61 term_node_not_found graphic_error_table_: 110. 62 term_node_too_large graphic_error_table_: 112. 57 term_no_active_structure graphic_error_table_: 106.  60 term_no_room graphic_error_table_: 108. 63 term_too_many_ends graphic_error_table_: 114. 64 term_too_many_levels graphic_error_table_: 116. 65 too_many_node_ends graphic_error_table_: 118. 0 trace_frames.count stack_header: 69.  1 trace_frames.top_ptr stack_header: 70.  551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. 66 unimplemented_effector graphic_error_table_: 120. 67 unrecognized_effector graphic_error_table_: 122. NO FATAL ERRORS  ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved