ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.1-1086>video_et_.alm ASSEMBLED ON: 08/13/87 1324.4 mst Thu OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 7.3 November 1986 ASSEMBLER CREATED: 11/26/86 1244.2 mst Wed 1 " ****************************************************** 2 " * * 3 " * * 4 " * Copyright (c) 1972 by Massachusetts Institute of * 5 " * Technology and Honeywell Information Systems, Inc. * 6 " * * 7 " * * 8 " ****************************************************** 9 10 " *********************************************************** 11 " * * 12 " * * 13 " * Copyright, (C) Honeywell Information Systems Inc., 1981 * 14 " * * 15 " * * 16 " *********************************************************** 17 18 " video_et_ error codes for the video system 19 20 " June 1981, Benson I. Margulies 21 " Added no_more_handler_in_use for the get_more_handler order -- JR 8/7/83 22 000000 23 name video_et_ 24 25 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 26 27 et video_et_ 000000 name video_et_ 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 000063 .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 000063 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 28 29 ec out_of_window_bounds,rqt_oowb, 30 (The request was not within the boundaries of the requesting window.) 000010 segdef out_of_window_bounds 000010 a0 077777 000014 000012 aa 162 161 164 137 aci "rqt_oowb",8 000013 aa 157 157 167 142 000014 aa 103 124 150 145 acc "The request was not within the boundaries of the requesting window." 000015 aa 040 162 145 161 000016 aa 165 145 163 164 000017 aa 040 167 141 163 000020 aa 040 156 157 164 000021 aa 040 167 151 164 000022 aa 150 151 156 040 000023 aa 164 150 145 040 000024 aa 142 157 165 156 000025 aa 144 141 162 151 000026 aa 145 163 040 157 000027 aa 146 040 164 150 000030 aa 145 040 162 145 000031 aa 161 165 145 163 000032 aa 164 151 156 147 000033 aa 040 167 151 156 000034 aa 144 157 167 056 31 32 ec no_video_info,term^tv, 33 (There is no video information defined for this terminal.) 000011 segdef no_video_info 000011 a0 077777 000037 000035 aa 164 145 162 155 aci "term^tv",8 000036 aa 136 164 166 040 000037 aa 070 124 150 145 acc "There is no video information defined for this terminal." 000040 aa 162 145 040 151 000041 aa 163 040 156 157 000042 aa 040 166 151 144 000043 aa 145 157 040 151 000044 aa 156 146 157 162 000045 aa 155 141 164 151 000046 aa 157 156 040 144 000047 aa 145 146 151 156 000050 aa 145 144 040 146 000051 aa 157 162 040 164 000052 aa 150 151 163 040 000053 aa 164 145 162 155 000054 aa 151 156 141 154 000055 aa 056 000 000 000 34 35 ec terminal_cannot_position,cant_pos, 36 (The terminal does not support cursor positioning.) 000012 segdef terminal_cannot_position 000012 a0 077777 000060 000056 aa 143 141 156 164 aci "cant_pos",8 000057 aa 137 160 157 163 000060 aa 061 124 150 145 acc "The terminal does not support cursor positioning." 000061 aa 040 164 145 162 000062 aa 155 151 156 141 000063 aa 154 040 144 157 000064 aa 145 163 040 156 000065 aa 157 164 040 163 000066 aa 165 160 160 157 000067 aa 162 164 040 143 000070 aa 165 162 163 157 000071 aa 162 040 160 157 000072 aa 163 151 164 151 000073 aa 157 156 151 156 000074 aa 147 056 000 000 37 38 ec capability_lacking,cant_do, 39 (The terminal hardware does not support the requested operation.) 000013 segdef capability_lacking 000013 a0 077777 000077 000075 aa 143 141 156 164 aci "cant_do",8 000076 aa 137 144 157 040 000077 aa 077 124 150 145 acc "The terminal hardware does not support the requested operation." 000100 aa 040 164 145 162 000101 aa 155 151 156 141 000102 aa 154 040 150 141 000103 aa 162 144 167 141 000104 aa 162 145 040 144 000105 aa 157 145 163 040 000106 aa 156 157 164 040 000107 aa 163 165 160 160 000110 aa 157 162 164 040 000111 aa 164 150 145 040 000112 aa 162 145 161 165 000113 aa 145 163 164 145 000114 aa 144 040 157 160 000115 aa 145 162 141 164 000116 aa 151 157 156 056 40 41 ec bad_window_id,bad_wnid, 42 (The supplied window id was not valid.) 000014 segdef bad_window_id 000014 a0 077777 000121 000117 aa 142 141 144 137 aci "bad_wnid",8 000120 aa 167 156 151 144 000121 aa 045 124 150 145 acc "The supplied window id was not valid." 000122 aa 040 163 165 160 000123 aa 160 154 151 145 000124 aa 144 040 167 151 000125 aa 156 144 157 167 000126 aa 040 151 144 040 000127 aa 167 141 163 040 000130 aa 156 157 164 040 000131 aa 166 141 154 151 000132 aa 144 056 000 000 43 44 ec overlapping_windows,wnoverlp, 45 (Two windows may not overlap on the screen.) 000015 segdef overlapping_windows 000015 a0 077777 000135 000133 aa 167 156 157 166 aci "wnoverlp",8 000134 aa 145 162 154 160 000135 aa 052 124 167 157 acc "Two windows may not overlap on the screen." 000136 aa 040 167 151 156 000137 aa 144 157 167 163 000140 aa 040 155 141 171 000141 aa 040 156 157 164 000142 aa 040 157 166 145 000143 aa 162 154 141 160 000144 aa 040 157 156 040 000145 aa 164 150 145 040 000146 aa 163 143 162 145 000147 aa 145 156 056 000 46 47 ec tc_illegal_request,tcbadreq, 48 (Illegal terminal control operation requested.) 000016 segdef tc_illegal_request 000016 a0 077777 000152 000150 aa 164 143 142 141 aci "tcbadreq",8 000151 aa 144 162 145 161 000152 aa 055 111 154 154 acc "Illegal terminal control operation requested." 000153 aa 145 147 141 154 000154 aa 040 164 145 162 000155 aa 155 151 156 141 000156 aa 154 040 143 157 000157 aa 156 164 162 157 000160 aa 154 040 157 160 000161 aa 145 162 141 164 000162 aa 151 157 156 040 000163 aa 162 145 161 165 000164 aa 145 163 164 145 000165 aa 144 056 000 000 49 50 ec tc_cannot_position,tc^absps, 51 (Terminal control could not choose an ABS_POS sequence.) 000017 segdef tc_cannot_position 000017 a0 077777 000170 000166 aa 164 143 136 141 aci "tc^absps",8 000167 aa 142 163 160 163 000170 aa 066 124 145 162 acc "Terminal control could not choose an ABS_POS sequence." 000171 aa 155 151 156 141 000172 aa 154 040 143 157 000173 aa 156 164 162 157 000174 aa 154 040 143 157 000175 aa 165 154 144 040 000176 aa 156 157 164 040 000177 aa 143 150 157 157 000200 aa 163 145 040 141 000201 aa 156 040 101 102 000202 aa 123 137 120 117 000203 aa 123 040 163 145 000204 aa 161 165 145 156 000205 aa 143 145 056 000 52 53 ec tc_missing_operation,tc^tmseq, 54 (Terminal control attempted to use an operation not defined for the terminal.) 000020 segdef tc_missing_operation 000020 a0 077777 000210 000206 aa 164 143 136 164 aci "tc^tmseq",8 000207 aa 155 163 145 161 000210 aa 114 124 145 162 acc "Terminal control attempted to use an operation not defined for the terminal." 000211 aa 155 151 156 141 000212 aa 154 040 143 157 000213 aa 156 164 162 157 000214 aa 154 040 141 164 000215 aa 164 145 155 160 000216 aa 164 145 144 040 000217 aa 164 157 040 165 000220 aa 163 145 040 141 000221 aa 156 040 157 160 000222 aa 145 162 141 164 000223 aa 151 157 156 040 000224 aa 156 157 164 040 000225 aa 144 145 146 151 000226 aa 156 145 144 040 000227 aa 146 157 162 040 000230 aa 164 150 145 040 000231 aa 164 145 162 155 000232 aa 151 156 141 154 000233 aa 056 000 000 000 55 56 ec tc_tty_error,tc^ttyop, 57 (Terminal control made an incorrect call to hardcore terminal management.) 000021 segdef tc_tty_error 000021 a0 077777 000236 000234 aa 164 143 136 164 aci "tc^ttyop",8 000235 aa 164 171 157 160 000236 aa 110 124 145 162 acc "Terminal control made an incorrect call to hardcore terminal management." 000237 aa 155 151 156 141 000240 aa 154 040 143 157 000241 aa 156 164 162 157 000242 aa 154 040 155 141 000243 aa 144 145 040 141 000244 aa 156 040 151 156 000245 aa 143 157 162 162 000246 aa 145 143 164 040 000247 aa 143 141 154 154 000250 aa 040 164 157 040 000251 aa 150 141 162 144 000252 aa 143 157 162 145 000253 aa 040 164 145 162 000254 aa 155 151 156 141 000255 aa 154 040 155 141 000256 aa 156 141 147 145 000257 aa 155 145 156 164 000260 aa 056 000 000 000 58 59 ec tc_mark_missing,tcnomark, 60 (Terminal control misplaced a synchronization mark.) 000022 segdef tc_mark_missing 000022 a0 077777 000263 000261 aa 164 143 156 157 aci "tcnomark",8 000262 aa 155 141 162 153 000263 aa 062 124 145 162 acc "Terminal control misplaced a synchronization mark." 000264 aa 155 151 156 141 000265 aa 154 040 143 157 000266 aa 156 164 162 157 000267 aa 154 040 155 151 000270 aa 163 160 154 141 000271 aa 143 145 144 040 000272 aa 141 040 163 171 000273 aa 156 143 150 162 000274 aa 157 156 151 172 000275 aa 141 164 151 157 000276 aa 156 040 155 141 000277 aa 162 153 056 000 61 62 ec tc_block_failed,tcblkerr, 63 (Terminal control could not block on tty event.) 000023 segdef tc_block_failed 000023 a0 077777 000302 000300 aa 164 143 142 154 aci "tcblkerr",8 000301 aa 153 145 162 162 000302 aa 056 124 145 162 acc "Terminal control could not block on tty event." 000303 aa 155 151 156 141 000304 aa 154 040 143 157 000305 aa 156 164 162 157 000306 aa 154 040 143 157 000307 aa 165 154 144 040 000310 aa 156 157 164 040 000311 aa 142 154 157 143 000312 aa 153 040 157 156 000313 aa 040 164 164 171 000314 aa 040 145 166 145 000315 aa 156 164 056 000 64 65 66 ec tc_out_of_terminal_bounds,tc^inbds, 67 (Terminal control attempt to position beyond screen boundaries.) 000024 segdef tc_out_of_terminal_bounds 000024 a0 077777 000320 000316 aa 164 143 136 151 aci "tc^inbds",8 000317 aa 156 142 144 163 000320 aa 076 124 145 162 acc "Terminal control attempt to position beyond screen boundaries." 000321 aa 155 151 156 141 000322 aa 154 040 143 157 000323 aa 156 164 162 157 000324 aa 154 040 141 164 000325 aa 164 145 155 160 000326 aa 164 040 164 157 000327 aa 040 160 157 163 000330 aa 151 164 151 157 000331 aa 156 040 142 145 000332 aa 171 157 156 144 000333 aa 040 163 143 162 000334 aa 145 145 156 040 000335 aa 142 157 165 156 000336 aa 144 141 162 151 000337 aa 145 163 056 000 68 ec not_terminal_switch,^term, 69 (The specified switch is not managed by terminal control.) 000025 segdef not_terminal_switch 000025 a0 077777 000342 000340 aa 136 164 145 162 aci "^term",8 000341 aa 155 040 040 040 000342 aa 070 124 150 145 acc "The specified switch is not managed by terminal control." 000343 aa 040 163 160 145 000344 aa 143 151 146 151 000345 aa 145 144 040 163 000346 aa 167 151 164 143 000347 aa 150 040 151 163 000350 aa 040 156 157 164 000351 aa 040 155 141 156 000352 aa 141 147 145 144 000353 aa 040 142 171 040 000354 aa 164 145 162 155 000355 aa 151 156 141 154 000356 aa 040 143 157 156 000357 aa 164 162 157 154 000360 aa 056 000 000 000 70 71 ec switch_not_attached_with_tty_,(sw^tty), 72 (The specified switch is not attached with the tty_ I/O module.) 000026 segdef switch_not_attached_with_tty_ 000026 a0 077777 000363 000361 aa 163 167 136 164 aci "sw^tty",8 000362 aa 164 171 040 040 000363 aa 076 124 150 145 acc "The specified switch is not attached with the tty_ I/O module." 000364 aa 040 163 160 145 000365 aa 143 151 146 151 000366 aa 145 144 040 163 000367 aa 167 151 164 143 000370 aa 150 040 151 163 000371 aa 040 156 157 164 000372 aa 040 141 164 164 000373 aa 141 143 150 145 000374 aa 144 040 167 151 000375 aa 164 150 040 164 000376 aa 150 145 040 164 000377 aa 164 171 137 040 000400 aa 111 057 117 040 000401 aa 155 157 144 165 000402 aa 154 145 056 000 73 74 ec window_status_pending,(wstatus), 75 (There is window interrupt status pending for the specified window.) 000027 segdef window_status_pending 000027 a0 077777 000405 000403 aa 167 163 164 141 aci "wstatus",8 000404 aa 164 165 163 040 000405 aa 102 124 150 145 acc "There is window interrupt status pending for the specified window." 000406 aa 162 145 040 151 000407 aa 163 040 167 151 000410 aa 156 144 157 167 000411 aa 040 151 156 164 000412 aa 145 162 162 165 000413 aa 160 164 040 163 000414 aa 164 141 164 165 000415 aa 163 040 160 145 000416 aa 156 144 151 156 000417 aa 147 040 146 157 000420 aa 162 040 164 150 000421 aa 145 040 163 160 000422 aa 145 143 151 146 000423 aa 151 145 144 040 000424 aa 167 151 156 144 000425 aa 157 167 056 000 76 77 ec bad_window_request,(badwreq), 78 (Internal error in window control: illegal operation.) 000030 segdef bad_window_request 000030 a0 077777 000430 000426 aa 142 141 144 167 aci "badwreq",8 000427 aa 162 145 161 040 000430 aa 064 111 156 164 acc "Internal error in window control: illegal operation." 000431 aa 145 162 156 141 000432 aa 154 040 145 162 000433 aa 162 157 162 040 000434 aa 151 156 040 167 000435 aa 151 156 144 157 000436 aa 167 040 143 157 000437 aa 156 164 162 157 000440 aa 154 072 040 151 000441 aa 154 154 145 147 000442 aa 141 154 040 157 000443 aa 160 145 162 141 000444 aa 164 151 157 156 000445 aa 056 000 000 000 79 80 ec string_not_printable,(w^ascii), 81 (A character supplied to a window_ text entrypoint was not a single width printing ASCII character.) 000031 segdef string_not_printable 000031 a0 077777 000450 000446 aa 167 136 141 163 aci "w^ascii",8 000447 aa 143 151 151 040 000450 aa 142 101 040 143 acc "A character supplied to a window_ text entrypoint was not a single width printing ASCII character." 000451 aa 150 141 162 141 000452 aa 143 164 145 162 000453 aa 040 163 165 160 000454 aa 160 154 151 145 000455 aa 144 040 164 157 000456 aa 040 141 040 167 000457 aa 151 156 144 157 000460 aa 167 137 040 164 000461 aa 145 170 164 040 000462 aa 145 156 164 162 000463 aa 171 160 157 151 000464 aa 156 164 040 167 000465 aa 141 163 040 156 000466 aa 157 164 040 141 000467 aa 040 163 151 156 000470 aa 147 154 145 040 000471 aa 167 151 144 164 000472 aa 150 040 160 162 000473 aa 151 156 164 151 000474 aa 156 147 040 101 000475 aa 123 103 111 111 000476 aa 040 143 150 141 000477 aa 162 141 143 164 000500 aa 145 162 056 000 82 83 ec cursor_position_undefined,nocurps, 84 (The current cursor position is not defined in the specified window.) 000032 segdef cursor_position_undefined 000032 a0 077777 000503 000501 aa 156 157 143 165 aci "nocurps",8 000502 aa 162 160 163 040 000503 aa 103 124 150 145 acc "The current cursor position is not defined in the specified window." 000504 aa 040 143 165 162 000505 aa 162 145 156 164 000506 aa 040 143 165 162 000507 aa 163 157 162 040 000510 aa 160 157 163 151 000511 aa 164 151 157 156 000512 aa 040 151 163 040 000513 aa 156 157 164 040 000514 aa 144 145 146 151 000515 aa 156 145 144 040 000516 aa 151 156 040 164 000517 aa 150 145 040 163 000520 aa 160 145 143 151 000521 aa 146 151 145 144 000522 aa 040 167 151 156 000523 aa 144 157 167 056 85 86 ec window_too_big,(bigwind), 87 (The screen is too small to accomodate a window of the requested size.) 000033 segdef window_too_big 000033 a0 077777 000526 000524 aa 142 151 147 167 aci "bigwind",8 000525 aa 151 156 144 040 000526 aa 105 124 150 145 acc "The screen is too small to accomodate a window of the requested size." 000527 aa 040 163 143 162 000530 aa 145 145 156 040 000531 aa 151 163 040 164 000532 aa 157 157 040 163 000533 aa 155 141 154 154 000534 aa 040 164 157 040 000535 aa 141 143 143 157 000536 aa 155 157 144 141 000537 aa 164 145 040 141 000540 aa 040 167 151 156 000541 aa 144 157 167 040 000542 aa 157 146 040 164 000543 aa 150 145 040 162 000544 aa 145 161 165 145 000545 aa 163 164 145 144 000546 aa 040 163 151 172 000547 aa 145 056 000 000 88 89 ec overlapping_more_responses,(badmore), 90 (A common character has been found in the ""yes"" and ""no"" strings.) 000034 segdef overlapping_more_responses 000034 a0 077777 000552 000550 aa 142 141 144 155 aci "badmore",8 000551 aa 157 162 145 040 000552 aa 100 101 040 143 acc "A common character has been found in the ""yes"" and ""no"" strings." 000553 aa 157 155 155 157 000554 aa 156 040 143 150 000555 aa 141 162 141 143 000556 aa 164 145 162 040 000557 aa 150 141 163 040 000560 aa 142 145 145 156 000561 aa 040 146 157 165 000562 aa 156 144 040 151 000563 aa 156 040 164 150 000564 aa 145 040 042 171 000565 aa 145 163 042 040 000566 aa 141 156 144 040 000567 aa 042 156 157 042 000570 aa 040 163 164 162 000571 aa 151 156 147 163 000572 aa 056 000 000 000 91 92 ec insuff_room_for_window,noroom,(Insufficient room to create window.) 000035 segdef insuff_room_for_window 000035 a0 077777 000575 000573 aa 156 157 162 157 aci "noroom",8 000574 aa 157 155 040 040 000575 aa 043 111 156 163 acc "Insufficient room to create window." 000576 aa 165 146 146 151 000577 aa 143 151 145 156 000600 aa 164 040 162 157 000601 aa 157 155 040 164 000602 aa 157 040 143 162 000603 aa 145 141 164 145 000604 aa 040 167 151 156 000605 aa 144 157 167 056 93 94 ec nonvariable_window,nonvar,(Window is not variable.) 000036 segdef nonvariable_window 000036 a0 077777 000610 000606 aa 156 157 156 166 aci "nonvar",8 000607 aa 141 162 040 040 000610 aa 027 127 151 156 acc "Window is not variable." 000611 aa 144 157 167 040 000612 aa 151 163 040 156 000613 aa 157 164 040 166 000614 aa 141 162 151 141 000615 aa 142 154 145 056 95 96 ec window_too_small,toosmall,(Tried to adjust window past minimum size.) 000037 segdef window_too_small 000037 a0 077777 000620 000616 aa 164 157 157 163 aci "toosmall",8 000617 aa 155 141 154 154 000620 aa 051 124 162 151 acc "Tried to adjust window past minimum size." 000621 aa 145 144 040 164 000622 aa 157 040 141 144 000623 aa 152 165 163 164 000624 aa 040 167 151 156 000625 aa 144 157 167 040 000626 aa 160 141 163 164 000627 aa 040 155 151 156 000630 aa 151 155 165 155 000631 aa 040 163 151 172 000632 aa 145 056 000 000 97 98 ec negative_screen_size,negssize,(Negative screen size specified.) 000040 segdef negative_screen_size 000040 a0 077777 000635 000633 aa 156 145 147 163 aci "negssize",8 000634 aa 163 151 172 145 000635 aa 037 116 145 147 acc "Negative screen size specified." 000636 aa 141 164 151 166 000637 aa 145 040 163 143 000640 aa 162 145 145 156 000641 aa 040 163 151 172 000642 aa 145 040 163 160 000643 aa 145 143 151 146 000644 aa 151 145 144 056 99 100 ec negative_window_size,negwsize,(Negative window size specified.) 000041 segdef negative_window_size 000041 a0 077777 000647 000645 aa 156 145 147 167 aci "negwsize",8 000646 aa 163 151 172 145 000647 aa 037 116 145 147 acc "Negative window size specified." 000650 aa 141 164 151 166 000651 aa 145 040 167 151 000652 aa 156 144 157 167 000653 aa 040 163 151 172 000654 aa 145 040 163 160 000655 aa 145 143 151 146 000656 aa 151 145 144 056 101 102 ec nonexistent_window,nonexist,(Specified window does not exist.) 000042 segdef nonexistent_window 000042 a0 077777 000661 000657 aa 156 157 156 145 aci "nonexist",8 000660 aa 170 151 163 164 000661 aa 040 123 160 145 acc "Specified window does not exist." 000662 aa 143 151 146 151 000663 aa 145 144 040 167 000664 aa 151 156 144 157 000665 aa 167 040 144 157 000666 aa 145 163 040 156 000667 aa 157 164 040 145 000670 aa 170 151 163 164 000671 aa 056 000 000 000 103 104 ec overlaps_other_window,woverlap,(Specified window overlaps other windows.) 000043 segdef overlaps_other_window 000043 a0 077777 000674 000672 aa 167 157 166 145 aci "woverlap",8 000673 aa 162 154 141 160 000674 aa 050 123 160 145 acc "Specified window overlaps other windows." 000675 aa 143 151 146 151 000676 aa 145 144 040 167 000677 aa 151 156 144 157 000700 aa 167 040 157 166 000701 aa 145 162 154 141 000702 aa 160 163 040 157 000703 aa 164 150 145 162 000704 aa 040 167 151 156 000705 aa 144 157 167 163 000706 aa 056 000 000 000 105 106 ec overlaps_screen_edge,soverlap,(Specified window overlaps screen edge.) 000044 segdef overlaps_screen_edge 000044 a0 077777 000711 000707 aa 163 157 166 145 aci "soverlap",8 000710 aa 162 154 141 160 000711 aa 046 123 160 145 acc "Specified window overlaps screen edge." 000712 aa 143 151 146 151 000713 aa 145 144 040 167 000714 aa 151 156 144 157 000715 aa 167 040 157 166 000716 aa 145 162 154 141 000717 aa 160 163 040 163 000720 aa 143 162 145 145 000721 aa 156 040 145 144 000722 aa 147 145 056 000 107 108 ec unable_to_create_window,nowcreat,(Unable to create window.) 000045 segdef unable_to_create_window 000045 a0 077777 000725 000723 aa 156 157 167 143 aci "nowcreat",8 000724 aa 162 145 141 164 000725 aa 030 125 156 141 acc "Unable to create window." 000726 aa 142 154 145 040 000727 aa 164 157 040 143 000730 aa 162 145 141 164 000731 aa 145 040 167 151 000732 aa 156 144 157 167 000733 aa 056 000 000 000 109 110 111 ec unable_to_create_screenobj,noscreat,(Unable to create screen object.) 000046 segdef unable_to_create_screenobj 000046 a0 077777 000736 000734 aa 156 157 163 143 aci "noscreat",8 000735 aa 162 145 141 164 000736 aa 037 125 156 141 acc "Unable to create screen object." 000737 aa 142 154 145 040 000740 aa 164 157 040 143 000741 aa 162 145 141 164 000742 aa 145 040 163 143 000743 aa 162 145 145 156 000744 aa 040 157 142 152 000745 aa 145 143 164 056 112 113 ec unable_to_dest_window,nowdestr,(Unable to destroy window.) 000047 segdef unable_to_dest_window 000047 a0 077777 000750 000746 aa 156 157 167 144 aci "nowdestr",8 000747 aa 145 163 164 162 000750 aa 031 125 156 141 acc "Unable to destroy window." 000751 aa 142 154 145 040 000752 aa 164 157 040 144 000753 aa 145 163 164 162 000754 aa 157 171 040 167 000755 aa 151 156 144 157 000756 aa 167 056 000 000 114 115 116 ec windows_still_exist,exist,(Windows still exist.) 000050 segdef windows_still_exist 000050 a0 077777 000761 000757 aa 145 170 151 163 aci "exist",8 000760 aa 164 040 040 040 000761 aa 024 127 151 156 acc "Windows still exist." 000762 aa 144 157 167 163 000763 aa 040 163 164 151 000764 aa 154 154 040 145 000765 aa 170 151 163 164 000766 aa 056 000 000 000 117 118 ec window_inconsistencies,inconsis,(Inconsistencies in window specification.) 000051 segdef window_inconsistencies 000051 a0 077777 000771 000767 aa 151 156 143 157 aci "inconsis",8 000770 aa 156 163 151 163 000771 aa 050 111 156 143 acc "Inconsistencies in window specification." 000772 aa 157 156 163 151 000773 aa 163 164 145 156 000774 aa 143 151 145 163 000775 aa 040 151 156 040 000776 aa 167 151 156 144 000777 aa 157 167 040 163 001000 aa 160 145 143 151 001001 aa 146 151 143 141 001002 aa 164 151 157 156 001003 aa 056 000 000 000 119 120 ec no_variable_windows,novar,(There are no variable windows on the screen.) 000052 segdef no_variable_windows 000052 a0 077777 001006 001004 aa 156 157 166 141 aci "novar",8 001005 aa 162 040 040 040 001006 aa 054 124 150 145 acc "There are no variable windows on the screen." 001007 aa 162 145 040 141 001010 aa 162 145 040 156 001011 aa 157 040 166 141 001012 aa 162 151 141 142 001013 aa 154 145 040 167 001014 aa 151 156 144 157 001015 aa 167 163 040 157 001016 aa 156 040 164 150 001017 aa 145 040 163 143 001020 aa 162 145 145 156 001021 aa 056 000 000 000 121 122 ec unable_to_call_wsys,nowsys,(Unable to invoke the window system.) 000053 segdef unable_to_call_wsys 000053 a0 077777 001024 001022 aa 156 157 167 163 aci "nowsys",8 001023 aa 171 163 040 040 001024 aa 043 125 156 141 acc "Unable to invoke the window system." 001025 aa 142 154 145 040 001026 aa 164 157 040 151 001027 aa 156 166 157 153 001030 aa 145 040 164 150 001031 aa 145 040 167 151 001032 aa 156 144 157 167 001033 aa 040 163 171 163 001034 aa 164 145 155 056 123 124 ec wsys_not_invoked,notinv,(The window system has not been invoked.) 000054 segdef wsys_not_invoked 000054 a0 077777 001037 001035 aa 156 157 164 151 aci "notinv",8 001036 aa 156 166 040 040 001037 aa 047 124 150 145 acc "The window system has not been invoked." 001040 aa 040 167 151 156 001041 aa 144 157 167 040 001042 aa 163 171 163 164 001043 aa 145 155 040 150 001044 aa 141 163 040 156 001045 aa 157 164 040 142 001046 aa 145 145 156 040 001047 aa 151 156 166 157 001050 aa 153 145 144 056 125 126 ec wsys_invoked,inv,(The window system has already been invoked.) 000055 segdef wsys_invoked 000055 a0 077777 001053 001051 aa 151 156 166 040 aci "inv",8 001052 aa 040 040 040 040 001053 aa 053 124 150 145 acc "The window system has already been invoked." 001054 aa 040 167 151 156 001055 aa 144 157 167 040 001056 aa 163 171 163 164 001057 aa 145 155 040 150 001060 aa 141 163 040 141 001061 aa 154 162 145 141 001062 aa 144 171 040 142 001063 aa 145 145 156 040 001064 aa 151 156 166 157 001065 aa 153 145 144 056 127 128 ec help_requested,help,(User requests usage information.) 000056 segdef help_requested 000056 a0 077777 001070 001066 aa 150 145 154 160 aci "help",8 001067 aa 040 040 040 040 001070 aa 040 125 163 145 acc "User requests usage information." 001071 aa 162 040 162 145 001072 aa 161 165 145 163 001073 aa 164 163 040 165 001074 aa 163 141 147 145 001075 aa 040 151 156 146 001076 aa 157 162 155 141 001077 aa 164 151 157 156 001100 aa 056 000 000 000 129 130 ec exit_now,quit,(Immediate termination requested.) 000057 segdef exit_now 000057 a0 077777 001103 001101 aa 161 165 151 164 aci "quit",8 001102 aa 040 040 040 040 001103 aa 040 111 155 155 acc "Immediate termination requested." 001104 aa 145 144 151 141 001105 aa 164 145 040 164 001106 aa 145 162 155 151 001107 aa 156 141 164 151 001110 aa 157 156 040 162 001111 aa 145 161 165 145 001112 aa 163 164 145 144 001113 aa 056 000 000 000 131 132 ec bad_window_image,badimag, 133 (A window image supplied to window_display_ was not the same size as the window.) 000060 segdef bad_window_image 000060 a0 077777 001116 001114 aa 142 141 144 151 aci "badimag",8 001115 aa 155 141 147 040 001116 aa 117 101 040 167 acc "A window image supplied to window_display_ was not the same size as the window." 001117 aa 151 156 144 157 001120 aa 167 040 151 155 001121 aa 141 147 145 040 001122 aa 163 165 160 160 001123 aa 154 151 145 144 001124 aa 040 164 157 040 001125 aa 167 151 156 144 001126 aa 157 167 137 144 001127 aa 151 163 160 154 001130 aa 141 171 137 040 001131 aa 167 141 163 040 001132 aa 156 157 164 040 001133 aa 164 150 145 040 001134 aa 163 141 155 145 001135 aa 040 163 151 172 001136 aa 145 040 141 163 001137 aa 040 164 150 145 001140 aa 040 167 151 156 001141 aa 144 157 167 056 134 135 ec switch_not_window,sw^wind, 136 (The specified switch is not attached as a window.) 000061 segdef switch_not_window 000061 a0 077777 001144 001142 aa 163 167 136 167 aci "sw^wind",8 001143 aa 151 156 144 040 001144 aa 061 124 150 145 acc "The specified switch is not attached as a window." 001145 aa 040 163 160 145 001146 aa 143 151 146 151 001147 aa 145 144 040 163 001150 aa 167 151 164 143 001151 aa 150 040 151 163 001152 aa 040 156 157 164 001153 aa 040 141 164 164 001154 aa 141 143 150 145 001155 aa 144 040 141 163 001156 aa 040 141 040 167 001157 aa 151 156 144 157 001160 aa 167 056 000 000 137 138 ec no_more_handler_in_use,^moreh,(No more handler is in use for specified window.) 000062 segdef no_more_handler_in_use 000062 a0 077777 001163 001161 aa 136 155 157 162 aci "^moreh",8 001162 aa 145 150 040 040 001163 aa 057 116 157 040 acc "No more handler is in use for specified window." 001164 aa 155 157 162 145 001165 aa 040 150 141 156 001166 aa 144 154 145 162 001167 aa 040 151 163 040 001170 aa 151 156 040 165 001171 aa 163 145 040 146 001172 aa 157 162 040 163 001173 aa 160 145 143 151 001174 aa 146 151 145 144 001175 aa 040 167 151 156 001176 aa 144 157 167 056 139 140 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 001200 5a 000003 000000 001201 5a 000570 600000 001202 aa 000000 000000 001203 55 000011 000002 001204 5a 000002 400003 001205 55 000006 000011 001206 aa 011 166 151 144 001207 aa 145 157 137 145 001210 aa 164 137 000 000 001211 55 000022 000003 001212 2a 000062 400001 001213 55 000014 000003 001214 aa 026 156 157 137 no_more_handler_in_use 001215 aa 155 157 162 145 001216 aa 137 150 141 156 001217 aa 144 154 145 162 001220 aa 137 151 156 137 001221 aa 165 163 145 000 001222 55 000032 000011 001223 2a 000061 400001 001224 55 000025 000003 001225 aa 021 163 167 151 switch_not_window 001226 aa 164 143 150 137 001227 aa 156 157 164 137 001230 aa 167 151 156 144 001231 aa 157 167 000 000 001232 55 000042 000022 001233 2a 000060 400001 001234 55 000035 000003 001235 aa 020 142 141 144 bad_window_image 001236 aa 137 167 151 156 001237 aa 144 157 167 137 001240 aa 151 155 141 147 001241 aa 145 000 000 000 001242 55 000050 000032 001243 2a 000057 400001 001244 55 000045 000003 001245 aa 010 145 170 151 exit_now 001246 aa 164 137 156 157 001247 aa 167 000 000 000 001250 55 000057 000042 001251 2a 000056 400001 001252 55 000053 000003 001253 aa 016 150 145 154 help_requested 001254 aa 160 137 162 145 001255 aa 161 165 145 163 001256 aa 164 145 144 000 001257 55 000066 000050 001260 2a 000055 400001 001261 55 000062 000003 001262 aa 014 167 163 171 wsys_invoked 001263 aa 163 137 151 156 001264 aa 166 157 153 145 001265 aa 144 000 000 000 001266 55 000076 000057 001267 2a 000054 400001 001270 55 000071 000003 001271 aa 020 167 163 171 wsys_not_invoked 001272 aa 163 137 156 157 001273 aa 164 137 151 156 001274 aa 166 157 153 145 001275 aa 144 000 000 000 001276 55 000106 000066 001277 2a 000053 400001 001300 55 000101 000003 001301 aa 023 165 156 141 unable_to_call_wsys 001302 aa 142 154 145 137 001303 aa 164 157 137 143 001304 aa 141 154 154 137 001305 aa 167 163 171 163 001306 55 000116 000076 001307 2a 000052 400001 001310 55 000111 000003 001311 aa 023 156 157 137 no_variable_windows 001312 aa 166 141 162 151 001313 aa 141 142 154 145 001314 aa 137 167 151 156 001315 aa 144 157 167 163 001316 55 000127 000106 001317 2a 000051 400001 001320 55 000121 000003 001321 aa 026 167 151 156 window_inconsistencies 001322 aa 144 157 167 137 001323 aa 151 156 143 157 001324 aa 156 163 151 163 001325 aa 164 145 156 143 001326 aa 151 145 163 000 001327 55 000137 000116 001330 2a 000050 400001 001331 55 000132 000003 001332 aa 023 167 151 156 windows_still_exist 001333 aa 144 157 167 163 001334 aa 137 163 164 151 001335 aa 154 154 137 145 001336 aa 170 151 163 164 001337 55 000150 000127 001340 2a 000047 400001 001341 55 000142 000003 001342 aa 025 165 156 141 unable_to_dest_window 001343 aa 142 154 145 137 001344 aa 164 157 137 144 001345 aa 145 163 164 137 001346 aa 167 151 156 144 001347 aa 157 167 000 000 001350 55 000162 000137 001351 2a 000046 400001 001352 55 000153 000003 001353 aa 032 165 156 141 unable_to_create_screenobj 001354 aa 142 154 145 137 001355 aa 164 157 137 143 001356 aa 162 145 141 164 001357 aa 145 137 163 143 001360 aa 162 145 145 156 001361 aa 157 142 152 000 001362 55 000173 000150 001363 2a 000045 400001 001364 55 000165 000003 001365 aa 027 165 156 141 unable_to_create_window 001366 aa 142 154 145 137 001367 aa 164 157 137 143 001370 aa 162 145 141 164 001371 aa 145 137 167 151 001372 aa 156 144 157 167 001373 55 000204 000162 001374 2a 000044 400001 001375 55 000176 000003 001376 aa 024 157 166 145 overlaps_screen_edge 001377 aa 162 154 141 160 001400 aa 163 137 163 143 001401 aa 162 145 145 156 001402 aa 137 145 144 147 001403 aa 145 000 000 000 001404 55 000215 000173 001405 2a 000043 400001 001406 55 000207 000003 001407 aa 025 157 166 145 overlaps_other_window 001410 aa 162 154 141 160 001411 aa 163 137 157 164 001412 aa 150 145 162 137 001413 aa 167 151 156 144 001414 aa 157 167 000 000 001415 55 000225 000204 001416 2a 000042 400001 001417 55 000220 000003 001420 aa 022 156 157 156 nonexistent_window 001421 aa 145 170 151 163 001422 aa 164 145 156 164 001423 aa 137 167 151 156 001424 aa 144 157 167 000 001425 55 000236 000215 001426 2a 000041 400001 001427 55 000230 000003 001430 aa 024 156 145 147 negative_window_size 001431 aa 141 164 151 166 001432 aa 145 137 167 151 001433 aa 156 144 157 167 001434 aa 137 163 151 172 001435 aa 145 000 000 000 001436 55 000247 000225 001437 2a 000040 400001 001440 55 000241 000003 001441 aa 024 156 145 147 negative_screen_size 001442 aa 141 164 151 166 001443 aa 145 137 163 143 001444 aa 162 145 145 156 001445 aa 137 163 151 172 001446 aa 145 000 000 000 001447 55 000257 000236 001450 2a 000037 400001 001451 55 000252 000003 001452 aa 020 167 151 156 window_too_small 001453 aa 144 157 167 137 001454 aa 164 157 157 137 001455 aa 163 155 141 154 001456 aa 154 000 000 000 001457 55 000267 000247 001460 2a 000036 400001 001461 55 000262 000003 001462 aa 022 156 157 156 nonvariable_window 001463 aa 166 141 162 151 001464 aa 141 142 154 145 001465 aa 137 167 151 156 001466 aa 144 157 167 000 001467 55 000300 000257 001470 2a 000035 400001 001471 55 000272 000003 001472 aa 026 151 156 163 insuff_room_for_window 001473 aa 165 146 146 137 001474 aa 162 157 157 155 001475 aa 137 146 157 162 001476 aa 137 167 151 156 001477 aa 144 157 167 000 001500 55 000312 000267 001501 2a 000034 400001 001502 55 000303 000003 001503 aa 032 157 166 145 overlapping_more_responses 001504 aa 162 154 141 160 001505 aa 160 151 156 147 001506 aa 137 155 157 162 001507 aa 145 137 162 145 001510 aa 163 160 157 156 001511 aa 163 145 163 000 001512 55 000321 000300 001513 2a 000033 400001 001514 55 000315 000003 001515 aa 016 167 151 156 window_too_big 001516 aa 144 157 167 137 001517 aa 164 157 157 137 001520 aa 142 151 147 000 001521 55 000333 000312 001522 2a 000032 400001 001523 55 000324 000003 001524 aa 031 143 165 162 cursor_position_undefined 001525 aa 163 157 162 137 001526 aa 160 157 163 151 001527 aa 164 151 157 156 001530 aa 137 165 156 144 001531 aa 145 146 151 156 001532 aa 145 144 000 000 001533 55 000344 000321 001534 2a 000031 400001 001535 55 000336 000003 001536 aa 024 163 164 162 string_not_printable 001537 aa 151 156 147 137 001540 aa 156 157 164 137 001541 aa 160 162 151 156 001542 aa 164 141 142 154 001543 aa 145 000 000 000 001544 55 000354 000333 001545 2a 000030 400001 001546 55 000347 000003 001547 aa 022 142 141 144 bad_window_request 001550 aa 137 167 151 156 001551 aa 144 157 167 137 001552 aa 162 145 161 165 001553 aa 145 163 164 000 001554 55 000365 000344 001555 2a 000027 400001 001556 55 000357 000003 001557 aa 025 167 151 156 window_status_pending 001560 aa 144 157 167 137 001561 aa 163 164 141 164 001562 aa 165 163 137 160 001563 aa 145 156 144 151 001564 aa 156 147 000 000 001565 55 000400 000354 001566 2a 000026 400001 001567 55 000370 000003 001570 aa 035 163 167 151 switch_not_attached_with_tty_ 001571 aa 164 143 150 137 001572 aa 156 157 164 137 001573 aa 141 164 164 141 001574 aa 143 150 145 144 001575 aa 137 167 151 164 001576 aa 150 137 164 164 001577 aa 171 137 000 000 001600 55 000410 000365 001601 2a 000025 400001 001602 55 000403 000003 001603 aa 023 156 157 164 not_terminal_switch 001604 aa 137 164 145 162 001605 aa 155 151 156 141 001606 aa 154 137 163 167 001607 aa 151 164 143 150 001610 55 000422 000400 001611 2a 000024 400001 001612 55 000413 000003 001613 aa 031 164 143 137 tc_out_of_terminal_bounds 001614 aa 157 165 164 137 001615 aa 157 146 137 164 001616 aa 145 162 155 151 001617 aa 156 141 154 137 001620 aa 142 157 165 156 001621 aa 144 163 000 000 001622 55 000431 000410 001623 2a 000023 400001 001624 55 000425 000003 001625 aa 017 164 143 137 tc_block_failed 001626 aa 142 154 157 143 001627 aa 153 137 146 141 001630 aa 151 154 145 144 001631 55 000440 000422 001632 2a 000022 400001 001633 55 000434 000003 001634 aa 017 164 143 137 tc_mark_missing 001635 aa 155 141 162 153 001636 aa 137 155 151 163 001637 aa 163 151 156 147 001640 55 000447 000431 001641 2a 000021 400001 001642 55 000443 000003 001643 aa 014 164 143 137 tc_tty_error 001644 aa 164 164 171 137 001645 aa 145 162 162 157 001646 aa 162 000 000 000 001647 55 000460 000440 001650 2a 000020 400001 001651 55 000452 000003 001652 aa 024 164 143 137 tc_missing_operation 001653 aa 155 151 163 163 001654 aa 151 156 147 137 001655 aa 157 160 145 162 001656 aa 141 164 151 157 001657 aa 156 000 000 000 001660 55 000470 000447 001661 2a 000017 400001 001662 55 000463 000003 001663 aa 022 164 143 137 tc_cannot_position 001664 aa 143 141 156 156 001665 aa 157 164 137 160 001666 aa 157 163 151 164 001667 aa 151 157 156 000 001670 55 000500 000460 001671 2a 000016 400001 001672 55 000473 000003 001673 aa 022 164 143 137 tc_illegal_request 001674 aa 151 154 154 145 001675 aa 147 141 154 137 001676 aa 162 145 161 165 001677 aa 145 163 164 000 001700 55 000510 000470 001701 2a 000015 400001 001702 55 000503 000003 001703 aa 023 157 166 145 overlapping_windows 001704 aa 162 154 141 160 001705 aa 160 151 156 147 001706 aa 137 167 151 156 001707 aa 144 157 167 163 001710 55 000517 000500 001711 2a 000014 400001 001712 55 000513 000003 001713 aa 015 142 141 144 bad_window_id 001714 aa 137 167 151 156 001715 aa 144 157 167 137 001716 aa 151 144 000 000 001717 55 000527 000510 001720 2a 000013 400001 001721 55 000522 000003 001722 aa 022 143 141 160 capability_lacking 001723 aa 141 142 151 154 001724 aa 151 164 171 137 001725 aa 154 141 143 153 001726 aa 151 156 147 000 001727 55 000541 000517 001730 2a 000012 400001 001731 55 000532 000003 001732 aa 030 164 145 162 terminal_cannot_position 001733 aa 155 151 156 141 001734 aa 154 137 143 141 001735 aa 156 156 157 164 001736 aa 137 160 157 163 001737 aa 151 164 151 157 001740 aa 156 000 000 000 001741 55 000550 000527 001742 2a 000011 400001 001743 55 000544 000003 001744 aa 015 156 157 137 no_video_info 001745 aa 166 151 144 145 001746 aa 157 137 151 156 001747 aa 146 157 000 000 001750 55 000561 000541 001751 2a 000010 400001 001752 55 000553 000003 001753 aa 024 157 165 164 out_of_window_bounds 001754 aa 137 157 146 137 001755 aa 167 151 156 144 001756 aa 157 167 137 142 001757 aa 157 165 156 144 001760 aa 163 000 000 000 001761 55 000002 000550 001762 6a 000000 400002 001763 55 000564 000003 001764 aa 014 163 171 155 symbol_table 001765 aa 142 157 154 137 001766 aa 164 141 142 154 001767 aa 145 000 000 000 DEFINITIONS HASH TABLE 001770 aa 000000 000065 001771 5a 000076 000000 001772 5a 000333 000000 001773 aa 000000 000000 001774 5a 000116 000000 001775 5a 000527 000000 001776 5a 000066 000000 001777 5a 000354 000000 002000 5a 000541 000000 002001 5a 000215 000000 002002 5a 000127 000000 002003 5a 000257 000000 002004 aa 000000 000000 002005 5a 000400 000000 002006 5a 000057 000000 002007 5a 000550 000000 002010 5a 000247 000000 002011 aa 000000 000000 002012 aa 000000 000000 002013 5a 000225 000000 002014 5a 000042 000000 002015 5a 000236 000000 002016 5a 000312 000000 002017 5a 000300 000000 002020 5a 000032 000000 002021 5a 000344 000000 002022 5a 000410 000000 002023 5a 000365 000000 002024 aa 000000 000000 002025 5a 000561 000000 002026 5a 000447 000000 002027 5a 000510 000000 002030 aa 000000 000000 002031 5a 000204 000000 002032 5a 000460 000000 002033 5a 000173 000000 002034 5a 000470 000000 002035 5a 000321 000000 002036 5a 000500 000000 002037 5a 000011 000000 002040 5a 000150 000000 002041 5a 000422 000000 002042 5a 000431 000000 002043 5a 000517 000000 002044 aa 000000 000000 002045 5a 000106 000000 002046 5a 000162 000000 002047 5a 000267 000000 002050 5a 000440 000000 002051 aa 000000 000000 002052 5a 000137 000000 002053 5a 000022 000000 002054 aa 000000 000000 002055 5a 000050 000000 NO EXTERNAL NAMES NO TRAP POINTER WORDS TYPE PAIR BLOCKS 002056 aa 000001 000000 002057 aa 000000 000000 INTERNAL EXPRESSION WORDS 002060 50 000656 000000 002061 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 001200 000066 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000064 000071 000007 a2 000000 000054 000064 9a 777714 0000 46 *text| 000065 5a 000660 0000 00 FIRST REFERENCE TRAP LIST 000066 aa 000000 000001 000067 aa 000000 000001 000070 2a 000064 000000 000071 aa 000000 000000 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000007 000004 aa 000000 115030 000005 aa 273207 326355 000006 aa 000000 115537 000007 aa 227055 751105 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 000321 000020 aa 000000 000137 000021 aa 000220 000205 000022 aa 000311 000137 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 067056 063040 000030 aa 116157 166145 000031 aa 155142 145162 000032 aa 040061 071070 000033 aa 066040 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 055164 141162 000045 aa 147145 164040 000046 aa 154066 070040 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 040154 151163 000057 aa 164040 163171 000060 aa 155142 157154 000061 aa 163040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000003 000066 aa 000102 000056 000067 aa 155352 157202 000070 aa 000000 115537 000071 aa 226736 200000 000072 aa 000116 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000126 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 076163 160145 >special_ldd>install>MR12.1-1086>video_et_.alm 000103 aa 143151 141154 000104 aa 137154 144144 000105 aa 076151 156163 000106 aa 164141 154154 000107 aa 076115 122061 000110 aa 062056 061055 000111 aa 061060 070066 000112 aa 076166 151144 000113 aa 145157 137145 000114 aa 164137 056141 000115 aa 154155 040040 000116 aa 076154 144144 >ldd>include>et_macros.incl.alm 000117 aa 076151 156143 000120 aa 154165 144145 000121 aa 076145 164137 000122 aa 155141 143162 000123 aa 157163 056151 000124 aa 156143 154056 000125 aa 141154 155040 000126 aa 076154 144144 >ldd>include>stack_header.incl.alm 000127 aa 076151 156143 000130 aa 154165 144145 000131 aa 076163 164141 000132 aa 143153 137150 000133 aa 145141 144145 000134 aa 162056 151156 000135 aa 143154 056141 000136 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number *text video_et_: 27. 14 .._00000 video_et_: 30. 37 .._00001 video_et_: 33. 60 .._00002 video_et_: 36. 77 .._00003 video_et_: 39. 121 .._00004 video_et_: 42. 135 .._00005 video_et_: 45. 152 .._00006 video_et_: 48. 170 .._00007 video_et_: 51. 210 .._00010 video_et_: 54. 236 .._00011 video_et_: 57. 263 .._00012 video_et_: 60. 302 .._00013 video_et_: 63. 320 .._00014 video_et_: 67. 342 .._00015 video_et_: 69. 363 .._00016 video_et_: 72. 405 .._00017 video_et_: 75. 430 .._00020 video_et_: 78. 450 .._00021 video_et_: 81. 503 .._00022 video_et_: 84. 526 .._00023 video_et_: 87. 552 .._00024 video_et_: 90. 575 .._00025 video_et_: 92. 610 .._00026 video_et_: 94. 620 .._00027 video_et_: 96. 635 .._00030 video_et_: 98. 647 .._00031 video_et_: 100. 661 .._00032 video_et_: 102. 674 .._00033 video_et_: 104. 711 .._00034 video_et_: 106. 725 .._00035 video_et_: 108. 736 .._00036 video_et_: 111. 750 .._00037 video_et_: 113. 761 .._00040 video_et_: 116. 771 .._00041 video_et_: 118. 1006 .._00042 video_et_: 120. 1024 .._00043 video_et_: 122. 1037 .._00044 video_et_: 124. 1053 .._00045 video_et_: 126. 1070 .._00046 video_et_: 128. 1103 .._00047 video_et_: 130. 1116 .._00050 video_et_: 133. 1144 .._00051 video_et_: 136. 1163 .._00052 video_et_: 138. 63 .code_end video_et_: 27. 10 .code_start video_et_: 27. 5 .loop video_et_: 27. 77777 .segno video_et_: 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 67, 69, 72, 75, 78, 81, 84, 87, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 111, 113, 116, 118, 120, 122, 124, 126, 128, 130, 133, 136, 138. 0 .trapproc video_et_: 27. 14 bad_window_id video_et_: 42. 60 bad_window_image video_et_: 133. 30 bad_window_request video_et_: 78. 1170 call_offset stack_header: 80. 13 capability_lacking video_et_: 39. 10 codes video_et_: 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 67, 69, 72, 75, 78, 81, 84, 87, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 111, 113, 116, 118, 120, 122, 124, 126, 128, 130, 133, 136, 138. 32 cursor_position_undefined video_et_: 84. 1174 entry_offset stack_header: 84. 57 exit_now video_et_: 130. 56 help_requested video_et_: 128. 35 insuff_room_for_window video_et_: 92. 0 messages video_et_: 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 67, 69, 72, 75, 78, 81, 84, 87, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 111, 113, 116, 118, 120, 122, 124, 126, 128, 130, 133, 136, 138. 40 negative_screen_size video_et_: 98. 41 negative_window_size video_et_: 100. 42 nonexistent_window video_et_: 102. 36 nonvariable_window video_et_: 94. 25 not_terminal_switch video_et_: 69. 62 no_more_handler_in_use video_et_: 138. 52 no_variable_windows video_et_: 120. 11 no_video_info video_et_: 33. 10 out_of_window_bounds video_et_: 30. 34 overlapping_more_responses video_et_: 90. 15 overlapping_windows video_et_: 45. 43 overlaps_other_window video_et_: 104. 44 overlaps_screen_edge video_et_: 106. 63 past_codes video_et_: 27. 1171 push_offset stack_header: 81. 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 video_et_: 27, 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. 31 string_not_printable video_et_: 81. 26 switch_not_attached_with_tty_ video_et_: 72. 61 switch_not_window video_et_: 136. 23 tc_block_failed video_et_: 63. 17 tc_cannot_position video_et_: 51. 16 tc_illegal_request video_et_: 48. 22 tc_mark_missing video_et_: 60. 20 tc_missing_operation video_et_: 54. 24 tc_out_of_terminal_bounds video_et_: 67. 21 tc_tty_error video_et_: 57. 12 terminal_cannot_position video_et_: 36. 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. 53 unable_to_call_wsys video_et_: 122. 46 unable_to_create_screenobj video_et_: 111. 45 unable_to_create_window video_et_: 108. 47 unable_to_dest_window video_et_: 113. 50 windows_still_exist video_et_: 116. 51 window_inconsistencies video_et_: 118. 27 window_status_pending video_et_: 75. 33 window_too_big video_et_: 87. 37 window_too_small video_et_: 96. 55 wsys_invoked video_et_: 126. 54 wsys_not_invoked video_et_: 124. 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