ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.3-1114>bce_request_table_.alm ASSEMBLED ON: 11/11/89 0953.4 mst Sat OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 8.14 March 1989 ASSEMBLER CREATED: 06/09/89 1002.3 mst Fri 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Bull Inc., 1987 * 4 " * * 5 " * Copyright, (C) Honeywell Information Systems Inc., 1984 * 6 " * * 7 " *********************************************************** 8 9 " HISTORY COMMENTS: 10 " 1) change(85-09-09,Farley), approve(85-09-09,MCR6979), 11 " audit(86-02-27,Coppola), install(86-03-21,MR12.0-1033): 12 " added lock_mca, 13 " unlock_mca requests. 14 " 2) change(86-01-01,Farley), approve(86-07-18,MCR7439), 15 " audit(86-08-18,Fawcett), install(86-10-20,MR12.0-1189): 16 " Add save and restore requests. 17 " 3) change(86-09-23,Fawcett), approve(86-09-23,MCR7533), 18 " audit(86-10-21,Farley), install(86-10-22,MR12.0-1193): 19 " Add copy_disk in the correct order. 20 " END HISTORY COMMENTS 21 000000 22 name bce_request_table_ 23 24 " ssu_-style request table of bce requests. 25 " Written by one or more of Olin Sibert, Charlie Hornig, Benson Margulies 26 " and Keith Loepere (last one to touch it). 27 " Aug 1984 JAFalksen - removed date_time_after, time_after, date_time_valid 28 " date_time_before, time_before, date_time_equal,time_equal 29 " because they are no longer in equal_b 30 " November of 1984, Allen Ball to add test_disk and display_disk_label. 31 " January 1985: Keith Loepere: config_deck_edit_ smart enough to run at crash. 32 33 include ssu_request_macros 1-1 " BEGIN INCLUDE FILE ... ssu_request_macros.incl.alm 1-2 " Created: 5 May 1980 by W. Olin Sibert 1-3 " Modified: 25 July 1980 by G. Palter to add multics_request macro 1-4 " Modified: 1 December 1981 by G. Palter to remove user_flags 1-5 " Modified: 12 February 1982 by G. Palter for version 4 1-6 " Modified: 28 February 1982 by G. Palter to add dont_summarize and dont_list 1-7 " Modified: 2 August 1982 by Jay Pattin to add unknown_request 1-8 " Modified: 24 October 1984 by G. Palter to restore user flags and add the 1-9 " set_default_flags and set_default_multics_flags macros 1-10 1-11 1-12 " ALM macros used to define subsystem request tables 1-13 1-14 1-15 macro request_table_version 1 1-16 aci "srqt_4.0",8 2 1-17 &end 1-18 1-19 1-20 macro namelist 1 1-21 maclist off,save 2 1-22 vfd 36/&K 3 1-23 &R&( aci @&i@,32 4 1-24 &) 5 1-25 maclist restore 6 1-26 &end 1-27 1-28 " 1-29 1-30 " System defined per-request flags 1-31 400000 1-32 bool flags.allow_command,400000 " valid as a command 200000 1-33 bool flags.allow_af,200000 " valid as an active function 600000 1-34 bool flags.allow_both,600000 " valid as both 1-35 100000 1-36 bool flags.unimplemented,100000 " request is not yet implemented 040000 1-37 bool flags.multics_request,040000 " request is actually a Multics command 1-38 020000 1-39 bool flags.dont_summarize,020000 " summarize_requests won't list it 010000 1-40 bool flags.dont_list,010000 " list_requests won't show it without -all 1-41 004000 1-42 bool flags.unknown,004000 " request is explicitly made unknown 1-43 1-44 1-45 " Macros for setting per-request flags 1-46 1-47 macro set_flags_loop 1 1-48 maclist off,save 2 1-49 &(3 3 1-50 &=&i,default&[ set_flags_loop &1,(0),(&2) 4 1-51 &; set &1,&1+&i 5 1-52 &]&) 6 1-53 maclist restore 7 1-54 &end 1-55 1-56 1-57 macro set_flags 1 1-58 maclist off,save 2 1-59 set &1,0 3 1-60 &=&3,&[ set_flags_loop &1,(0),(&2) 4 1-61 &; set_flags_loop &1,(&2),(&3) 5 1-62 &] 6 1-63 maclist restore 7 1-64 &end 1-65 1-66 " 1-67 1-68 " set_default_flags {(system-flags)},{(user-flags)} 1-69 1-70 " Sets the default system and/or user flags to be used for requests: 1-71 " system-flags: defines the default general nature of requests;" the default 1-72 " default is flags.allow_command 1-73 " user-flags: defines the default setting for the subsystem specific flags 1-74 " associated with requests;" the default default is none (0) 1-75 " Note: If either system-flags or user-flags is ommitted, the default is not 1-76 " changed from its prior value. This action allows the use of multiple 1-77 " set_default_flags macros within a table to change system or user 1-78 " flags without affecting the other defaults 1-79 1-80 macro set_default_flags 1 1-81 maclist off,save 2 1-82 &^=&1,&[ set_flags .dft_sf,(flags.allow_command),(&1) 3 1-83 &] 4 1-84 &^=&2,&[ set_flags .dft_uf,(0),(&2) 5 1-85 &] 6 1-86 maclist restore 7 1-87 &end 1-88 1-89 1-90 " set_default_multics_flags {(system-flags)},{(user-flags)} 1-91 1-92 " Sets the default system and/or user flags to be used for Multics commands when used as requests: 1-93 " system-flags: defines the default general nature of Multics requests;" the 1-94 " default default is flags.allow_command+flags.allow_af 1-95 " user-flags: defines the default setting for the subsystem specific flags 1-96 " associated with Multics requests;" the default default is none (0) 1-97 " Note: If either system-flags or user-flags is ommitted, the default is not 1-98 " changed from its prior value. This action allows the use of multiple 1-99 " set_default_multics_flags macros within a table to change system or user 1-100 " flags without affecting the other defaults 1-101 1-102 macro set_default_multics_flags 1 1-103 maclist off,save 2 1-104 &^=&1,&[ set_flags .dft_mrsf,(flags.allow_command,flags.allow_af),(&1) 3 1-105 &] 4 1-106 &^=&2,&[ set_flags .dft_mruf,(0),(&2) 5 1-107 &] 6 1-108 maclist restore 7 1-109 &end 1-110 1-111 " 1-112 1-113 macro .multics_request_doc 1 1-114 null 2 1-115 &end 1-116 1-117 1-118 macro dft_multics_doc_lth 1 1-119 set .multics_doc_lth,0 2 1-120 &end 1-121 1-122 1-123 " set_default_multics_doc (string) 1-124 1-125 " Sets the default documentation to be used for Multics commands when used as requests: 1-126 " string: is the documentation string to be used for any subsequent requests defined by 1-127 " the multics_request_macro;" all occurences of "&1" in this string will be replaced by 1-128 " the actual name of the request;" Eg: 1-129 " set_default_multics_doc (Type '.. help &1' for more information.) 1-130 1-131 macro set_default_multics_doc 1 1-132 maclist off,save 2 1-133 macro .multics_request_doc 3 1-134 aci @&1@ 4 1-135 &&end 5 1-136 macro dft_multics_doc_lth 6 1-137 macro .compute 7 1-138 set .multics_doc_lth,&&&&l1 8 1-139 &&&&end 9 1-140 .compute (&1) 10 1-141 &&end 11 1-142 maclist restore 12 1-143 &end 1-144 1-145 " 1-146 1-147 " begin_table tablename 1-148 1-149 " Defines a subsystem request table (multiple tables may exist in a single object segment): 1-150 " tablename: the name by which this table may be referenced externally;" references to the 1-151 " table should be of the form segname$tablename where segname is the name of this 1-152 " object segment 1-153 1-154 macro begin_table 1 1-155 segdef &1 2 1-156 maclist object,save 3 1-157 use tables 4 1-158 &1: request_table_version 5 1-159 aci @&1@,32 6 1-160 dup 6 7 1-161 vfd 36/0 8 1-162 dupend 9 1-163 vfd 36/&1.rc 10 1-164 maclist off 11 1-165 set .rc,0 12 1-166 set_default_flags (default),(default) 13 1-167 set_default_multics_flags (default),(default) 14 1-168 maclist restore 15 1-169 &end 1-170 1-171 1-172 " end_table tablename 1-173 1-174 " Indicates the end of a subsystem request table definition: 1-175 " tablename: the name of the table which has now been completely defined 1-176 1-177 macro end_table 1 1-178 maclist off,save 2 1-179 set &1.rc,.rc 3 1-180 maclist restore 4 1-181 &end 1-182 1-183 " 1-184 1-185 " request name,processor,({abbreviations}),{(documentation)}, 1-186 " {(system-flags)},{(user-flags)} 1-187 1-188 " Defines a subsystem request: 1-189 " name: the primary name of this request 1-190 " processor: the name of the procedure which actually executes this request;" it must be 1-191 " of the form segname$entryname 1-192 " abbreviations: is the list of defined abbreviations for this request 1-193 " documentation: a short string used by the list_requests request to explain this request 1-194 " system-flags: defines the general nature of this request;" the default is 1-195 " flags.allow_command 1-196 " user-flags: allows a subsystem to provide subsystem-specific information 1-197 " with the request's definition;" the default is none (0) 1-198 1-199 macro request 1 1-200 maclist off,save 2 1-201 set .rc,.rc+1 3 1-202 maclist object 4 1-203 use tables 5 1-204 vfd 18/&U.call,18/&U.names 6 1-205 &=&4,&[ vfd 36/0 7 1-206 &; vfd 18/&U.info,18/&l4 8 1-207 maclist off 9 1-208 use info 10 1-209 &U.info: aci @&4@ 11 1-210 &] 12 1-211 use tables 13 1-212 set_flags .sf,(.dft_sf),(&5) 14 1-213 set_flags .uf,(.dft_uf),(&6) 15 1-214 maclist object 16 1-215 vfd 18/.sf,18/.uf 17 1-216 maclist off 18 1-217 use calls 19 1-218 &U.call: epaq * 20 1-219 lprp4 7|stack_header.lot_ptr,*au 21 1-220 call6 &2 22 1-221 use names 23 1-222 &U.names: namelist &1&^=&3,&[,&3&] 24 1-223 maclist restore 25 1-224 &end 1-225 1-226 " 1-227 1-228 " unknown_request name,(abbreviations) 1-229 1-230 " Defines an unknown request: used to make the utilities not recognize a request even though 1-231 " it is defined in a later request table (such as ssu_request_tables_$standard_request): 1-232 " name: the primary name of the request to be marked as unknown 1-233 " abbreviations: is the list of defined abbreviations for this request 1-234 1-235 macro unknown_request 1 1-236 maclist off,save 2 1-237 set .rc,.rc+1 3 1-238 maclist object 4 1-239 use tables 5 1-240 vfd 18/&U.call,18/&U.names 6 1-241 vfd 36/0 7 1-242 vfd 18/flags.unknown,18/0 8 1-243 maclist off 9 1-244 use calls 10 1-245 &U.call: epaq * 11 1-246 lprp4 7|stack_header.lot_ptr,*au 12 1-247 call6 ssu_$unknown_request 13 1-248 use names 14 1-249 &U.names: namelist &1&^=&2,&[,&2&] 15 1-250 maclist restore 16 1-251 &end 1-252 1-253 " 1-254 1-255 " multics_request name,({abbreviations}),({documenation}),{procedure}, 1-256 " {(system-flags)},{(user-flags)} 1-257 1-258 " Defines that a Multics command/AF may be used as a subsystem request: 1-259 " name: the primary name of this request (usually the name of the Multics command/AF) 1-260 " abbreviations: is the list of defined abbreviations for this request 1-261 " documentation: a short string used by the list_requests request to explain this request; 1-262 " if no documentation is provided, the documentation specified by a prior use of 1-263 " set_default_multics_doc is used 1-264 " procedure: the name of the Multics command/AF which is actually executed by this 1-265 " request;" it must be of the form segname$entryname;" if not given, the default is 1-266 " name$name 1-267 " system-flags: defines the general nature of this request;" the default is 1-268 " flags.allow_command+flags.allow_af 1-269 " user-flags: allows a subsystem to provide subsystem-specific information 1-270 " with the request's definition;" the default is none (0) 1-271 1-272 macro multics_request 1 1-273 maclist off,save 2 1-274 set .rc,.rc+1 3 1-275 maclist object 4 1-276 use tables 5 1-277 vfd 18/&U.call,18/&U.names 6 1-278 &=&3,&[ dft_multics_doc_lth &1,(&2),(&3),(&4),(&5),(&6) 7 1-279 vfd 18/&U.info,18/.multics_doc_lth 8 1-280 &; vfd 18/&U.info,18/&l3 9 1-281 &] 10 1-282 maclist off 11 1-283 use info 12 1-284 &U.info: 13 1-285 &=&3,&[ .multics_request_doc &1,(&2),(&3),(&4),(&5),(&6) 14 1-286 &; aci @&3@ 15 1-287 &] 16 1-288 use tables 17 1-289 maclist object 18 1-290 set_flags .sf,(.dft_mrsf),(&5) 19 1-291 set_flags .uf,(.dft_mruf),(&6) 20 1-292 maclist object 21 1-293 vfd 18/.sf+flags.multics_request,18/.uf 22 1-294 maclist off 23 1-295 use calls 24 1-296 &U.call: epaq * 25 1-297 lprp4 7|stack_header.lot_ptr,*au 26 1-298 &=&4,&[ call6 &1$&1 27 1-299 &; call6 &4 28 1-300 &] 29 1-301 use names 30 1-302 &U.names: namelist &1&^=&2,&[,&2&] 31 1-303 maclist restore 32 1-304 &end 1-305 1-306 " 1-307 1-308 " Required ALM statements to make this all work 1-309 1-310 use tables 1-311 use calls 1-312 use names 1-313 use info 1-314 join /text/tables,calls,names,info 1-315 1-316 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 1-317 1-318 " END INCLUDE FILE ... ssu_request_macros.incl.alm 34 35 begin_table bce_request_table_ 000000 segdef bce_request_table_ 000000 aa 163 162 161 164 000001 aa 137 064 056 060 000002 aa 142 143 145 137 000003 aa 162 145 161 165 000004 aa 145 163 164 137 000005 aa 164 141 142 154 000006 aa 145 137 040 040 000007 aa 040 040 040 040 000010 aa 040 040 040 040 000011 aa 040 040 040 040 000006 000012 aa 000000 000000 000013 aa 000000 000000 000014 aa 000000 000000 000015 aa 000000 000000 000016 aa 000000 000000 000017 aa 000000 000000 000020 aa 000000 000120 36 000004 37 bool flags.valid_early,000004 "use some unused flags for us 000002 38 bool flags.valid_boot,000002 000001 39 bool flags.valid_crash,000001 000007 40 bool flags.valid_all,000007 000006 41 bool flags.valid_non_crash,000006 42 43 request alert, 44 bce_alert$bce_alert, 45 (), 46 (Write an alert message on the console.), 47 flags.allow_command+flags.valid_all 000021 00 000401 000761 000022 0a 002721 000046 000023 aa 400007 000000 48 49 request bce, 50 bce_get_to_command_level$bce, 51 (), 52 (Continue booting bce.), 53 flags.allow_command+flags.valid_early 000024 00 000404 000772 000025 0a 002733 000025 000026 aa 400004 000000 54 55 request bce_state, 56 bce_state$bce_state, 57 (bces), 58 (Return the current state of bce.), 59 flags.allow_both+flags.valid_all 000027 00 000407 001003 000030 0a 002741 000040 000031 aa 600007 000000 60 61 request boot, 62 bce_get_to_command_level$boot, 63 (), 64 (Boot Multics.), 65 flags.allow_command+flags.valid_boot 000032 00 000412 001024 000033 0a 002751 000015 000034 aa 400002 000000 66 67 request bos, 68 bce_bos$bce_bos, 69 (), 70 (Return to bos, if present.), 71 flags.allow_command+flags.valid_all 000035 00 000415 001035 000036 0a 002755 000032 000037 aa 400007 000000 72 73 request config_edit, 74 config_deck_edit_$config_deck_edit_, 75 (config), 76 (Enter the config deck editor.), 77 flags.allow_command+flags.valid_all 000040 00 000420 001046 000041 0a 002764 000035 000042 aa 400007 000000 78 79 request continue, 80 bce_continue$bce_continue, 81 (go), 82 (Restart the interrupted Multics image.), 83 flags.allow_command+flags.valid_crash 000043 00 000423 001067 000044 0a 002774 000046 000045 aa 400001 000000 84 85 request copy_disk, 86 bce_copy_disk$bce_copy_disk, 87 (cd), 88 (Copy one PV to another.), 89 flags.allow_command+flags.valid_all 000046 00 000426 001110 000047 0a 003006 000027 000050 aa 400007 000000 90 91 request delete, 92 bootload_fs_cmds_$delete, 93 (dl), 94 (Delete a bootload file.), 95 flags.allow_command+flags.valid_all 000051 00 000431 001131 000052 0a 003014 000027 000053 aa 400007 000000 96 97 request die, 98 bce_die$bce_die, 99 (), 100 (Abort bce.), 101 flags.allow_command+flags.valid_all 000054 00 000434 001152 000055 0a 003022 000012 000056 aa 400007 000000 102 103 request display_disk_label, 104 bce_display_disk_label$bce_display_disk_label, 105 (ddl), 106 (Find disk label and display, if readable.), 107 flags.allow_command+flags.valid_all 000057 00 000437 001163 000060 0a 003025 000051 000061 aa 400007 000000 108 109 request dump, 110 bce_dump$bce_dump, 111 (), 112 (Create a dump of Multics in the dump partition.), 113 flags.allow_command+flags.valid_all 000062 00 000442 001204 000063 0a 003040 000057 000064 aa 400007 000000 114 115 request emergency_shutdown, 116 bce_esd$bce_esd, 117 (esd), 118 (Perform an emergency shutdown of Multics.), 119 flags.allow_command+flags.valid_crash 000065 00 000445 001215 000066 0a 003054 000051 000067 aa 400001 000000 120 121 request exec_com, 122 bce_exec_com_$bce_exec_com_, 123 (ec), 124 (Execute a file of bootload Multics commands.), 125 flags.allow_both+flags.valid_all 000070 00 000450 001236 000071 0a 003067 000054 000072 aa 600007 000000 126 127 request fwload, 128 bce_fwload$bce_fwload, 129 (fw), 130 (Load firmware into an mpc.), 131 flags.allow_command+flags.valid_boot+flags.valid_crash 000073 00 000453 001257 000074 0a 003102 000032 000075 aa 400003 000000 132 133 request get_flagbox, 134 bce_get_flagbox$bce_get_flagbox, 135 (gfb), 136 (Get the value of a flagbox variable.), 137 flags.allow_both+flags.valid_all 000076 00 000456 001300 000077 0a 003111 000044 000100 aa 600007 000000 138 139 request init_files, 140 bootload_fs_cmds_$init, 141 (), 142 (Initialize the bootload file system.), 143 flags.allow_command+flags.valid_all 000101 00 000461 001321 000102 0a 003122 000044 000103 aa 400007 000000 144 145 request list, 146 bootload_fs_cmds_$list, 147 (ls), 148 (List bootload files.), 149 flags.allow_command+flags.valid_all 000104 00 000464 001332 000105 0a 003133 000024 000106 aa 400007 000000 150 151 request list_requests, 152 bce_list_requests_$bce_list_requests_, 153 (lr), 154 (List bootload requests.), 155 flags.allow_command+flags.valid_all 000107 00 000467 001353 000110 0a 003140 000027 000111 aa 400007 000000 156 157 request lock_mca, 158 bce_lock_mca$bce_lock_mca, 159 (), 160 (Disable MCA input through console.), 161 flags.allow_command+flags.valid_boot+flags.valid_crash 000112 00 000472 001374 000113 0a 003146 000042 000114 aa 400003 000000 162 163 request print, 164 bootload_fs_cmds_$print, 165 (pr), 166 (Print a bootload file.), 167 flags.allow_command+flags.valid_all 000115 00 000475 001405 000116 0a 003157 000026 000117 aa 400007 000000 168 169 request probe, 170 bce_probe$bce_probe, 171 (pb), 172 (Examine/modify the Multics image.), 173 flags.allow_command+flags.valid_all 000120 00 000500 001426 000121 0a 003165 000041 000122 aa 400007 000000 174 175 request qedx, 176 bootload_qedx$bootload_qedx, 177 (qx), 178 (Edit bootload text file.), 179 flags.allow_command+flags.valid_all 000123 00 000503 001447 000124 0a 003176 000030 000125 aa 400007 000000 180 181 request reinitialize, 182 bce_get_to_command_level$reinitialize, 183 (reinit), 184 (Re-perform Multics initialization.), 185 flags.allow_command+flags.valid_crash+flags.valid_boot 000126 00 000506 001470 000127 0a 003204 000042 000130 aa 400003 000000 186 187 request rename, 188 bootload_fs_cmds_$rename, 189 (rn), 190 (Rename a bootload file.), 191 flags.allow_command+flags.valid_all 000131 00 000511 001511 000132 0a 003215 000027 000133 aa 400007 000000 192 193 request restore, 194 bce_save$bce_restore, 195 (), 196 (Restore Physical Volumes from BCE Save Tapes.), 197 flags.allow_command+flags.valid_boot 000134 00 000514 001532 000135 0a 003223 000055 000136 aa 400002 000000 198 199 request save, 200 bce_save$bce_save, 201 (), 202 (Save Physical Volumes to BCE Save Tapes.), 203 flags.allow_command+flags.valid_boot 000137 00 000517 001543 000140 0a 003237 000050 000141 aa 400002 000000 204 205 request set_flagbox, 206 bce_set_flagbox$bce_set_flagbox, 207 (sfb), 208 (Set the value of a flagbox variable.), 209 flags.allow_both+flags.valid_all 000142 00 000522 001554 000143 0a 003251 000044 000144 aa 600007 000000 210 211 request severity, 212 bce_severity$bce_severity, 213 (), 214 (Returns the severity or completeness of a bce request.), 215 flags.allow_both+flags.valid_all 000145 00 000525 001575 000146 0a 003262 000066 000147 aa 600007 000000 216 217 request shutdown_state, 218 bce_shutdown_state$bce_shutdown_state, 219 (sds), 220 (Returns the shutdown state of the storage system.), 221 flags.allow_both+flags.valid_all 000150 00 000530 001606 000151 0a 003300 000061 000152 aa 600007 000000 222 223 224 request test_disk, 225 bce_test_disk$bce_test_disk, 226 (td), 227 (Test disk by reading and/or writing pages.), 228 flags.allow_command+flags.valid_all 000153 00 000533 001627 000154 0a 003315 000052 000155 aa 400007 000000 229 230 request unlock_mca, 231 bce_lock_mca$bce_unlock_mca, 232 (), 233 (Enable MCA input through console.), 234 flags.allow_command+flags.valid_boot+flags.valid_crash 000156 00 000536 001650 000157 0a 003330 000041 000160 aa 400003 000000 235 236 request query,bce_query_af$bce_query_af,(),(),flags.allow_both+flags.dont_list+flags.valid_all 000161 00 000541 001661 000162 aa 000000 000000 000163 aa 610007 000000 237 request response,bce_response_af$bce_response_af,(),(),flags.allow_both+flags.dont_list+flags.valid_all 000164 00 000544 001672 000165 aa 000000 000000 000166 aa 610007 000000 238 239 multics_request after,(af),(),substr$after,flags.allow_both+flags.dont_list+flags.valid_all 000167 00 000547 001703 000000 000170 0a 003341 000000 000171 aa 650007 000000 240 multics_request and,(),(),equal$and,flags.allow_both+flags.dont_list+flags.valid_all 000172 00 000552 001724 000000 000173 0a 003341 000000 000174 aa 650007 000000 241 multics_request before,(be),(),substr$before,flags.allow_both+flags.dont_list+flags.valid_all 000175 00 000555 001735 000000 000176 0a 003341 000000 000177 aa 650007 000000 242 multics_request bool,(),(),substr$bool,flags.allow_both+flags.dont_list+flags.valid_all 000200 00 000560 001756 000000 000201 0a 003341 000000 000202 aa 650007 000000 243 multics_request ceil,(),(),plus$ceil,flags.allow_both+flags.dont_list+flags.valid_all 000203 00 000563 001767 000000 000204 0a 003341 000000 000205 aa 650007 000000 244 multics_request collate,(),(),substr$collate,flags.allow_both+flags.dont_list+flags.valid_all 000206 00 000566 002000 000000 000207 0a 003341 000000 000210 aa 650007 000000 245 multics_request collate9,(),(),substr$collate9,flags.allow_both+flags.dont_list+flags.valid_all 000211 00 000571 002011 000000 000212 0a 003341 000000 000213 aa 650007 000000 246 multics_request copy_characters,(cpch),(),substr$copy_characters,flags.allow_both+flags.dont_list+flags.valid_all 000214 00 000574 002022 000000 000215 0a 003341 000000 000216 aa 650007 000000 247 multics_request decat,(),(),substr$decat,flags.allow_both+flags.dont_list+flags.valid_all 000217 00 000577 002043 000000 000220 0a 003341 000000 000221 aa 650007 000000 248 multics_request divide,(),(),plus$divide,flags.allow_both+flags.dont_list+flags.valid_all 000222 00 000602 002054 000000 000223 0a 003341 000000 000224 aa 650007 000000 249 multics_request equal,(),(),equal$equal,flags.allow_both+flags.dont_list+flags.valid_all 000225 00 000605 002065 000000 000226 0a 003341 000000 000227 aa 650007 000000 250 multics_request floor,(),(),plus$floor,flags.allow_both+flags.dont_list+flags.valid_all 000230 00 000610 002076 000000 000231 0a 003341 000000 000232 aa 650007 000000 251 multics_request greater,(),(),equal$greater,flags.allow_both+flags.dont_list+flags.valid_all 000233 00 000613 002107 000000 000234 0a 003341 000000 000235 aa 650007 000000 252 multics_request high,(),(),substr$high,flags.allow_both+flags.dont_list+flags.valid_all 000236 00 000616 002120 000000 000237 0a 003341 000000 000240 aa 650007 000000 253 multics_request high9,(),(),substr$high9,flags.allow_both+flags.dont_list+flags.valid_all 000241 00 000621 002131 000000 000242 0a 003341 000000 000243 aa 650007 000000 254 multics_request index,(),(),substr$index,flags.allow_both+flags.dont_list+flags.valid_all 000244 00 000624 002142 000000 000245 0a 003341 000000 000246 aa 650007 000000 255 multics_request length,(ln),(),substr$length,flags.allow_both+flags.dont_list+flags.valid_all 000247 00 000627 002153 000000 000250 0a 003341 000000 000251 aa 650007 000000 256 multics_request less,(),(),equal$less,flags.allow_both+flags.dont_list+flags.valid_all 000252 00 000632 002174 000000 000253 0a 003341 000000 000254 aa 650007 000000 257 multics_request low,(),(),substr$low,flags.allow_both+flags.dont_list+flags.valid_all 000255 00 000635 002205 000000 000256 0a 003341 000000 000257 aa 650007 000000 258 multics_request lower_case,(lowercase),(),substr$lower_case,flags.allow_both+flags.dont_list+flags.valid_all 000260 00 000640 002216 000000 000261 0a 003341 000000 000262 aa 650007 000000 259 multics_request ltrim,(),(),substr$ltrim,flags.allow_both+flags.dont_list+flags.valid_all 000263 00 000643 002237 000000 000264 0a 003341 000000 000265 aa 650007 000000 260 multics_request max,(),(),plus$max,flags.allow_both+flags.dont_list+flags.valid_all 000266 00 000646 002250 000000 000267 0a 003341 000000 000270 aa 650007 000000 261 multics_request min,(),(),plus$min,flags.allow_both+flags.dont_list+flags.valid_all 000271 00 000651 002261 000000 000272 0a 003341 000000 000273 aa 650007 000000 262 multics_request minus,(),(),plus$minus,flags.allow_both+flags.dont_list+flags.valid_all 000274 00 000654 002272 000000 000275 0a 003341 000000 000276 aa 650007 000000 263 multics_request mod,(),(),plus$mod,flags.allow_both+flags.dont_list+flags.valid_all 000277 00 000657 002303 000000 000300 0a 003341 000000 000301 aa 650007 000000 264 multics_request nequal,(),(),equal$nequal,flags.allow_both+flags.dont_list+flags.valid_all 000302 00 000662 002314 000000 000303 0a 003341 000000 000304 aa 650007 000000 265 multics_request ngreater,(),(),equal$ngreater,flags.allow_both+flags.dont_list+flags.valid_all 000305 00 000665 002325 000000 000306 0a 003341 000000 000307 aa 650007 000000 266 multics_request nless,(),(),equal$nless,flags.allow_both+flags.dont_list+flags.valid_all 000310 00 000670 002336 000000 000311 0a 003341 000000 000312 aa 650007 000000 267 multics_request not,(),(),equal$not,flags.allow_both+flags.dont_list+flags.valid_all 000313 00 000673 002347 000000 000314 0a 003341 000000 000315 aa 650007 000000 268 multics_request or,(),(),equal$or,flags.allow_both+flags.dont_list+flags.valid_all 000316 00 000676 002360 000000 000317 0a 003341 000000 000320 aa 650007 000000 269 multics_request plus,(),(),plus$plus,flags.allow_both+flags.dont_list+flags.valid_all 000321 00 000701 002371 000000 000322 0a 003341 000000 000323 aa 650007 000000 270 multics_request quotient,(),(),plus$quotient,flags.allow_both+flags.dont_list+flags.valid_all 000324 00 000704 002402 000000 000325 0a 003341 000000 000326 aa 650007 000000 271 multics_request reverse,(rv),(),substr$reverse,flags.allow_both+flags.dont_list+flags.valid_all 000327 00 000707 002413 000000 000330 0a 003341 000000 000331 aa 650007 000000 272 multics_request reverse_after,(rvaf),(),substr$reverse_after,flags.allow_both+flags.dont_list+flags.valid_all 000332 00 000712 002434 000000 000333 0a 003341 000000 000334 aa 650007 000000 273 multics_request reverse_before,(rvbe),(),substr$reverse_before,flags.allow_both+flags.dont_list+flags.valid_all 000335 00 000715 002455 000000 000336 0a 003341 000000 000337 aa 650007 000000 274 multics_request reverse_decat,(rvdecat),(),substr$reverse_decat,flags.allow_both+flags.dont_list+flags.valid_all 000340 00 000720 002476 000000 000341 0a 003341 000000 000342 aa 650007 000000 275 multics_request reverse_index,(rvindex),(),substr$reverse_index,flags.allow_both+flags.dont_list+flags.valid_all 000343 00 000723 002517 000000 000344 0a 003341 000000 000345 aa 650007 000000 276 multics_request reverse_search,(rvsrh),(),substr$reverse_search,flags.allow_both+flags.dont_list+flags.valid_all 000346 00 000726 002540 000000 000347 0a 003341 000000 000350 aa 650007 000000 277 multics_request reverse_verify,(rvverify),(),substr$reverse_verify,flags.allow_both+flags.dont_list+flags.valid_all 000351 00 000731 002561 000000 000352 0a 003341 000000 000353 aa 650007 000000 278 multics_request rtrim,(),(),substr$rtrim,flags.allow_both+flags.dont_list+flags.valid_all 000354 00 000734 002602 000000 000355 0a 003341 000000 000356 aa 650007 000000 279 multics_request search,(srh),(),substr$search,flags.allow_both+flags.dont_list+flags.valid_all 000357 00 000737 002613 000000 000360 0a 003341 000000 000361 aa 650007 000000 280 multics_request substr,(),(),substr$substr,flags.allow_both+flags.dont_list+flags.valid_all 000362 00 000742 002634 000000 000363 0a 003341 000000 000364 aa 650007 000000 281 multics_request times,(),(),plus$times,flags.allow_both+flags.dont_list+flags.valid_all 000365 00 000745 002645 000000 000366 0a 003341 000000 000367 aa 650007 000000 282 multics_request trunc,(),(),plus$trunc,flags.allow_both+flags.dont_list+flags.valid_all 000370 00 000750 002656 000000 000371 0a 003341 000000 000372 aa 650007 000000 283 multics_request upper_case,(uppercase),(),substr$upper_case,flags.allow_both+flags.dont_list+flags.valid_all 000373 00 000753 002667 000000 000374 0a 003341 000000 000375 aa 650007 000000 284 multics_request verify,(),(),substr$verify,flags.allow_both+flags.dont_list+flags.valid_all 000376 00 000756 002710 000000 000377 0a 003341 000000 000400 aa 650007 000000 285 286 end_table bce_request_table_ 287 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 003342 5a 000003 000000 003343 5a 000032 600000 003344 aa 000000 000000 003345 55 000013 000002 003346 5a 000002 400003 003347 55 000006 000013 003350 aa 022 142 143 145 003351 aa 137 162 145 161 003352 aa 165 145 163 164 003353 aa 137 164 141 142 003354 aa 154 145 137 000 003355 55 000023 000003 003356 0a 000000 400000 003357 55 000016 000003 003360 aa 022 142 143 145 bce_request_table_ 003361 aa 137 162 145 161 003362 aa 165 145 163 164 003363 aa 137 164 141 142 003364 aa 154 145 137 000 003365 55 000002 000013 003366 6a 000000 400002 003367 55 000026 000003 003370 aa 014 163 171 155 symbol_table 003371 aa 142 157 154 137 003372 aa 164 141 142 154 003373 aa 145 000 000 000 DEFINITIONS HASH TABLE 003374 aa 000000 000015 003375 aa 000000 000000 003376 aa 000000 000000 003377 aa 000000 000000 003400 aa 000000 000000 003401 aa 000000 000000 003402 5a 000013 000000 003403 5a 000023 000000 003404 aa 000000 000000 003405 aa 000000 000000 003406 aa 000000 000000 003407 aa 000000 000000 003410 aa 000000 000000 003411 aa 000000 000000 EXTERNAL NAMES 003412 aa 006 166 145 162 verify 003413 aa 151 146 171 000 003414 aa 012 165 160 160 upper_case 003415 aa 145 162 137 143 003416 aa 141 163 145 000 003417 aa 005 164 162 165 trunc 003420 aa 156 143 000 000 003421 aa 005 164 151 155 times 003422 aa 145 163 000 000 003423 aa 006 163 145 141 search 003424 aa 162 143 150 000 003425 aa 005 162 164 162 rtrim 003426 aa 151 155 000 000 003427 aa 016 162 145 166 reverse_verify 003430 aa 145 162 163 145 003431 aa 137 166 145 162 003432 aa 151 146 171 000 003433 aa 016 162 145 166 reverse_search 003434 aa 145 162 163 145 003435 aa 137 163 145 141 003436 aa 162 143 150 000 003437 aa 015 162 145 166 reverse_index 003440 aa 145 162 163 145 003441 aa 137 151 156 144 003442 aa 145 170 000 000 003443 aa 015 162 145 166 reverse_decat 003444 aa 145 162 163 145 003445 aa 137 144 145 143 003446 aa 141 164 000 000 003447 aa 016 162 145 166 reverse_before 003450 aa 145 162 163 145 003451 aa 137 142 145 146 003452 aa 157 162 145 000 003453 aa 015 162 145 166 reverse_after 003454 aa 145 162 163 145 003455 aa 137 141 146 164 003456 aa 145 162 000 000 003457 aa 007 162 145 166 reverse 003460 aa 145 162 163 145 003461 aa 010 161 165 157 quotient 003462 aa 164 151 145 156 003463 aa 164 000 000 000 003464 aa 002 157 162 000 or 003465 aa 003 156 157 164 not 003466 aa 005 156 154 145 nless 003467 aa 163 163 000 000 003470 aa 010 156 147 162 ngreater 003471 aa 145 141 164 145 003472 aa 162 000 000 000 003473 aa 006 156 145 161 nequal 003474 aa 165 141 154 000 003475 aa 003 155 157 144 mod 003476 aa 005 155 151 156 minus 003477 aa 165 163 000 000 003500 aa 003 155 151 156 min 003501 aa 003 155 141 170 max 003502 aa 005 154 164 162 ltrim 003503 aa 151 155 000 000 003504 aa 012 154 157 167 lower_case 003505 aa 145 162 137 143 003506 aa 141 163 145 000 003507 aa 003 154 157 167 low 003510 aa 004 154 145 163 less 003511 aa 163 000 000 000 003512 aa 006 154 145 156 length 003513 aa 147 164 150 000 003514 aa 005 151 156 144 index 003515 aa 145 170 000 000 003516 aa 005 150 151 147 high9 003517 aa 150 071 000 000 003520 aa 004 150 151 147 high 003521 aa 150 000 000 000 003522 aa 007 147 162 145 greater 003523 aa 141 164 145 162 003524 aa 005 146 154 157 floor 003525 aa 157 162 000 000 003526 aa 006 144 151 166 divide 003527 aa 151 144 145 000 003530 aa 005 144 145 143 decat 003531 aa 141 164 000 000 003532 aa 017 143 157 160 copy_characters 003533 aa 171 137 143 150 003534 aa 141 162 141 143 003535 aa 164 145 162 163 003536 aa 010 143 157 154 collate9 003537 aa 154 141 164 145 003540 aa 071 000 000 000 003541 aa 007 143 157 154 collate 003542 aa 154 141 164 145 003543 aa 004 143 145 151 ceil 003544 aa 154 000 000 000 003545 aa 004 160 154 165 plus 003546 aa 163 000 000 000 003547 aa 004 142 157 157 bool 003550 aa 154 000 000 000 003551 aa 006 142 145 146 before 003552 aa 157 162 145 000 003553 aa 003 141 156 144 and 003554 aa 005 145 161 165 equal 003555 aa 141 154 000 000 003556 aa 005 141 146 164 after 003557 aa 145 162 000 000 003560 aa 006 163 165 142 substr 003561 aa 163 164 162 000 003562 aa 017 142 143 145 bce_response_af 003563 aa 137 162 145 163 003564 aa 160 157 156 163 003565 aa 145 137 141 146 003566 aa 014 142 143 145 bce_query_af 003567 aa 137 161 165 145 003570 aa 162 171 137 141 003571 aa 146 000 000 000 003572 aa 016 142 143 145 bce_unlock_mca 003573 aa 137 165 156 154 003574 aa 157 143 153 137 003575 aa 155 143 141 000 003576 aa 015 142 143 145 bce_test_disk 003577 aa 137 164 145 163 003600 aa 164 137 144 151 003601 aa 163 153 000 000 003602 aa 022 142 143 145 bce_shutdown_state 003603 aa 137 163 150 165 003604 aa 164 144 157 167 003605 aa 156 137 163 164 003606 aa 141 164 145 000 003607 aa 014 142 143 145 bce_severity 003610 aa 137 163 145 166 003611 aa 145 162 151 164 003612 aa 171 000 000 000 003613 aa 017 142 143 145 bce_set_flagbox 003614 aa 137 163 145 164 003615 aa 137 146 154 141 003616 aa 147 142 157 170 003617 aa 013 142 143 145 bce_restore 003620 aa 137 162 145 163 003621 aa 164 157 162 145 003622 aa 010 142 143 145 bce_save 003623 aa 137 163 141 166 003624 aa 145 000 000 000 003625 aa 006 162 145 156 rename 003626 aa 141 155 145 000 003627 aa 014 162 145 151 reinitialize 003630 aa 156 151 164 151 003631 aa 141 154 151 172 003632 aa 145 000 000 000 003633 aa 015 142 157 157 bootload_qedx 003634 aa 164 154 157 141 003635 aa 144 137 161 145 003636 aa 144 170 000 000 003637 aa 011 142 143 145 bce_probe 003640 aa 137 160 162 157 003641 aa 142 145 000 000 003642 aa 005 160 162 151 print 003643 aa 156 164 000 000 003644 aa 014 142 143 145 bce_lock_mca 003645 aa 137 154 157 143 003646 aa 153 137 155 143 003647 aa 141 000 000 000 003650 aa 022 142 143 145 bce_list_requests_ 003651 aa 137 154 151 163 003652 aa 164 137 162 145 003653 aa 161 165 145 163 003654 aa 164 163 137 000 003655 aa 004 154 151 163 list 003656 aa 164 000 000 000 003657 aa 004 151 156 151 init 003660 aa 164 000 000 000 003661 aa 017 142 143 145 bce_get_flagbox 003662 aa 137 147 145 164 003663 aa 137 146 154 141 003664 aa 147 142 157 170 003665 aa 012 142 143 145 bce_fwload 003666 aa 137 146 167 154 003667 aa 157 141 144 000 003670 aa 015 142 143 145 bce_exec_com_ 003671 aa 137 145 170 145 003672 aa 143 137 143 157 003673 aa 155 137 000 000 003674 aa 007 142 143 145 bce_esd 003675 aa 137 145 163 144 003676 aa 010 142 143 145 bce_dump 003677 aa 137 144 165 155 003700 aa 160 000 000 000 003701 aa 026 142 143 145 bce_display_disk_label 003702 aa 137 144 151 163 003703 aa 160 154 141 171 003704 aa 137 144 151 163 003705 aa 153 137 154 141 003706 aa 142 145 154 000 003707 aa 007 142 143 145 bce_die 003710 aa 137 144 151 145 003711 aa 006 144 145 154 delete 003712 aa 145 164 145 000 003713 aa 021 142 157 157 bootload_fs_cmds_ 003714 aa 164 154 157 141 003715 aa 144 137 146 163 003716 aa 137 143 155 144 003717 aa 163 137 000 000 003720 aa 015 142 143 145 bce_copy_disk 003721 aa 137 143 157 160 003722 aa 171 137 144 151 003723 aa 163 153 000 000 003724 aa 014 142 143 145 bce_continue 003725 aa 137 143 157 156 003726 aa 164 151 156 165 003727 aa 145 000 000 000 003730 aa 021 143 157 156 config_deck_edit_ 003731 aa 146 151 147 137 003732 aa 144 145 143 153 003733 aa 137 145 144 151 003734 aa 164 137 000 000 003735 aa 007 142 143 145 bce_bos 003736 aa 137 142 157 163 003737 aa 004 142 157 157 boot 003740 aa 164 000 000 000 003741 aa 011 142 143 145 bce_state 003742 aa 137 163 164 141 003743 aa 164 145 000 000 003744 aa 003 142 143 145 bce 003745 aa 030 142 143 145 bce_get_to_command_level 003746 aa 137 147 145 164 003747 aa 137 164 157 137 003750 aa 143 157 155 155 003751 aa 141 156 144 137 003752 aa 154 145 166 145 003753 aa 154 000 000 000 003754 aa 011 142 143 145 bce_alert 003755 aa 137 141 154 145 003756 aa 162 164 000 000 NO TRAP POINTER WORDS TYPE PAIR BLOCKS 003757 aa 000004 000000 003760 55 000216 000050 003761 aa 000004 000000 003762 55 000216 000052 003763 aa 000004 000000 003764 55 000203 000055 003765 aa 000004 000000 003766 55 000203 000057 003767 aa 000004 000000 003770 55 000216 000216 003771 aa 000004 000000 003772 55 000216 000061 003773 aa 000004 000000 003774 55 000216 000063 003775 aa 000004 000000 003776 55 000216 000065 003777 aa 000004 000000 004000 55 000216 000071 004001 aa 000004 000000 004002 55 000216 000075 004003 aa 000004 000000 004004 55 000216 000101 004005 aa 000004 000000 004006 55 000216 000105 004007 aa 000004 000000 004010 55 000216 000111 004011 aa 000004 000000 004012 55 000216 000115 004013 aa 000004 000000 004014 55 000203 000117 004015 aa 000004 000000 004016 55 000203 000203 004017 aa 000004 000000 004020 55 000212 000122 004021 aa 000004 000000 004022 55 000212 000123 004023 aa 000004 000000 004024 55 000212 000124 004025 aa 000004 000000 004026 55 000212 000126 004027 aa 000004 000000 004030 55 000212 000131 004031 aa 000004 000000 004032 55 000203 000133 004033 aa 000004 000000 004034 55 000203 000134 004035 aa 000004 000000 004036 55 000203 000136 004037 aa 000004 000000 004040 55 000203 000137 004041 aa 000004 000000 004042 55 000216 000140 004043 aa 000004 000000 004044 55 000216 000142 004045 aa 000004 000000 004046 55 000216 000145 004047 aa 000004 000000 004050 55 000212 000146 004051 aa 000004 000000 004052 55 000216 000150 004053 aa 000004 000000 004054 55 000216 000152 004055 aa 000004 000000 004056 55 000216 000154 004057 aa 000004 000000 004060 55 000216 000156 004061 aa 000004 000000 004062 55 000212 000160 004063 aa 000004 000000 004064 55 000203 000162 004065 aa 000004 000000 004066 55 000212 000212 004067 aa 000004 000000 004070 55 000203 000164 004071 aa 000004 000000 004072 55 000216 000166 004073 aa 000004 000000 004074 55 000216 000170 004075 aa 000004 000000 004076 55 000216 000174 004077 aa 000004 000000 004100 55 000216 000177 004101 aa 000004 000000 004102 55 000203 000201 004103 aa 000004 000000 004104 55 000216 000205 004105 aa 000004 000000 004106 55 000216 000207 004107 aa 000004 000000 004110 55 000212 000211 004111 aa 000004 000000 004112 55 000216 000214 004113 aa 000004 000000 004114 55 000220 000220 004115 aa 000004 000000 004116 55 000224 000224 004117 aa 000004 000000 004120 55 000302 000230 004121 aa 000004 000000 004122 55 000234 000234 004123 aa 000004 000000 004124 55 000240 000240 004125 aa 000004 000000 004126 55 000245 000245 004127 aa 000004 000000 004130 55 000251 000251 004131 aa 000004 000000 004132 55 000260 000260 004133 aa 000004 000000 004134 55 000260 000255 004135 aa 000004 000000 004136 55 000351 000263 004137 aa 000004 000000 004140 55 000403 000265 004141 aa 000004 000000 004142 55 000271 000271 004143 aa 000004 000000 004144 55 000275 000275 004145 aa 000004 000000 004146 55 000351 000300 004147 aa 000004 000000 004150 55 000302 000302 004151 aa 000004 000000 004152 55 000306 000306 004153 aa 000004 000000 004154 55 000351 000313 004155 aa 000004 000000 004156 55 000351 000315 004157 aa 000004 000000 004160 55 000317 000317 004161 aa 000004 000000 004162 55 000323 000323 004163 aa 000004 000000 004164 55 000326 000326 004165 aa 000004 000000 004166 55 000332 000332 004167 aa 000004 000000 004170 55 000334 000334 004171 aa 000004 000000 004172 55 000337 000337 004173 aa 000004 000000 004174 55 000345 000345 004175 aa 000004 000000 004176 55 000351 000347 004177 aa 000004 000000 004200 55 000356 000356 004201 aa 000004 000000 004202 55 000362 000362 004203 aa 000004 000000 004204 55 000366 000366 004205 aa 000004 000000 004206 55 000373 000373 004207 aa 000004 000000 004210 55 000403 000375 004211 aa 000004 000000 004212 55 000377 000377 004213 aa 000004 000000 004214 55 000403 000402 004215 aa 000004 000000 004216 55 000412 000412 004217 aa 000001 000000 004220 aa 000000 000000 INTERNAL EXPRESSION WORDS 004221 5a 000415 000000 004222 5a 000417 000000 004223 5a 000421 000000 004224 5a 000423 000000 004225 5a 000425 000000 004226 5a 000427 000000 004227 5a 000431 000000 004230 5a 000433 000000 004231 5a 000435 000000 004232 5a 000437 000000 004233 5a 000441 000000 004234 5a 000443 000000 004235 5a 000445 000000 004236 5a 000447 000000 004237 5a 000451 000000 004240 5a 000453 000000 004241 5a 000455 000000 004242 5a 000457 000000 004243 5a 000461 000000 004244 5a 000463 000000 004245 5a 000465 000000 004246 5a 000467 000000 004247 5a 000471 000000 004250 5a 000473 000000 004251 5a 000475 000000 004252 5a 000477 000000 004253 5a 000501 000000 004254 5a 000503 000000 004255 5a 000505 000000 004256 5a 000507 000000 004257 5a 000511 000000 004260 5a 000513 000000 004261 5a 000515 000000 004262 5a 000517 000000 004263 5a 000521 000000 004264 5a 000523 000000 004265 5a 000525 000000 004266 5a 000527 000000 004267 5a 000531 000000 004270 5a 000533 000000 004271 5a 000535 000000 004272 5a 000537 000000 004273 5a 000541 000000 004274 5a 000543 000000 004275 5a 000545 000000 004276 5a 000547 000000 004277 5a 000551 000000 004300 5a 000553 000000 004301 5a 000555 000000 004302 5a 000557 000000 004303 5a 000561 000000 004304 5a 000563 000000 004305 5a 000565 000000 004306 5a 000567 000000 004307 5a 000571 000000 004310 5a 000573 000000 004311 5a 000575 000000 004312 5a 000577 000000 004313 5a 000601 000000 004314 5a 000603 000000 004315 5a 000605 000000 004316 5a 000607 000000 004317 5a 000611 000000 004320 5a 000613 000000 004321 5a 000615 000000 004322 5a 000617 000000 004323 5a 000621 000000 004324 5a 000623 000000 004325 5a 000625 000000 004326 5a 000627 000000 004327 5a 000631 000000 004330 5a 000633 000000 004331 5a 000635 000000 004332 5a 000637 000000 004333 5a 000641 000000 004334 5a 000643 000000 004335 5a 000645 000000 004336 5a 000647 000000 004337 5a 000651 000000 004340 5a 000653 000000 004341 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 0a 003342 000000 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000010 000250 000007 a2 000000 000000 000010 9a 777770 0000 46 bce_alert|bce_alert 000011 5a 000776 0000 00 000012 9a 777766 0000 46 bce_get_to_command_level|bce 000013 5a 000775 0000 00 000014 9a 777764 0000 46 bce_state|bce_state 000015 5a 000774 0000 00 000016 9a 777762 0000 46 bce_get_to_command_level|boot 000017 5a 000773 0000 00 000020 9a 777760 0000 46 bce_bos|bce_bos 000021 5a 000772 0000 00 000022 9a 777756 0000 46 config_deck_edit_|config_deck_edit_ 000023 5a 000771 0000 00 000024 9a 777754 0000 46 bce_continue|bce_continue 000025 5a 000770 0000 00 000026 9a 777752 0000 46 bce_copy_disk|bce_copy_disk 000027 5a 000767 0000 00 000030 9a 777750 0000 46 bootload_fs_cmds_|delete 000031 5a 000766 0000 00 000032 9a 777746 0000 46 bce_die|bce_die 000033 5a 000765 0000 00 000034 9a 777744 0000 46 bce_display_disk_label|bce_display_disk_label 000035 5a 000764 0000 00 000036 9a 777742 0000 46 bce_dump|bce_dump 000037 5a 000763 0000 00 000040 9a 777740 0000 46 bce_esd|bce_esd 000041 5a 000762 0000 00 000042 9a 777736 0000 46 bce_exec_com_|bce_exec_com_ 000043 5a 000761 0000 00 000044 9a 777734 0000 46 bce_fwload|bce_fwload 000045 5a 000760 0000 00 000046 9a 777732 0000 46 bce_get_flagbox|bce_get_flagbox 000047 5a 000757 0000 00 000050 9a 777730 0000 46 bootload_fs_cmds_|init 000051 5a 000756 0000 00 000052 9a 777726 0000 46 bootload_fs_cmds_|list 000053 5a 000755 0000 00 000054 9a 777724 0000 46 bce_list_requests_|bce_list_requests_ 000055 5a 000754 0000 00 000056 9a 777722 0000 46 bce_lock_mca|bce_lock_mca 000057 5a 000753 0000 00 000060 9a 777720 0000 46 bootload_fs_cmds_|print 000061 5a 000752 0000 00 000062 9a 777716 0000 46 bce_probe|bce_probe 000063 5a 000751 0000 00 000064 9a 777714 0000 46 bootload_qedx|bootload_qedx 000065 5a 000750 0000 00 000066 9a 777712 0000 46 bce_get_to_command_level|reinitialize 000067 5a 000747 0000 00 000070 9a 777710 0000 46 bootload_fs_cmds_|rename 000071 5a 000746 0000 00 000072 9a 777706 0000 46 bce_save|bce_restore 000073 5a 000745 0000 00 000074 9a 777704 0000 46 bce_save|bce_save 000075 5a 000744 0000 00 000076 9a 777702 0000 46 bce_set_flagbox|bce_set_flagbox 000077 5a 000743 0000 00 000100 9a 777700 0000 46 bce_severity|bce_severity 000101 5a 000742 0000 00 000102 9a 777676 0000 46 bce_shutdown_state|bce_shutdown_state 000103 5a 000741 0000 00 000104 9a 777674 0000 46 bce_test_disk|bce_test_disk 000105 5a 000740 0000 00 000106 9a 777672 0000 46 bce_lock_mca|bce_unlock_mca 000107 5a 000737 0000 00 000110 9a 777670 0000 46 bce_query_af|bce_query_af 000111 5a 000736 0000 00 000112 9a 777666 0000 46 bce_response_af|bce_response_af 000113 5a 000735 0000 00 000114 9a 777664 0000 46 substr|after 000115 5a 000734 0000 00 000116 9a 777662 0000 46 equal|and 000117 5a 000733 0000 00 000120 9a 777660 0000 46 substr|before 000121 5a 000732 0000 00 000122 9a 777656 0000 46 substr|bool 000123 5a 000731 0000 00 000124 9a 777654 0000 46 plus|ceil 000125 5a 000730 0000 00 000126 9a 777652 0000 46 substr|collate 000127 5a 000727 0000 00 000130 9a 777650 0000 46 substr|collate9 000131 5a 000726 0000 00 000132 9a 777646 0000 46 substr|copy_characters 000133 5a 000725 0000 00 000134 9a 777644 0000 46 substr|decat 000135 5a 000724 0000 00 000136 9a 777642 0000 46 plus|divide 000137 5a 000723 0000 00 000140 9a 777640 0000 46 equal|equal 000141 5a 000722 0000 00 000142 9a 777636 0000 46 plus|floor 000143 5a 000721 0000 00 000144 9a 777634 0000 46 equal|greater 000145 5a 000720 0000 00 000146 9a 777632 0000 46 substr|high 000147 5a 000717 0000 00 000150 9a 777630 0000 46 substr|high9 000151 5a 000716 0000 00 000152 9a 777626 0000 46 substr|index 000153 5a 000715 0000 00 000154 9a 777624 0000 46 substr|length 000155 5a 000714 0000 00 000156 9a 777622 0000 46 equal|less 000157 5a 000713 0000 00 000160 9a 777620 0000 46 substr|low 000161 5a 000712 0000 00 000162 9a 777616 0000 46 substr|lower_case 000163 5a 000711 0000 00 000164 9a 777614 0000 46 substr|ltrim 000165 5a 000710 0000 00 000166 9a 777612 0000 46 plus|max 000167 5a 000707 0000 00 000170 9a 777610 0000 46 plus|min 000171 5a 000706 0000 00 000172 9a 777606 0000 46 plus|minus 000173 5a 000705 0000 00 000174 9a 777604 0000 46 plus|mod 000175 5a 000704 0000 00 000176 9a 777602 0000 46 equal|nequal 000177 5a 000703 0000 00 000200 9a 777600 0000 46 equal|ngreater 000201 5a 000702 0000 00 000202 9a 777576 0000 46 equal|nless 000203 5a 000701 0000 00 000204 9a 777574 0000 46 equal|not 000205 5a 000700 0000 00 000206 9a 777572 0000 46 equal|or 000207 5a 000677 0000 00 000210 9a 777570 0000 46 plus|plus 000211 5a 000676 0000 00 000212 9a 777566 0000 46 plus|quotient 000213 5a 000675 0000 00 000214 9a 777564 0000 46 substr|reverse 000215 5a 000674 0000 00 000216 9a 777562 0000 46 substr|reverse_after 000217 5a 000673 0000 00 000220 9a 777560 0000 46 substr|reverse_before 000221 5a 000672 0000 00 000222 9a 777556 0000 46 substr|reverse_decat 000223 5a 000671 0000 00 000224 9a 777554 0000 46 substr|reverse_index 000225 5a 000670 0000 00 000226 9a 777552 0000 46 substr|reverse_search 000227 5a 000667 0000 00 000230 9a 777550 0000 46 substr|reverse_verify 000231 5a 000666 0000 00 000232 9a 777546 0000 46 substr|rtrim 000233 5a 000665 0000 00 000234 9a 777544 0000 46 substr|search 000235 5a 000664 0000 00 000236 9a 777542 0000 46 substr|substr 000237 5a 000663 0000 00 000240 9a 777540 0000 46 plus|times 000241 5a 000662 0000 00 000242 9a 777536 0000 46 plus|trunc 000243 5a 000661 0000 00 000244 9a 777534 0000 46 substr|upper_case 000245 5a 000660 0000 00 000246 9a 777532 0000 46 substr|verify 000247 5a 000657 0000 00 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000010 000004 aa 000000 117244 000005 aa 361023 525721 000006 aa 000000 117547 000007 aa 257175 270177 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 000526 000020 aa 000000 000143 000021 aa 000422 000364 000022 aa 000516 000143 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 070056 061064 000030 aa 040115 141162 000031 aa 143150 040061 000032 aa 071070 071040 000033 aa 040040 040040 000034 aa 110151 162156 000035 aa 145151 163145 000036 aa 156056 123171 000037 aa 163115 141151 000040 aa 156164 056141 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 000067 000067 aa 175453 021657 000070 aa 000000 117547 000071 aa 215074 200000 000072 aa 000120 000050 000073 aa 133055 020064 000074 aa 000000 113310 000075 aa 612334 200000 000076 aa 000132 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 076163 160145 >special_ldd>install>MR12.3-1114>bce_request_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 063055 000111 aa 061061 061064 000112 aa 076142 143145 000113 aa 137162 145161 000114 aa 165145 163164 000115 aa 137164 141142 000116 aa 154145 137056 000117 aa 141154 155040 000120 aa 076154 144144 >ldd>include>ssu_request_macros.incl.alm 000121 aa 076151 156143 000122 aa 154165 144145 000123 aa 076163 163165 000124 aa 137162 145161 000125 aa 165145 163164 000126 aa 137155 141143 000127 aa 162157 163056 000130 aa 151156 143154 000131 aa 056141 154155 000132 aa 076154 144144 >ldd>include>stack_header.incl.alm 000133 aa 076151 156143 000134 aa 154165 144145 000135 aa 076163 164141 000136 aa 143153 137150 000137 aa 145141 144145 000140 aa 162056 151156 000141 aa 143154 056141 000142 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number 401 .._00000.call bce_request_table_: 47. 2721 .._00000.info bce_request_table_: 47. 761 .._00000.names bce_request_table_: 47. 404 .._00001.call bce_request_table_: 53. 2733 .._00001.info bce_request_table_: 53. 772 .._00001.names bce_request_table_: 53. 407 .._00002.call bce_request_table_: 59. 2741 .._00002.info bce_request_table_: 59. 1003 .._00002.names bce_request_table_: 59. 412 .._00003.call bce_request_table_: 65. 2751 .._00003.info bce_request_table_: 65. 1024 .._00003.names bce_request_table_: 65. 415 .._00004.call bce_request_table_: 71. 2755 .._00004.info bce_request_table_: 71. 1035 .._00004.names bce_request_table_: 71. 420 .._00005.call bce_request_table_: 77. 2764 .._00005.info bce_request_table_: 77. 1046 .._00005.names bce_request_table_: 77. 423 .._00006.call bce_request_table_: 83. 2774 .._00006.info bce_request_table_: 83. 1067 .._00006.names bce_request_table_: 83. 426 .._00007.call bce_request_table_: 89. 3006 .._00007.info bce_request_table_: 89. 1110 .._00007.names bce_request_table_: 89. 431 .._00010.call bce_request_table_: 95. 3014 .._00010.info bce_request_table_: 95. 1131 .._00010.names bce_request_table_: 95. 434 .._00011.call bce_request_table_: 101. 3022 .._00011.info bce_request_table_: 101. 1152 .._00011.names bce_request_table_: 101. 437 .._00012.call bce_request_table_: 107. 3025 .._00012.info bce_request_table_: 107. 1163 .._00012.names bce_request_table_: 107. 442 .._00013.call bce_request_table_: 113. 3040 .._00013.info bce_request_table_: 113. 1204 .._00013.names bce_request_table_: 113. 445 .._00014.call bce_request_table_: 119. 3054 .._00014.info bce_request_table_: 119. 1215 .._00014.names bce_request_table_: 119. 450 .._00015.call bce_request_table_: 125. 3067 .._00015.info bce_request_table_: 125. 1236 .._00015.names bce_request_table_: 125. 453 .._00016.call bce_request_table_: 131. 3102 .._00016.info bce_request_table_: 131. 1257 .._00016.names bce_request_table_: 131. 456 .._00017.call bce_request_table_: 137. 3111 .._00017.info bce_request_table_: 137. 1300 .._00017.names bce_request_table_: 137. 461 .._00020.call bce_request_table_: 143. 3122 .._00020.info bce_request_table_: 143. 1321 .._00020.names bce_request_table_: 143. 464 .._00021.call bce_request_table_: 149. 3133 .._00021.info bce_request_table_: 149. 1332 .._00021.names bce_request_table_: 149. 467 .._00022.call bce_request_table_: 155. 3140 .._00022.info bce_request_table_: 155. 1353 .._00022.names bce_request_table_: 155. 472 .._00023.call bce_request_table_: 161. 3146 .._00023.info bce_request_table_: 161. 1374 .._00023.names bce_request_table_: 161. 475 .._00024.call bce_request_table_: 167. 3157 .._00024.info bce_request_table_: 167. 1405 .._00024.names bce_request_table_: 167. 500 .._00025.call bce_request_table_: 173. 3165 .._00025.info bce_request_table_: 173. 1426 .._00025.names bce_request_table_: 173. 503 .._00026.call bce_request_table_: 179. 3176 .._00026.info bce_request_table_: 179. 1447 .._00026.names bce_request_table_: 179. 506 .._00027.call bce_request_table_: 185. 3204 .._00027.info bce_request_table_: 185. 1470 .._00027.names bce_request_table_: 185. 511 .._00030.call bce_request_table_: 191. 3215 .._00030.info bce_request_table_: 191. 1511 .._00030.names bce_request_table_: 191. 514 .._00031.call bce_request_table_: 197. 3223 .._00031.info bce_request_table_: 197. 1532 .._00031.names bce_request_table_: 197. 517 .._00032.call bce_request_table_: 203. 3237 .._00032.info bce_request_table_: 203. 1543 .._00032.names bce_request_table_: 203. 522 .._00033.call bce_request_table_: 209. 3251 .._00033.info bce_request_table_: 209. 1554 .._00033.names bce_request_table_: 209. 525 .._00034.call bce_request_table_: 215. 3262 .._00034.info bce_request_table_: 215. 1575 .._00034.names bce_request_table_: 215. 530 .._00035.call bce_request_table_: 221. 3300 .._00035.info bce_request_table_: 221. 1606 .._00035.names bce_request_table_: 221. 533 .._00036.call bce_request_table_: 228. 3315 .._00036.info bce_request_table_: 228. 1627 .._00036.names bce_request_table_: 228. 536 .._00037.call bce_request_table_: 234. 3330 .._00037.info bce_request_table_: 234. 1650 .._00037.names bce_request_table_: 234. 541 .._00040.call bce_request_table_: 236. 1661 .._00040.names bce_request_table_: 236. 544 .._00041.call bce_request_table_: 237. 1672 .._00041.names bce_request_table_: 237. 547 .._00042.call bce_request_table_: 239. 3341 .._00042.info bce_request_table_: 239. 1703 .._00042.names bce_request_table_: 239. 552 .._00043.call bce_request_table_: 240. 3341 .._00043.info bce_request_table_: 240. 1724 .._00043.names bce_request_table_: 240. 555 .._00044.call bce_request_table_: 241. 3341 .._00044.info bce_request_table_: 241. 1735 .._00044.names bce_request_table_: 241. 560 .._00045.call bce_request_table_: 242. 3341 .._00045.info bce_request_table_: 242. 1756 .._00045.names bce_request_table_: 242. 563 .._00046.call bce_request_table_: 243. 3341 .._00046.info bce_request_table_: 243. 1767 .._00046.names bce_request_table_: 243. 566 .._00047.call bce_request_table_: 244. 3341 .._00047.info bce_request_table_: 244. 2000 .._00047.names bce_request_table_: 244. 571 .._00050.call bce_request_table_: 245. 3341 .._00050.info bce_request_table_: 245. 2011 .._00050.names bce_request_table_: 245. 574 .._00051.call bce_request_table_: 246. 3341 .._00051.info bce_request_table_: 246. 2022 .._00051.names bce_request_table_: 246. 577 .._00052.call bce_request_table_: 247. 3341 .._00052.info bce_request_table_: 247. 2043 .._00052.names bce_request_table_: 247. 602 .._00053.call bce_request_table_: 248. 3341 .._00053.info bce_request_table_: 248. 2054 .._00053.names bce_request_table_: 248. 605 .._00054.call bce_request_table_: 249. 3341 .._00054.info bce_request_table_: 249. 2065 .._00054.names bce_request_table_: 249. 610 .._00055.call bce_request_table_: 250. 3341 .._00055.info bce_request_table_: 250. 2076 .._00055.names bce_request_table_: 250. 613 .._00056.call bce_request_table_: 251. 3341 .._00056.info bce_request_table_: 251. 2107 .._00056.names bce_request_table_: 251. 616 .._00057.call bce_request_table_: 252. 3341 .._00057.info bce_request_table_: 252. 2120 .._00057.names bce_request_table_: 252. 621 .._00060.call bce_request_table_: 253. 3341 .._00060.info bce_request_table_: 253. 2131 .._00060.names bce_request_table_: 253. 624 .._00061.call bce_request_table_: 254. 3341 .._00061.info bce_request_table_: 254. 2142 .._00061.names bce_request_table_: 254. 627 .._00062.call bce_request_table_: 255. 3341 .._00062.info bce_request_table_: 255. 2153 .._00062.names bce_request_table_: 255. 632 .._00063.call bce_request_table_: 256. 3341 .._00063.info bce_request_table_: 256. 2174 .._00063.names bce_request_table_: 256. 635 .._00064.call bce_request_table_: 257. 3341 .._00064.info bce_request_table_: 257. 2205 .._00064.names bce_request_table_: 257. 640 .._00065.call bce_request_table_: 258. 3341 .._00065.info bce_request_table_: 258. 2216 .._00065.names bce_request_table_: 258. 643 .._00066.call bce_request_table_: 259. 3341 .._00066.info bce_request_table_: 259. 2237 .._00066.names bce_request_table_: 259. 646 .._00067.call bce_request_table_: 260. 3341 .._00067.info bce_request_table_: 260. 2250 .._00067.names bce_request_table_: 260. 651 .._00070.call bce_request_table_: 261. 3341 .._00070.info bce_request_table_: 261. 2261 .._00070.names bce_request_table_: 261. 654 .._00071.call bce_request_table_: 262. 3341 .._00071.info bce_request_table_: 262. 2272 .._00071.names bce_request_table_: 262. 657 .._00072.call bce_request_table_: 263. 3341 .._00072.info bce_request_table_: 263. 2303 .._00072.names bce_request_table_: 263. 662 .._00073.call bce_request_table_: 264. 3341 .._00073.info bce_request_table_: 264. 2314 .._00073.names bce_request_table_: 264. 665 .._00074.call bce_request_table_: 265. 3341 .._00074.info bce_request_table_: 265. 2325 .._00074.names bce_request_table_: 265. 670 .._00075.call bce_request_table_: 266. 3341 .._00075.info bce_request_table_: 266. 2336 .._00075.names bce_request_table_: 266. 673 .._00076.call bce_request_table_: 267. 3341 .._00076.info bce_request_table_: 267. 2347 .._00076.names bce_request_table_: 267. 676 .._00077.call bce_request_table_: 268. 3341 .._00077.info bce_request_table_: 268. 2360 .._00077.names bce_request_table_: 268. 701 .._00100.call bce_request_table_: 269. 3341 .._00100.info bce_request_table_: 269. 2371 .._00100.names bce_request_table_: 269. 704 .._00101.call bce_request_table_: 270. 3341 .._00101.info bce_request_table_: 270. 2402 .._00101.names bce_request_table_: 270. 707 .._00102.call bce_request_table_: 271. 3341 .._00102.info bce_request_table_: 271. 2413 .._00102.names bce_request_table_: 271. 712 .._00103.call bce_request_table_: 272. 3341 .._00103.info bce_request_table_: 272. 2434 .._00103.names bce_request_table_: 272. 715 .._00104.call bce_request_table_: 273. 3341 .._00104.info bce_request_table_: 273. 2455 .._00104.names bce_request_table_: 273. 720 .._00105.call bce_request_table_: 274. 3341 .._00105.info bce_request_table_: 274. 2476 .._00105.names bce_request_table_: 274. 723 .._00106.call bce_request_table_: 275. 3341 .._00106.info bce_request_table_: 275. 2517 .._00106.names bce_request_table_: 275. 726 .._00107.call bce_request_table_: 276. 3341 .._00107.info bce_request_table_: 276. 2540 .._00107.names bce_request_table_: 276. 731 .._00110.call bce_request_table_: 277. 3341 .._00110.info bce_request_table_: 277. 2561 .._00110.names bce_request_table_: 277. 734 .._00111.call bce_request_table_: 278. 3341 .._00111.info bce_request_table_: 278. 2602 .._00111.names bce_request_table_: 278. 737 .._00112.call bce_request_table_: 279. 3341 .._00112.info bce_request_table_: 279. 2613 .._00112.names bce_request_table_: 279. 742 .._00113.call bce_request_table_: 280. 3341 .._00113.info bce_request_table_: 280. 2634 .._00113.names bce_request_table_: 280. 745 .._00114.call bce_request_table_: 281. 3341 .._00114.info bce_request_table_: 281. 2645 .._00114.names bce_request_table_: 281. 750 .._00115.call bce_request_table_: 282. 3341 .._00115.info bce_request_table_: 282. 2656 .._00115.names bce_request_table_: 282. 753 .._00116.call bce_request_table_: 283. 3341 .._00116.info bce_request_table_: 283. 2667 .._00116.names bce_request_table_: 283. 756 .._00117.call bce_request_table_: 284. 3341 .._00117.info bce_request_table_: 284. 2710 .._00117.names bce_request_table_: 284. 600000 .dft_mrsf bce_request_table_: 35. 0 .dft_mruf bce_request_table_: 35, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284. 400000 .dft_sf bce_request_table_: 35. 0 .dft_uf bce_request_table_: 35, 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237. 0 .multics_doc_lth bce_request_table_: 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284. 40160 .rc bce_request_table_: 35, 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 286. 610007 .sf bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284. 0 .uf bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284. after bce_request_table_: 239. and bce_request_table_: 240. bce bce_request_table_: 53. bce_alert bce_request_table_: 47. bce_bos bce_request_table_: 71. bce_continue bce_request_table_: 83. bce_copy_disk bce_request_table_: 89. bce_die bce_request_table_: 101. bce_display_disk_label bce_request_table_: 107. bce_dump bce_request_table_: 113. bce_esd bce_request_table_: 119. bce_exec_com_ bce_request_table_: 125. bce_fwload bce_request_table_: 131. bce_get_flagbox bce_request_table_: 137. bce_get_to_command_level bce_request_table_: 53, 65, 185. bce_list_requests_ bce_request_table_: 155. bce_lock_mca bce_request_table_: 161, 234. bce_probe bce_request_table_: 173. bce_query_af bce_request_table_: 236. 0 bce_request_table_ bce_request_table_: 35. 120 bce_request_table_.rc bce_request_table_: 35, 286. bce_response_af bce_request_table_: 237. bce_restore bce_request_table_: 197. bce_save bce_request_table_: 197, 203. bce_set_flagbox bce_request_table_: 209. bce_severity bce_request_table_: 215. bce_shutdown_state bce_request_table_: 221. bce_state bce_request_table_: 59. bce_test_disk bce_request_table_: 228. bce_unlock_mca bce_request_table_: 234. before bce_request_table_: 241. bool bce_request_table_: 242. boot bce_request_table_: 65. bootload_fs_cmds_ bce_request_table_: 95, 143, 149, 167, 191. bootload_qedx bce_request_table_: 179. 401 calls bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 311, 314. 1170 call_offset stack_header: 80. ceil bce_request_table_: 243. collate bce_request_table_: 244. collate9 bce_request_table_: 245. config_deck_edit_ bce_request_table_: 77. copy_characters bce_request_table_: 246. decat bce_request_table_: 247. delete bce_request_table_: 95. divide bce_request_table_: 248. 1174 entry_offset stack_header: 84. equal bce_request_table_: 240, 249, 251, 256, 264, 265, 266, 267, 268. 200000 flags.allow_af bce_request_table_: 35, ssu_request_macros: 33. 600000 flags.allow_both bce_request_table_: 59, 125, 137, 209, 215, 221, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 34. 400000 flags.allow_command bce_request_table_: 35, 47, 53, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 131, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 228, 234, ssu_request_macros: 32. 10000 flags.dont_list bce_request_table_: 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 40. 20000 flags.dont_summarize ssu_request_macros: 39. 40000 flags.multics_request bce_request_table_: 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 37. 100000 flags.unimplemented ssu_request_macros: 36. 4000 flags.unknown ssu_request_macros: 42. 7 flags.valid_all bce_request_table_: 40, 47, 59, 71, 77, 89, 95, 101, 107, 113, 125, 137, 143, 149, 155, 167, 173, 179, 191, 209, 215, 221, 228, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284. 2 flags.valid_boot bce_request_table_: 38, 65, 131, 161, 185, 197, 203, 234. 1 flags.valid_crash bce_request_table_: 39, 83, 119, 131, 161, 185, 234. 4 flags.valid_early bce_request_table_: 37, 53. 6 flags.valid_non_crash bce_request_table_: 41. floor bce_request_table_: 250. greater bce_request_table_: 251. high bce_request_table_: 252. high9 bce_request_table_: 253. index bce_request_table_: 254. 2721 info bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 313, 314. init bce_request_table_: 143. length bce_request_table_: 255. less bce_request_table_: 256. list bce_request_table_: 149. low bce_request_table_: 257. lower_case bce_request_table_: 258. ltrim bce_request_table_: 259. max bce_request_table_: 260. min bce_request_table_: 261. minus bce_request_table_: 262. mod bce_request_table_: 263. 761 names bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 312, 314. nequal bce_request_table_: 264. ngreater bce_request_table_: 265. nless bce_request_table_: 266. not bce_request_table_: 267. or bce_request_table_: 268. plus bce_request_table_: 243, 248, 250, 260, 261, 262, 263, 269, 270, 281, 282. print bce_request_table_: 167. 1171 push_offset stack_header: 81. quotient bce_request_table_: 270. reinitialize bce_request_table_: 185. rename bce_request_table_: 191. 1173 return_no_pop_offset stack_header: 83. 1172 return_offset stack_header: 82. reverse bce_request_table_: 271. reverse_after bce_request_table_: 272. reverse_before bce_request_table_: 273. reverse_decat bce_request_table_: 274. reverse_index bce_request_table_: 275. reverse_search bce_request_table_: 276. reverse_verify bce_request_table_: 277. rtrim bce_request_table_: 278. search bce_request_table_: 279. 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 bce_request_table_: 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 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. substr bce_request_table_: 239, 241, 242, 244, 245, 246, 247, 252, 253, 254, 255, 257, 258, 259, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 283, 284. 0 tables bce_request_table_: 35, 47, 53, 59, 65, 71, 77, 83, 89, 95, 101, 107, 113, 119, 125, 131, 137, 143, 149, 155, 161, 167, 173, 179, 185, 191, 197, 203, 209, 215, 221, 228, 234, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, ssu_request_macros: 310, 314. times bce_request_table_: 281. 0 trace_frames.count stack_header: 69. 1 trace_frames.top_ptr stack_header: 70. trunc bce_request_table_: 282. 551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. upper_case bce_request_table_: 283. verify bce_request_table_: 284. 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