Trailing-Edge
-
PDP-10 Archives
-
BB-R775B-BM
-
documentation/define.lis
There are 26 other files named define.lis in the archive.  Click here to see a list.
00001	!++
    00002	!
 00003	!		***** EYE READABLE ERROR FILE FORMATS *****
 00004	!
 00005	!	This file contains the definitions of the TOPS-10 and TOPS-20
    00006	!	error file formats.  It is the master field definition source
    00007	!	for the SPEAR program.  The ITRANS program translates these
 00008	!	eye readable definitions into a BLISS library file for use in
    00009	!	the SPEAR program.
  00010	!
 00011	!--
    00012	
 00013	!++
    00014	! 
00015	! 	  TOPS-10 and TOPS-20 ERROR.SYS RECORD FORMATS
   00016	! 
00017	! 
00018	! 
00019	! DEFINE.EYE contains descriptions of the format of the system event
    00020	! file and contents of each type of entry recorded by TOPS-10 and TOPS-20.
   00021	! The file is created and appended to by a portion of the monitor and is read
00022	! by SPEAR.  SPEAR considers each entry a separate entity and treats each one
00023	! separately.  The recording program also considers each entry or record
00024	! separately and appends each to the end of the file.  The only exception to
 00025	! this policy is the synchronization word at the start of each block
    00026	! (128 words).  This word is a pointer or offset to the start of the first
   00027	! entry in the current block and is used by SPEAR to get back in sync in case
00028	! of trouble.  This word is required because entries may cross block boundaries
   00029	! to conserve disk space.  
00030	! 
00031	! Each entry or record in ERROR.SYS is composed of two sections, a header
    00032	! section and a body section.  The header section contains the entry type,
   00033	! date and time the event was recorded, the processor serial number that
00034	! detected the error, and the length of the header and body sections.  The
   00035	! body sections contain the various data items that make up the entry.  The
  00036	! format of the header section is constant regardless of the entry type.
00037	! 
00038	! 
00039	! The body section of each entry conforms to a general block format.  The first
   00040	! line of an entry contains the block type ENTRY.  The second line contains the
   00041	! entry type, an octal code number, and the block name, used by SPEAR to refer
    00042	! to the block.  The next part of the block description can be broken down into
   00043	! columns.
  00044	! 
00045	! 	Item name	Word number	Field description	Comments
 00046	! 	_________	___________	_________________	________
 00047	! 
00048	! The item name is the name used by SPEAR to refer to the item.  The word
    00049	! number is a decimal number of the position of the item.  The field
    00050	! description is the size of the item in bits.  Comments may occur as the last
    00051	! field of any line and are marked with an exclamation point.
 00052	! 
00053	! The last line of the block contains the word END followed by the type of
   00054	! block being terminated.
  00055	! 
00056	! ENTRY blocks may also contain pointers to subblocks called TABLE, WORD_10,
 00057	! or WORD_11.  These subblocks contains more specific descriptions of the
    00058	! information in the ENTRY.  For example, the disk error entry may contain
   00059	! pointers to the MASSBUS register table.
 00060	! 
00061	! ENTRY HEADER FORMAT
 00062	! 
00063	! This header is used to describe the contents of each entry.
 00064	! 
00065	! HRDCOD	See Note 1
   00066	! 
00067	! HDRDAT	Date and time of entry in Universal Format
 00068	! 
00069	! HDRUPT	System uptime at entry.  LH = No. days, RH = fraction of day
   00070	! 
00071	! HDRPSN	Processor serial No. where entry was recorded 
  00072	! 
00073	! Note 1	Bits		Description
 00074	! 
00075	! HDRCOD	0-8		Event code;  tells program how to process this
  00076	! 				entry.  See Note 2 for range of event codes.
  00077	! 
00078	! 		9-15		Reserved.
   00079	! 
00080	! 		16		If set, indicates that this entry was extracted
  00081	! 				from a crash.
   00082	! 
00083	! 		17		If set, this entry was recorded by TOPS-20.
 00084	! 
00085	! 		18-23		Header Format Version, presently = 1.
    00086	! 
00087	! 		24-26		Header Length, presently = 4.
  00088	! 
00089	! 		27-35		Entry Length excluding header, maximum = 777.
 00090	! 
00091	! 
00092	! Note 2
    00093	! Event Codes
    00094	! 
00095	! All event codes are in the range of 0 to 777 with reservations as described:
    00096	! 
00097	! 	000		Illegal.
 00098	! 
00099	! 	1-376		Reserved by DEC for use with SPEAR.
  00100	! 
00101	! 	400-477		Reserved for customer use with SPEAR.
   00102	! 
00103	! 	500-577		Reserved by DEC for use with programs other than SPEAR.
00104	! 
00105	! 	600-677		Reserved for customer use with programs other than 
    00106	! 			SPEAR.
 00107	! 
00108	! 	700-777		Reserved for both DEC and customer use with control 
   00109	! 			over the system event file.
00110	! 
00111	! In some cases (mostly for event-file control), only the first word (HDRCOD)
00112	! is included in the header.  This identification is the minimum required for
00113	! any entry.  The current event codes used for file control are as follows:
  00114	! 
00115	! 	377		The recording program has detected an error in the file
    00116	! 			and has started using the next sequential event file.
    00117	! 
00118	! 	775		This is the offset word in the first word of each block
    00119	! 			of the event file.  RH points to the start of the first
  00120	! 			entry in this block.
  00121	! 
00122	! 	777		This number signals an end-of-file and tells SPEAR to
 00123	! 			look for the next file.
    00124	! 
00125	!--
    00126	
 00127	!++
    00128	!
 00129	!	TOPS-10 / TOPS-20	HEADER DEFINITIONS
    00130	!
 00131	!--
    00132	
  00133	HEADER  TOPS10  TOPS20
00134	 HEADER
00135	  HDR_WRD_0		0	0-35	! Header word 0
  00136	  ENTRY_TYPE		0	0-8	! TOPS-10 / TOPS-20 entry type
  00137	! Unused		0	9-14	! Reserved
00138	  RETRIEVE_EXTRACT	0	15	! Entry extracted by RETRIEVE
    00139	  CRASH_EXTRACT		0	16	! Entry extracted from a crash
00140	  TOPS20_REC		0	17	! Entry recorded by TOPS-20
 00141	  BODY_FORMAT		0	18-20	! 0 before TOPS-20 v5
   00142						! 1 with TOPS-20 v5
   00143	  HDR_FORMAT		0	21-23	! 1 before TOPS-10 v7.02
 00144						! 2 with TOPS-10 v7.02
00145	  HDR_LENGTH		0	24-26	! 4 for Header format 1
  00146						! 5 for Header format 2
    00147	  ENTRY_LENGTH		0	27-35	! Length of MAIN entry excluding HEADER
    00148	  ENTRY_DATE_TIME	1	0-35	! Date/Time in universal format
 00149						!  LH = Days since 17 Nov 1858
  00150						!  RH = Fractional part of day
  00151						!   TOPS-10  Local reference
    00152						!   TOPS-20  GMT reference
 00153	  SYS_UPTIME		2	0-35	! Time since the system started in
  00154						!  universal format
   00155	  SYS_SER_NUM		3	0-35	! System serial number (decimal)
   00156	  RDFILE_SEQNUM		4	0	! Sequence # was generated by RDFILE
00157	! Unused		4	1-8	! Reserved - 0
  00158	  SEQUENCE_NUMBER	4	9-35	! Unique record sequence number
 00159	END HEADER
  00160	
  00161	HEADER  TOPS10  TOPS20
00162	 _HEADER	! Header for secondary buffer
    00163	  _HDR_WRD_0		0	0-35	! Header word 0
 00164	  _ENTRY_TYPE		0	0-8	! TOPS-10 / TOPS-20 entry type
 00165	! Unused		0	9-14	! Reserved
00166	  _RETRIEVE_EXTRACT	0	15	! Entry extracted by RETRIEVE
   00167	  _CRASH_EXTRACT	0	16	! Entry extracted from a crash
00168	  _TOPS20_REC		0	17	! Entry recorded by TOPS-20
00169	  _BODY_FORMAT		0	18-20	! 0 before TOPS-20 v5
  00170						! 1 with TOPS-20 v5
   00171	  _HDR_FORMAT		0	21-23	! 1 before TOPS-10 v7.02
00172						! 2 with TOPS-10 v7.02
00173	  _HDR_LENGTH		0	24-26	! 4 for Header format 1
 00174						! 5 for Header format 2
    00175	  _ENTRY_LENGTH		0	27-35	! Length of MAIN entry excluding HEADER
   00176	  _ENTRY_DATE_TIME	1	0-35	! Date/Time in universal format
00177						!  LH = Days since 17 Nov 1858
  00178						!  RH = Fractional part of day
  00179						!   TOPS-10  Local reference
    00180						!   TOPS-20  GMT reference
 00181	  _SYS_UPTIME		2	0-35	! Time since the system started in
 00182						!  universal format
   00183	  _SYS_SER_NUM		3	0-35	! System serial number (decimal)
  00184	  _RDFILE_SEQNUM	4	0	! Sequence # was generated by RDFILE
00185	! Unused		4	1-8	! Reserved - 0
  00186	  _SEQUENCE_NUMBER	4	9-35	! Unique record sequence number
00187	END HEADER
  00188	
 00189	!++
    00190	!	The following entries are recorded by TOPS-10 via
 00191	!	the DAEMON program. These define the body portion of
   00192	!	the entry.
00193	!--
    00194	
  00195	!++
    00196	!
 00197	!	Reload information recorded by TOPS-10 systems whether or not
    00198	!	an error occurred.
  00199	!
 00200	!--
    00201	
  00202	ENTRY  TOPS10
    00203	 001	SYSTEM_RELOAD_10
 00204	  SYS_NAME		0	0-35	!System name in ASCIZ (5 words 0:4).
  00205	  SYS_BUILD_DATE	5	0-35	!System build date in ASCIZ (2 words 5:6).
 00206	  SYS_STATES_WORD	7	0-35	!Bits indicating software state.
00207	  MONITOR_VERSION	8	0-35	!Funny format showing major, minor
   00208						!version, and edit number.
 00209	  CPU_SERIAL_NUMBER	9	0-35	!CPU which reloaded system as opposed
   00210						!to CPU logging an error.
  00211	  WHY_RELOAD_CODE	10	0-35	!Major reason-type supplied by operator
  00212						!when reloading. (SIXBIT)
  00213	  OPERATOR_COMMENTS	11	0-35	!Additional comments on why reloaded.
  00214	  UNLIKELY_CODE		12	0-17	!Just a 707070 for validity-check.
   00215	!Undefined		12	18-34
  00216	  BIT_PER_PAGE_FLAG 	12	35	!Flag for NXM table.
00217	  NXM_TAB		13	HEAD-F	!Pointer to NXM table.
    00218	END ENTRY
   00219	
 00220	!++
    00221	!
 00222	!	Information from TOPS-10 when a recoverable stopcode is detected.
00223	!
 00224	!--
    00225	
  00226	ENTRY  TOPS10
    00227	 002	MONITOR_BUG_DATA_10
   00228	  SYS_NAME		0	0-35	!System name in ASCIZ (five words 0:4)
00229	  SYS_BUILD_DATE	5	0-35	!System build date in ASCIZ (2 words 5:6)
  00230	  CPU_SERIAL_NUMBER	7	0-35	!CPU which detected error.
    00231	  MONITOR_VERSION	8	0-35	!Funny format showing major, minor
   00232						!version, and edit number.
      00233	  STOP_BUG_NAME		9	0-35	!Stopcode name in SIXBIT.
   00234	  JOB_NUMBER		10	0-35	!Job active at time of occurrance.
 00235	  TERMINAL_NUMBER	11	0-35	! Terminal of job.
   00236	  PROGRAM_NAME		12	0-35	! Name of job user was running.
  00237	  USER_ID		13	0-35	! PPN of user.
    00238	  JOB_STOP_TALLY	14	0-35	!Total number of JOB STOPCDS.
   00239	  CHECK_TALLY		15	0-35	!Total number of DEBUG STOPCDS.
   00240	  SAVED_ACS		16	BODY-F	!Contents of AC at time of error.
 00241						!WORDS 16-31
00242	  PI_STATUS		32	0-35	!CONI PI at time of STOPCODE.
  00243	END ENTRY
   00244	
 00245	!++
    00246	!	Obsolete CPU memory parity error entry for KA10, KI10
  00247	!--
    00248	
  00249	ENTRY  TOPS10
    00250	 003	OLD_CPU_MEM_PAR_ERR_10		!Obsolete
    00251	  CPU_NAME		0	0-35	!Name of device in SIXBIT
   00252	  TOTAL_SINCE_RELOAD	1	0-35	!Count of NXMs.
    00253	  SPUR_SINCE_RELOAD	2	0-35	!Count of spurious NXMs.
 00254	  CONTINUE_COUNT	3	0-35	!Number of continues after MPE halts
  00255	  PROGRAM_COUNTER	4	0-35	!PC at MPE interrupt
  00256	  FIRST_CONTENTS	5	0-35	!Of this sweep.
   00257	  FIRST_ADDRESS		6	0-35	!Of this sweep.
   00258	  PAR_SWEEP_DATA	7	HEAD-F	!pointer to %CCPAR sub-table.
  00259	  TOP_TEN,_BAD_ADD	8	HEAD-F	!Pointer to %CCMPT sub-table.
00260	  USER_ID		9	0-35	!PPN of user running at interrupt
 00261	  PROGRAM_NAME		10	0-35	!In SIXBIT
   00262	END ENTRY
   00263	
 00264	!++
    00265	!	Obsolete NXM error interrupt for KA10 and KI10
    00266	!--
    00267	
  00268	ENTRY  TOPS10
    00269	 004	OLD_CPU_NXM_ERR_10			!Obsolete
  00270	  CPU_NAME		0	0-35	!Physical CPU name in SIXBIT
00271	  TOTAL_SINCE_RELOAD	1	0-35	!Count of NXMs.	
   00272	  SPUR_SINCE_RELOAD	2	0-35  	!Count of spurious NXMs.
    00273	  PROGRAM_COUNTER	3	0-35	!PC at NXM interrupt
  00274	  JOB_AFFECTED_COUNT	4	0-35	!Number of jobs affected by NXM
   00275	  FIRST_ADDRESS		5	0-35	!Physical address of NXM
    00276	  LAST_ADDRESS		4	0-35	!Of this sweep.
    00277	  RELATIVE_ADDRESS	7	0-35	!Relative address of NXM in segment
 00278	  TOTAL_THIS_SWEEP	8	0-35	!# of NXM's seen on last sweep
 00279	  TOTAL_SWEEPS		9	0-35	!Number of sweeps  looking for NXM's
   00280	  ENABLED_COUNT		10	0-35	!# Of user enabled NXM's
   00281	  ADDRESS_AND		11	0-35	!Logical and of bad addresses.
    00282	  ADDRESS_OR		12	0-35	!Logical OR or bad addresses.
 00283	  SEEN_BY_CHANNEL	13	0-35	!Count of NXMs seen by channel.
00284	  UNLIKELY_CODE		14	0-17  	!Just a 707070 for validity-check.
 00285	!Undefined		14	18-34
  00286	  BIT_PER_PAGE_FLAG 	14	35	!Flag for NXM table.
00287	  NXM_TAB,_BEFORE_ERR	15	HEAD-F	!PTR TO NXM TABLE BEFORE ERROR
00288	  NXM_TAB,_AFTER_ERR	16	HEAD-F	!PTR TO NXM TABLE AFTER ERROR
  00289	  TOP_TEN,_BAD_ADD	17	HEAD-F	!PTR TO LIST OF NXM ADDRESSES
    00290	  USER_ID		18	0-35  	! PPN of user.
  00291	  PROGRAM_NAME		19	0-35  	! Name of job user was running.
00292	END ENTRY
   00293	
 00294	!++
    00295	!	Information extracted from a TOPS-10 crash. Names are meaningful
 00296	!	to monitor programmers and are left in their original condition.
 00297	!--
    00298	
  00299	ENTRY  TOPS10
         00300	 005	EXTRACTED_CRASH_INFO_10
    00301	  CRASH_STR	0	0-35	!STR name for source of CRASH.EXE
00302	  CINSEC	1	0-35	!System wide error count
  00303	  CINPTR	2	0-35	!Pntr for GETTABS
    00304	  CINTIM	3	0-35	!Time of day
    00305	  CINSIZ	4	0-35	!system memory size
  00306	  CINPOK	5	0-35	!last addr poked
00307	  CINLNM	6	0-35	!# jobs logged in
    00308	  CINTIC	7	0-35	!# ticks per second
  00309	  CINVER	8	0-35	!monitor version
00310	  CINDBG	9	0-35	!DEBUG status word
   00311	  CINHSO	10	0-35	!Start of monito high seg
00312	  CINNWC	11	0-35	!# of words of core
 00313	  CINUPT	12	0-35	!Uptime in ticks
         00314	  CINMMS	13	0-35	!Memory size
   00315	  CINTPE	14	0-35	!Totlal mem par errors
   00316	  CINSPE	15	0-35	!Total spurious parity errors
 00317	  CINMPC	16	0-35	!Multiple parity errors
  00318	  CINMPA	17	0-35	!Last parity addr
   00319	  CINMPW	18	0-35	!Last parity word
   00320	  CINMPP	19	0-35	!Last parity PC
00321	  CINEPO	20	0-35	!# UNREC EXEC PDL OV
00322	  CINEPP	21	0-35	!# RECOVERED EXEC PDL OV
 00323	  CINERC	22	0-35	!SWAP ERROR COUNT
   00324	  CINDEL	23	0-35	!DISABLED ARDWARE ERROR COUNT
 00325	  CINSPC	24	0-35	!LAST STOPCD
   00326	  CINNDS	25	0-35	!# DEBUG STOPCDS
    00327	  CINNJS	26	0-35	!# JOB STOPCDS
 00328	  CINSJN	27	0-35	!LAST STOPCD-JOB NUMBER
  00329	  CINSPN	28	0-35	!LAST STOPCD-PROGRAM NAME
00330	  CINSUU	29	0-35	!LAST STOPCD-UUO
    00331	  CINSPP	30	0-35	!LAST STOPCD-PPN
    00332	  CINPAR	31	0-35	!PARITY SUBTABLE
    00333	  CINPLA	32	0-35	!**HIGHEST ADDR OF PARITY ERROR
    00334	  CINPMR	33	0-35	!**ADDRES IN SEGMENT OF PAR ERR
    00335	  CINPTS	34	0-35	!**PAR ERRORS THIS SWEEP
 00336	  CINPSC	35	0-35	!**#SWEEPS
00337	  CINPUE	36	0-35	!**USER ENABLED
00338	  CINPAA	37	0-35	!**LOGICAL AND  OF ADDR
  00339	  CINPAC	38	0-35	!**LOGICAL AND OF WORDS
  00340	  CINPOA	39	0-35	!**LOG OR OF ADDR
   00341	  CINPOC	40	0-35	!**LOG OR OF DATA
   00342	  CINPCS	41	0-35	!**COUNT OF SPUR CHANNEL ERROS
00343	  CINRSP	42	0-35	!ADDR OF RESPONSE SUBTABLE
    00344	  CINRSO	43	0-35	!**SUM TTY OUT UUO RES
   00345	  CINRNO	44	0-35	!**NUM TTY OUT UUO
  00346	  CINRHO	45	0-35	!**HI-SUM SQ TTY OUT UUO
 00347	  CINRLO	46	0-35	!**LO-SUM	"   "
00348	  CINRSI	47	0-35	!**SUM TTY INP UUO
  00349	  CINRNI	48	0-35	!**NUMBER TTY INP UUO
    00350	  CINRHI	49	0-35	!**HI-SUM SQ TTY INP UUO
 00351	  CINRLI	50	0-35	!**LO-SUMSQ TTY INP UUO
  00352	  CINRSR	51	0-35	!**SUM QUANTUM REQ RES
   00353	  CINRNR	52	0-35	!**NUMBER QUANTUM REQ RES
00354	  CINRHR	53	0-35	!**HI-SUM SQ QUANTUM RES
 00355	  CINRLR	54	0-35	!**LO-SUM SQ QUANTUM REQ RES
  00356	  CINRSX	55	0-35	!**SUM ONE OF ABOVE
 00357	  CINRNX	56	0-35	!**NUMBER ONE OF ABOVE
   00358	  CINRHX	57	0-35	!** HI-SUM SQ ONE OF ABOVE
    00359	  CINRLX	58	0-35	!**LO-SUM SQ ONE OF ABOVE
00360	  CINRSC	59	0-35	!**SUM CPU RES
 00361	  CINRNC	60	0-35	!**NUMBER CPU RES
   00362	  CINRHC	61	0-35	!**HI-SUM CPU RES
   00363	  CINRLC	62	0-35	!**LO-SUM CPU RES
   00364	  CINUPT	63	0-35	!UPTIME
   00365	  CINLST	64	0-35	!LOST TIME
00366	  CINNUL	65	0-35	!NULTIME
  00367	  CINOHT	66	0-35	!OVERHEAD TIME IN JIFFIES
00368	  CINTUC	67	0-35	!TOTAL UUO COUNT
    00369	  CINTJC	68	0-35	!TOTAL JOB CONTEXT SWITCH COUNT
    00370	  CINTNE	69	0-35	!TOTAL NXM
00371	  CINSNE	70	0-35	!TOTAL SPUR NXM
00372	  CINNJA	71	0-35	!# JOBS AFFECTED LAST NXM
00373	  CINMNA	72	0-35	!FIRST ADDR LAST NXM
00374	  CINUNI	73	0-35	!CNT OF DISK INFO BLOCKS IN THIS ENTRY
  00375	END ENTRY
   00376	
 00377	!++
    00378	!	Channel information (DF10) for non-massbus DMA devices
 00379	!	(Not supported by SPEAR)
 00380	!--
    00381	
  00382	ENTRY  TOPS10
    00383	 006	CHANNEL_ERROR_REPORT_10
    00384	  DEVICE_NAME		0	0-35	!DEVICE USING CHAN AT ERROR IN SIXBIT
   00385	  NXM_OVRN_COUNT	1	0-35	!# OF NXM'S AND OVERRUNS FOR THIS CHAN
00386	  CHN_MEM_PAR_COUNT	2	0-35	!# OF MPE'S FOR THIS CHAN
00387	  CHN_DEV_PAR_COUNT	3	0-35	!# OF DEVICE DPE'S FOR THIS CHAN
   00388	  INITIAL_CONTROL_WORD	4	0-35	!INITIAL CONTROL WORD
 00389	  TERMINATION_WORD	5	0-35	!TERMINATION WORD
    00390	  LAST_CW_MINUS_2	6	0-35	!FINAL CONTROL WD -2
  00391	  LAST_CW_MINUS_1	7	0-35	!FINAL CONTROL WD -1
  00392	  LAST_CW		8	0-35	!FINAL CONTROL WD
  00393	  LAST_DATA_MINUS_2  	9	0-35	!LAST DATA WD -2
  00394	  LAST_DATA_MINUS_1	10	0-35	!LAST DATA WD -1
   00395	  LAST_DATA		11	0-35	!LAST DATA WD
   00396	  EXPECTED_TERMINATION	12	0-35	!EXPECTED TERMINATION WD
  00397	END ENTRY
   00398	
 00399	!++
    00400	!	Time stamp indicating DAEMON has started running
  00401	!--
    00402	
  00403	ENTRY  TOPS10
    00404	 007	DAEMON_STARTED_10
00405	  DAE_VERSION	0	0-35	!DAEMON version
 00406	END ENTRY
   00407	
 00408	!++
    00409	!	Information about an error in a non-massbus DMA device in TOPS-10
00410	!	(Not supported in SPEAR). This applies to RP10 and RC10 controllers.
  00411	!--
    00412	
  00413	ENTRY  TOPS10
    00414	 010	OLD_DISK_ERR_10
  00415	  HDENAM		0	0-35	!PHYSICAL UNIT NAME IN SIXBIT
 00416	  HDEHID		1	0-35	!HOME BLOCK ID(PACK ID)
  00417	  HDEHCT		2	0-35	!# OF HARD ERRORS ON THIS UNIT
00418	  HDESCT		3	0-35	!# OF SOFT ERRORS ON THIS UNIT
00419	  HDEECT		4	0-35	!LH = 1B0  IF LATER WON 1ST TIME
   00420						! = 	1B1 IF ERROR WAS HARD
 00421						! = 	1B2 IF HUNG DEVICE
    00422						!RH 	= # OF RETRIES
   00423	  HDESOF		5	0-35	!STATUS AT ERROR
    00424	  CONI_RP10		5	0-35	!Used by SUMMARIZE
    00425	  HDEERR		6	0-35	!STATUS AFTER RETRY WHICH WON
 00426	  HDESDI		7	0-35	!DATAI AT ERROR
00427	  HDEHDI		8	0-35	!DATAI AFTER RETRY WHICH WON
  00428	  HDEHBN		9	0-35	!LOGICAL BLOCK NUMBER OF ERROR
00429	  HDEMCT		10	0-35	!SOFTWARE DETECTED ERROR CNTS
00430	  UNISER		10	0-11	!sat errors
   00431	  UNIRER		10	12-23	!RIB ERRORS
  00432	  UNICER		10 	24-35	!CHECKSUM ERRORS
 00433	  HDEPCT		11	0-35	!# OF SEEK INCOMPLETES
  00434	  HDEHNG		12	0-35	!# OF UNIT HUNGS
   00435	  UNINTH		12	0-8	!# OF NTHUNG
   00436	  UNITHU		12	9-17	!# OF THUNG
   00437	  UNIPHU		12	18-26	!# OF PHUNG
  00438	  UNISHU		12	27-35	!# OF SHUNG
  00439	  HDETRC		13	0-35	!# OF BLOCKS READ ON THIS UNIT
    00440	  HDETWC		14	0-35	!# OF BLOCKS WRITTEN ON THIS UNIT
 00441	  HDETSC		15	0-35	!# OF SEEKS ON THIS UNIT
00442	  HDEDCR		16	0-35	!RESULTS OF A DSKCHR UUO FOR THIS UNIT
 00443	  CONTROLLER_TYPE	16	21-26   ! As follows
 00444						!  1 -- RC10
00445						!  2 -- RP10
00446	  CONTROLLER_NUMBER	16	27-29
    00447	  UNIT_TYPE		16	30-32   ! As follows
 00448						! CONTROLLER  UNIT    TYPE
 00449						!   FIELD     FIELD
   00450						!     1         0     RD10
 00451						!     1         1     RM10B
00452						!     2         1     RP02
 00453						!     2         2     RP03
 00454	  HDELOG		17	0-35	!LOGICAL NAME IN SIXBIT
 00455	  HDECCT		18	0-35	!LH = # OF SLOTS LEFT IN BAT
 00456						!   	RH = # OF CHAN TERM WD FAILURES
 00457	  HDEFIL		19	0-35	!FILE NAME IN SIXBIT
    00458	  HDEEXT		20	0-35	!FILE EXTENTION IN SIXBIT
    00459	  HDEUID		21	0-35	!PPN OF USER
  00460	  HDEPGM		22	0-35	!PROGRAM NAME IN SIXBIT
 00461	END ENTRY
   00462	
  00463	WORD_10 TOPS10			! From above
   00464	 CONI_RP10
  00465	  RP10_CTL_PAR		14              ! Control word parity error
   00466	  RP10_SEC_PAR		15              ! Sector parity error
    00467	  RP10_MEM_PAR  	16              ! Channel data parity error
  00468	  RP10_WRD_PAR  	17              ! Disk word parity error
00469	  RP10_PWR_FAL  	20              ! Power fail
  00470	  RP10_SRH_ERR  	21              ! Search error
00471	  RP10_OVR_RUN  	22              ! Overrun (data late)
   00472	  RP10_NXM  		23              ! No such memory
 00473	  RP10_NOT_RDY  	25              ! Not ready
   00474	  RP10_ILL_WRT  	26              ! Illegal write
    00475	  RP10_ILL_DTO  	27              ! Illegal DATAO
    00476	  RP10_SEC_ADD  	28              ! Sector address error
  00477	  RP10_SUR_ADD		29              ! Surface address error
  00478	END WORD_10	
00479	
  00480	
 00481	!++
    00482	!
 00483	!	TOPS-10 - ERROR CODE 11 ENTRY - Massbus device error
   00484	!
 00485	!--
    00486	
  00487	ENTRY  TOPS10
    00488	 011	MASSBUS_ERR_10
   00489	  DEV_NAM		0	0-35	! Device name (SIXBIT)
  00490	  VOL_ID		1	0-35	! Media identification (SIXBIT)
    00491	  STR_NAME		2	0-35	! Structure ID (SIXBIT)
00492	  LBN			3	0-35	! Logical block number
00493	  FINAL_ERR_STATE	4	0-35	! Final error state from TOPS-10
00494	  HARD			4	1	! Hard error - non-recoverable
    00495	  SUM_HARD		4       1	! Used by summary to indicate hard/soft
 00496	  HUNG_DEVICE		4	2	!
  00497	! Unknown		4	3-4	!
    00498	  CHAN_ADDR		4	5-11	! Physical controller addr
 00499	  RH_CHAN_TYPE		4	12-14	! Controller type (001 = RH10)
   00500	  CTRL_NUMBER		4	15-17	! Controller number
00501	  RETRY_CNT		4	18-35	! # of retries performed for this error
  00502	  CONI_INITIAL		5	0-35	! Controller status at error
 00503	  RHCS2_ERR             5       2-17    ! Control and Status 2 for RH11
 00504	  RHCS1_ERR             5       20-35   ! Control and Status 1 for RH11
 00505	  CONI_FINAL		6	0-35	! Controller status at end
00506	  SAT_ERRORS		7	0-11	! SAT error count	{
  00507	  RIB_ERRORS		7	12-23	! RIB error count	{ UNIMCT
    00508	  CHKSM_ERRORS		7	24-35	! Checksum error count	{
    00509	  SEEK_INC_CNT		8	18-35	! Seek imcomplete count - UNIPCT
 00510	  NTHUNG_CNT		9	0-8	! NTHUNG count	{
 00511	  THUNG_CNT		9	9-17	! THUNG count	{ UNIHNG
00512	  PHUNG_CNT		9	18-26	! PHUNG count	{
 00513	  SHUNG_CNT		9	27-35	! SHUNG count	{
 00514	  FILE_NAME		10	0-35	! File name (SIXBIT)
 00515	! Unused		11	0-17	!
   00516	  FILE_NAME_EXT		11	18-35	! File name extension (SIXBIT)
 00517	  PROJ_PROG_NO		12	0-35	! LH - Project number
  00518						! RH - Programmer number
   00519	  PROGRAM_RUN		13	0-35	! Program name (SIXBIT)
 00520	  RH_DATI_TCR_ERR	14	0-35	! DATAI from RH10 control reg
  00521						!  at error time
 00522	  UBA_STATUS_ERR	14	18-35	! IF RH11
  00523	  RH_DATI_TCR_END	15	0-35	! DATAI from RH10 control reg
  00524						!  after last retry
   00525	  RH_DATI_BAR_ERR	16	0-35	! DATAI from RH10 block address
00526						!  register at error time
  00527	  RH_DATI_BAR_END	17	0-35	! DATAI from RH10 block address
00528						!  register after last retry
    00529	  MB_DEV, ICE_REG	18	BODY-F	! ***** MB REGISTERS *****
   00530						!	  18 - 33
 00531	! Unused		34	0-17	!
   00532	  LAST_CMD		34	18-35	! Last command issued to unit
  00533						!  before error occurred
   00534	! Unknown		35	0-8	!
   00535	  BAT_FREE		35	9-17	! # of free slots left in BAT block
  00536						!  777 = Unknown
 00537	! Unknown		35	18-26	!
 00538	  CCW_FAIL_CNT		35	27-35	! # of CCW termination word failures
 00539	END ENTRY
        00540	
 00541	!++
    00542	!
 00543	!	TOPS-10 - ERROR CODE 12 ENTRY - DX20 ERROR
   00544	!
 00545	!--
    00546	
  00547	ENTRY  TOPS10
    00548	 012	DX20_ERR_10
 00549	  DEV_NAM		0	0-35	!device name
  00550	  MEDIAID		1	0-35	!media identification
   00551	  CHAN_ADDR		2	0-17	! channel address
00552	  CHAN_TYPE		2	18-26	! CHANNEL TYPE
  00553	  DEV_TYPE		2	27-35	!device type
00554	  ERR_LOCATION		3	0-35	!location of error
 00555						!file,,record
    00556	  FILE_IN_ERROR		3	0-17	!FILE IN ERROR
    00557	  RECORD_IN_ERROR	3	18-35	! RECORD IN ERROR
    00558	  FINAL_ERR_STATE	4	0-35	!final error state
         00559	  SUM_HARD		4	1
  00560	  NON_RECOVERABLE	4	1	! nonrecoverable error
   00561	  CTRL_ADDR		4	5-11	!physical controller addr
  00562	  CTRL_TYPE		4	12-14	!controller type
00563	  CTRL_NUMBER		4	15-17	!controller number
 00564	  RETRY_CNT		4	18-35	!retry error count
   00565	  CONI_INITIAL		5	0-35	!controller status at error
  00566	  CONI_FINAL		6	0-35	!controller status at end
 00567	  FRAMES_READ		8	0-35	!no. of frames read
 00568	  FRAMES_WRITTEN	9	0-35	!no. of frames written
 00569	  FILE_NAME		10	0-35	!file name
 00570	  USER			11	0-35	![P,PN] of user making request
00571	  PROGRAM_RUN		12	0-35	!program name
 00572	  RH_DATI_TCR_ERR	13	0-35	!datai from RH control reg at 
 00573						!error time
 00574	  RH_DATI_TCR_END	14	0-35	!datai from RH control reg 
    00575						!at end of retry
 00576	  RH_DATI_BAR_ERR	15	0-35	!datai from RH block address
   00577						!register at error time
    00578	  RH_DATI_BAR_END	16	0-35	!datai from RH block address
   00579						!register at end of retry
  00580	  SOFT_READ		17	0-35	! soft read errors
   00581	  SOFT_WRITE		18	0-35	! SOFT WRITE ERROR
  00582	  HARD_READ		19	0-35	! HARD READ ERROR
    00583	  HARD_WRITE		20	0-35	! HARD WRITE ERROR
  00584	  FILE_POSITION		21	0-35	!
 00585	  ERR_RECORD		22	0-35	!
    00586	  CHAN_LOGOUT_0		23	0-35	!
 00587	  CHAN_LOGOUT_1		24	0-35	!
 00588	  CHAN_LOGOUT_2		25	0-35	!
 00589	  CCW1			26	0-35	!
    00590	  CCW2			27	0-35	!
    00591	  MPE_CNT		28	0-35	!
  00592	  NXM_CNT		29	0-35	!
  00593	  SOFT_POS_ERR		30	0-35	! SOFT POSITIONING ERRORS
   00594	  HARD_POS_ERR		31	0-35	! HARD POSITIONING ERRORS
   00595	  OVERRUN_ERR		32	0-35	!
   00596	  INIT_CNTRL_REG	33	0-35	! INITIAL CONTROL REGISTER
 00597	  MICRO_CODE_VER_NO	34	0-35	!
   00598	! ***** POINTERS TO SUB-BLOCKS *****
 00599	  DX20_MASSBUS_REG	35	MAIN+F	! Pointer to MASSBUS registers
   00600						!  +LENGTH,,OFFSET
    00601	  DX20_DEVICE_REG	36	MAIN+F	! Pointer to device registers
00602						!  +LENGTH,,OFFSET
    00603	END ENTRY
   00604	
 00605	!++
    00606	!	Information recorded by TOPS-10 when a significant software event
00607	!	takes place. May or may not be an error.
00608	!--
    00609	
  00610	ENTRY  TOPS10
    00611	 014	SOFTWARE_EVENT_10
00612	  EVENT_CODE		0	0-35	!EVENT CODE
00613	  JOB_NUMBER		1	0-35	!JOB NUMBER
00614	  USER_ID		2	0-35	!USERS PPN
    00615	  PROGRAM_NAME		3	0-35	!PROGRAM NAME IN SIXBIT
 00616	  TERMINAL_LOC		4	0-35	!TTY LOCATION
 00617	  NODE_NUMBER		4	0-11	!OCTAL NODE #
  00618	  LINE_NUMBER		4	12-23	!OCTAL LINE #
 00619	  TERMINAL_NUMBER	4	24-35	!OCTAL TTY #
    00620	  DATA_POINTER		5	0-35	!POINTER TO DATA
   00621					!- # OF ITEMS,,OFFSET FROM SWECOD
00622	END ENTRY
   00623	
  00624	!VALUES
00625	! SWECOD
    00626	!  SWEPOK	1	!EVENT WAS A POKE
   00627	!  SWESNP	2	!EVENT WAS A SNOOP
  00628	!  SWETRP	3	!EVENT WAS A TRPSET
 00629	!  SWERTT	4	!EVENT WAS A RTTRAP
 00630	!  SWEMS1	5	!MISC. EVENT 1
 00631	!  SWEMS2	6	!MISC. EVENT 2
 00632	!END VALUES
 00633	
 00634	!++
    00635	!	Information recorded by TOPS-10 when some part of the configuration
   00636	!	changes status. This is not an error.
   00637	!--
    00638	
  00639	ENTRY  TOPS10
    00640	 015	CONFIG_CHANGE_10
 00641	  DEVICE_NAME_1		0	0-35	!SIXBIT UNIT NAME 
00642	  NXM_TAB,_BEFORE	0	HEAD-F	!PTR TO NXM TABLE
   00643	  					!-LENGTH,,OFFSET FROM HEADER WD 0
  00644	  TIME_CHANGE		0	0-35	!AMOUNT OF TIME CHANGE IN JIFFIES
  00645	  NODE_NUMBER		0	0-35	!NODE NUMBER
   00646	  DEVICE_NAME_2		1	0-35	!SIXBIT UNIT NAME 
00647	  NXM_TAB,_AFTER	1	HEAD-F	!PTR TO NXM TABLE
    00648						!-LENGTH,,OFFSET FROM HEADER WD 0
    00649	  DATE_TIME		1	0-35	!CURRENT DATE/TIME
    00650	  NODE_NAME		1	0-35	!SIXBIT NODE NAME
00651	  CHANGE_REASON		2	0-11	!SIXBIT REASON ANSWER
  00652	  COMMAND_CODE		2	12-17	!COMMAND CODE
00653						!ATTACH = 0
 00654						!DETACH = 1
 00655						!EXCHANGE = 2
    00656						!DATE/TIME CHANGE = 3
 00657						!SET CPU OFFLINE = 4
  00658						!SET CPU ONLINE = 5
   00659						!NODE OFFLINE = 6
00660						!NODE ONLINE = 7
 00661						!OPR SET MEM ONLINE = 10
   00662						!OPR SET MEM OFFLINE = 11
  00663						!MONITOR SET MEM OFFLINE = 12
   00664	  BIT_PER_PAGE_FLAG	2	35	!RH = 1B35 IF 1 PAGE PER BIT
    00665	END ENTRY
   00666	
  00667	!++
    00668	!	System log entry
    00669	!--
    00670	
  00671	ENTRY  TOPS10
    00672	 016	SYS_ERROR_LOG_10
 00673	  ERROR_LOG		0	BODY-F	!
    00674	END ENTRY
   00675	
 00676	!++
    00677	!	Information recorded by TOPS-10 when a temporary monitor patch
   00678	!	wants to save data in the event file. This may or may not be
00679	!	an error. The programmer responsible for the patch is the only
   00680	!	one who knows.
 00681	!--
    00682	
  00683	ENTRY  TOPS10
    00684	 017	SOFTWARE_REQ_DATA_10
  00685	  DEBPTR	0	0-35		!PNTR WORD TO SAVED DATA
 00686						!-LENGTH,,OFFSET FROM HEADER WD 0
    00687	END ENTRY
   00688	
 00689	!++
    00690	!	Obsolete entry for older versions of TOPS-10 (before 6.02) when
  00691	!	a tape error is detected.
00692	!--
    00693	
  00694	ENTRY  TOPS10
    00695	 020	OLD_TAPE_ERR_10
  00696	  MAGNAM	0	0-35		!DEVICE NAME IN SIXBIT
   00697	  MAGRID	1	0-35		!REELID IN SIXBIT
   00698	  MAGFFB	2	0-35		!# OF FILES FROM BOT AT ERROR
 00699	  MAGRFF	3	0-35		!# OF RECORDS FROM LAST EOF AT ERROR
    00700	  MAGICC	4	0-35		!CONI MTC AT ERROR
  00701	  MAGICS	5	0-35		!CONI MTS AT ERROR
  00702	  MAGFCC	6	0-35		!CONI MTC AFTER RETRY
    00703	  MAGFCS	7	0-35		!CONI MTS AFTER RETRY
    00704	  MAGRTC	8	0-35		!LH = 1B1 IF NON-RECOVERABLE
  00705						!RH = RETRY COUNT
00706	  MAGMED	9	0-35		!-1 IF TENTH ERROR SINCE LAST UNLOAD
    00707	END ENTRY
   00708	
 00709	!++
    00710	!
 00711	!	 ERROR CODE 21 ENTRY tape error
    00712	!
 00713	!--
    00714	
  00715	ENTRY  TOPS10
    00716	 021	TAPE_ERR_10
 00717	  DEV_NAM		0	0-35	! LOGICAL NAME OF DEVICE (SIXBIT)
 00718	  MEDIAID		1	0-35	! TAPE REEL  IDENTIFICATION
  00719						! FROM THE /REEL ID: PART OF MOUNT
   00720						! COMMAND. (SIXBIT)
   00721	  FILE_IN_ERROR		2	0-35	! NUMBER OF FILES FROM BOT AT ERROR 
  00722	  RECORD_IN_ERROR	3	0-35	! NUMBER OF RECORDS FROM LAST EOF
    00723						! AT ERROR
  00724	  CNTRLLER_REG		4	0-35	! RETRY WORD - GIVES THE INFO
00725						! REGARDING TYPE OF MASSBUS AND
 00726						! TAPE CONTROLLER NUMBER
   00727	  SUM_HARD		4	1	! LH = 1B1  IF NON-RECOVERABLE
 00728	  HARD			4       1	!
  00729	  RH20_FLAG		4	11	! 1B11  IF RH20
    00730	  CONTROLLER_TYPE	4	12-14   ! BITS 11  12  13  14
   00731						!       0   0   0   0 = TM10A
   00732						!       0   0   0   1 = TM10B
   00733						!       0   0   1   0 = TC10C
   00734						!       0   0   1   1 = DX10
    00735						!	0   1   0   0 = RH10-TM02
00736						!	0   1   0   1 = RH11-TM02
00737						!	0   1   1   1 = TM78
00738						!	1   1   0   0 = RH20-TM02
00739						!	1   1   1   0 = RH20-DX20
00740						!       1   1   1   1 = RH20-TM78
    00741						!	RH = RETRY COUNT
    00742						!
 00743	  FRAME_IN_ERR		5	0-35	! NUMBER OF TAPE FRAMES/CHARACTERS
00744						!  INTO RECORD WHEN ERROR OCCURRED
   00745	  REG_BEFORE_ERR	6	0-35	! BITS 18-36 GIVE THE NUMBER OF 
 00746						! FILES FROM BOT BEFORE ERROR
   00747						! AND BITS 0-17 GIVE 
 00748						! THE NUMBER OF RECORDS FROM
    00749						! LAST EOF BEFORE ERROR
    00750	  FINAL_ERR_STATUS	7	0-35	! FINAL ERROR STATUS
 00751	
  00752	  CSB_TM10, _AT_ERR	8	HEAD-F	! Pointers to controller status block
 00753	  CSB_TM78, _AT_ERR	8	HEAD-F	! Pointers to controller status block
 00754	  CSB_DX10, _AT_ERR	8	HEAD-F	! Pointers to controller status block
 00755	  CSB_TM02, _AT_ERR	8	HEAD-F	!   at error - - in the form	
    00756						!   -LENGTH,,OFFSET FROM HEADER WORD 0
    00757	  CSB_TM10, _AT_END	9	HEAD-F 	! Pointers to controller status 
00758	  CSB_TM78, _AT_END	9	HEAD-F 	! Pointers to controller status 
00759	  CSB_DX10, _AT_END	9	HEAD-F 	! Pointers to controller status 
00760	  CSB_TM02, _AT_END	9	HEAD-F	!   block after retry - - in the form
 00761						!   -LENGTH,,OFFSET FROM HEADER WORD 0
    00762	  PPN			10	0-35	! USER'S PROJECT/PROGRAMMER NO.
00763	  PROGRAM_NAME		11	0-35	! USER'S PROGRAM NAME WHEN ERROR 
00764						! OCCURRED
  00765	! Additional TU78 definitions
   00766	  REV_LEVEL_0_3		12	0-35	! Next 2 words are 9-bit bytes
  00767	  REV_LEVEL_4_7		13	0-35
   00768	  CONI_AT_ERR		14	0-35  
   00769	  
00770	END ENTRY
   00771	
 00772	!++
    00773	!	TOPS-10 front-end entry 
 00774	!--
    00775	
  00776	ENTRY  TOPS10
    00777	 030	FE_DEVICE_ERR_10
 00778	  FE_DATA		0	BODY-F	!Common FE table data
 00779	END ENTRY
   00780	
  00781	!++
    00782	!	Information saved by TOPS-10 when the front end is reloaded.
00783	!--
    00784	
  00785	ENTRY  TOPS10
    00786	 031	FE_RELOAD_10
00787	  FERNUM	0	0-35		!LH = CPU #
    00788						!RH = DTE #
 00789						!1B0 = MASTER DTE BIT
 00790	  FERSTS	1	0-35		!RELOAD STATUS
 00791						!1B0 = LOG REQUEST
    00792						!1B2 = DUMP FAILED
    00793						!1B3 = TO 10 ERROR DURING DUMP
  00794						!1B4 = TO 11 ERROR PASSING BOOTSTRAP
 00795						!1B6 = RELOAD FAILED
  00796						!1B7 = POWER FAIL DID NOT SET
   00797						!1B8 = POWER FAIL DID NO CLEAR
  00798						!1B9 = ROM DID NOT SEND A DOORBELL
   00799						!1B10 = BOOT DIDN'T MAKE IT TO THE 11
00800					!1B11 = 11 ROM DIDN'T CLR TO 11 DOORBELL
   00801						!1B12 = TO 10 BYTE XFR FOR DUMP HUNG
 00802						!1B13 = ENTER FAILURE FOR DUMP FILE
  00803						!1B14 = OPEN FAILURE FOR DUMP DEVICE
 00804						!1B15 = OUTPUT FAILURE FOR DUMP FILE
 00805						!1B16 = TO 11 BYTE XFER TIMED OUT
    00806						!177B35 = RETRY COUNT
 00807	  FERFNM	2	MAIN$Z		!FILE NAME STRING POINTER
   00808	  FERSIZ	3	0-35		!SIZE OF STRING
00809	END ENTRY
   00810	
 00811	!++
    00812	!	Information saved by TOPS-10 when the KS10 halts
  00813	!--
    00814	
  00815	ENTRY  TOPS10
    00816	 033	KS_HALT_STATUS_10
00817	  HSBCOD	0	0-35	!HALT STATUS CODE (PHYSICAL LOCATION 0	0-35
   00818	  HSBEPC	1	0-35	!PC AT ERROR (PHYSICAL LOCATION 1	0-35
   00819	  KS_HS_BLOCK	2	BODY-F	!PTR TO HALT STATUS BLOCK
    00820					!-LENGTH,,OFFSET FROM HSBCOD
00821	  HSBCBP	3	0-35	!PTR TO CLOCK STOP BLOCK (UNUSED	0-35
    00822					!-LENGTH,,OFFSET FROM HSBCOD
00823	END ENTRY
   00824	
 00825	!++
    00826	!	Obsolete set of disk statistics from TOPS-10. This is now recorded
    00827	!	in entry 045.
  00828	!--
    00829	
  00830	ENTRY  TOPS10
    00831	 040	OLD_DISK_STATS_10
00832	  USCNAM	0	0-35	!DEVICE NAME IN SIXBIT
    00833	  USCHID	1	0-35	!HOME BLOCK ID IN SIXBIT
  00834	  USCHCT	2	0-35	!HARD ERROR COUNT
    00835	  USCSCT	3	0-35	!SOFT ERROR COUNT
    00836	  SEEK_INC_CNT	4	0-35	! Seek imcomplete count - UNIPCT
   00837	  USCHNG	5	0-35	!HUNG COUNT
00838	  THUNG_CNT	5	9-17	! THUNG count	{ UNIHNG
 00839	  PHUNG_CNT	5	18-26	! PHUNG count	{
  00840	  SHUNG_CNT	5	27-35	! SHUNG count	{
  00841	  USCMCT	6	0-35	!SOFTWARE ERROR COUNT
00842	  SAT_ERRORS	6	0-11	! SAT error count	{
   00843	  RIB_ERRORS	6	12-23	! RIB error count	{ UNIMCT
00844	  CHKSM_ERRORS	6	24-35	! Checksum error count	{
00845	  USCBRC	7	0-35	!TOTAL BLOCKS READ IN BUFFERED MODE
 00846	  USCBWC	8	0-35	!TOTAL BLOCKS WRITTEN IN BUFFERED MODE
   00847	  USCDRC	9	0-35	!TOTAL BLOCKS READ IN DUMP MODE
00848	  USCDWC	10	0-35	!TOTAL BLOCKS WRITTEN IN DUMP MODE
 00849	  USCMRC	11	0-35	!TOTAL BLOCKS READ BY MONITOR
 00850	  USCMWC	12	0-35	!TOTAL BLOCKS WRITTEN BY MONITOR
   00851	  USCICT	13	0-35	!TOTAL BLOCKS READ FOR SWAPPER
00852	  USCOCT	14	0-35	!TOTAL BLOCKS WRITTEN BY SWAPPER
   00853	  USCMSC	15	0-35	!TOTAL SEEKS BY MONITOR
  00854	  USCUSC	16	0-35	!TOTAL SEEKS FOR JOBS
    00855	END ENTRY
   00856	
 00857	!++
    00858	!
 00859	!	TOPS-10 - ERROR CODE 41 ENTRY
 00860	!
 00861	!--
    00862	
  00863	ENTRY  TOPS10
    00864	 041	OLD_TAPE_STATS_10
00865	  DEVICE_NAME		0	0-35	! device name
  00866	  MEDIAID		1	0-35	! media identification
  00867	  NO_FRAMES_READ	2	0-35	! number of frames read
00868	  NO_FRAMES_WRITTEN	3	0-35	! number of frames written
    00869	  SOFT_READ_ERRORS	4	0-35	! 
    00870	  HARD_READ_ERRORS	5	0-35	!
00871	  SOFT_WRITE_ERRORS	6	0-35	!
    00872	  HARD_WRITE_ERRORS	7	0-35	!
    00873	  PPN			8	0-35	! program,,programmer number
    00874	  USER			9	0-35	! user making request
00875	END ENTRY
   00876	
 00877	!++
    00878	!	 Tape statistics recorded by TOPS-10.
   00879	!--
    00880	
  00881	ENTRY  TOPS10
    00882	 042	TAPE_STATS_10
    00883	  TPSNAM	0	0-35	!DEVICE NAME IN SIXBIT
    00884	  TPSRID	1	0-35	!REELID IN SIXBIT
    00885	  TPSWRC	2	0-35	!TOTAL # OF CHARACTERS READ
    00886	  TPSWWC	3	0-35	!TOTAL # OF CHARACTERS WRITTEN
 00887	  TPSSRE	4	0-35	!TOTAL # OF SOFT READ ERRORS
   00888	  TPSHRE	5	0-35	!TOTAL # OF HARD READ ERRORS
   00889	  TPSSWE	6	0-35	!TOTAL # OF SOFT WRITE ERRORS
  00890	  TPSHWE	7	0-35	!TOTAL # OF HARD WRITE ERRORS
  00891	  TPSPPN	8	0-35	!USER'S PPN
00892	  TPSLAB	9	0-35
  00893	  TPSUSN	10	0-35
 00894	  TPSUTP	11	0-35
 00895	END ENTRY
   00896	
  00897	!++
    00898	!	Disk statistics recorded by TOPS-10.
    00899	!--
    00900	
  00901	ENTRY  TOPS10
    00902	 045	DISK_STATS_10
    00903	  DSCSBP	0	MAIN-F	!PTR TO SUBLOCKS
   00904					!-#OF BLOCKS,,OFFSET FROM DSCSBP TO 1ST
    00905	END ENTRY
   00906	
 00907	!++
    00908	!	Information recorded by TOPS-10 when the DL10 communications
00909	!	subsystem detects an error.
   00910	!--
    00911	
  00912	ENTRY  TOPS10
    00913	 050	DL_HARDWARE_ERR_10
    00914	  DLEPRT	0	0-35		!DL10 PORT WITH ERROR
    00915	  DLECNI	1	0-35		!CONI DLC
 00916	  DLEDTI	2	0-35		!DATAI DLC
00917	  DLECN0	3	0-35		!CONI DLB R=0
  00918	  DLECN1	4	0-35		!CONI DLB R=1
  00919	  DLECN2	5	0-35		!CONI DLB R=2
  00920	  DLECN3	6	0-35		!CONI DLB R=3
  00921	  DLEDT1	7	0-35		!DATAI DLB (R=1	0-35 MB
  00922	  DLEPGM	8	0-35		!11 PROGRAM NAME
    00923	  DLESTS	9	0-35		!SOFTWARE STATUS
    00924	! DLEERR	10	0-35
 00925	! DLERHS	11	0-35
 00926	! DLECOD	12	0-35
 00927	! DLEPER	13	0-35
 00928	END ENTRY
   00929	
 00930	!++
    00931	!	Obsolete parity error/NXM entry written by TOPS-1O for the
  00932	!	KI10 processor.
00933	!--
    00934	
  00935	ENTRY  TOPS10
    00936	 051	KI_PAR_NXM_INT_10
00937	  KIINAM	0	0-35	!CPU NAME IN SIXBIT
  00938	  KIIPCI	1	0-35	!PC AT INTERRUPT
00939	  KIIAPR	2	0-35	!CONI APR AT INTERRUPT
    00940	  KIIPII	3	0-35	!CONI PI AT INTERRUPT
00941	  KIIPPN	4	0-35	!PPN OF USER RUNNING AT INTERRUPT
   00942	  KIIPGM	5	0-35	!SIXBIT PROGRAM NAME OF USER RUNNING AT INTERRUPT
  00943	END ENTRY
   00944	
 00945	!++
    00946	!
 00947	!	The following describes the new KL-10 data parity trap
 00948	!	and interrupt records for TOPS-10.
 00949	!
 00950	!--
    00951	
  00952	ENTRY  TOPS10
    00953	 052	KL_PAR_NXM_INT_10
00954	  CPU_NAME		0	0-35	!In SIXBIT.
  00955	  PROGRAM_COUNTER	1	0-35	!At time of interrupt.
00956	  APR_STATUS		2	0-35	!CONI APR at time of interrupt.
00957	  PI_STATUS		3	0-35	!CONI PI shows level of error.
  00958	  RDERA_STATUS		4	0-35	!RDERA at time of interrupt.
 00959	  SBDIAG_LIST		5	HEAD-F	!SBDIAGs at time of error.
  00960	END ENTRY
   00961	
 00962	!++
    00963	!	Obsolete NXM trap entry written by TOPS-10 for the KS10 processor.
    00964	!--
    00965	
  00966	ENTRY  TOPS10
    00967	 054	KS_NXM_TRAP_10
   00968	  KSNNAM	0	0-35	!CPU NAME IN SIXBIT
  00969	  KSNPCT	1	0-35	!PC AT TRAP
00970	  KSNPFW	2	0-35	!PAGE FAIL WORD
 00971	  KSNPMA	3	0-35	!MAPPED PHYSICAL MEMORY ADDRESS AT TRAP
  00972	  KSNBDW	4	0-35	!BAD DATA WORD
  00973	  KSNPIT	5	0-35	!CONI PI AT TRAP
00974	  KSNPPN	6	0-35	!PPN OF USER THAT TRAPPED
 00975	  KSNPGM	7	0-35	!PROGRAM NAME IN SIXBIT
   00976	  KSNGDW	8	0-35	!GOOD DATA WORD
 00977	  KSNRET	9	0-35	!RETRY WORD
00978				!1B0 =THIS IS A KS10
    00979				!1B1 = NON-RECOVERABLE ERROR
 00980				!27-35 = RETRY COUNT
    00981	  KSNNRT	10	0-35	!NUMBER OF RECOVERABLE TRAPS SINCE LAST RELOAD
    00982	  KSNNNT	11	0-35	!NUMBER OF NON-RECOVERABLE TRAPS SINCE LAST RELOAD
00983	END ENTRY
   00984	
 00985	!++
    00986	!
 00987	!	The following describes the new KL-10 data parity trap
 00988	!	and interrupt records for TOPS-10.
 00989	!
 00990	!--
    00991	
  00992	ENTRY  TOPS10
    00993	 055	KL_OR_KS_PAR_TRAP_10
  00994	  CPU_NAME		0	0-35	!In SIXBIT.
  00995	  PROGRAM_COUNTER	1	0-35	!At time of interrupt.
00996	  PAGE_FAIL_WORD	2	0-35	!Includes address and PF code.
   00997	  PHYS_ADDRESS		3	0-35	!of trap.
00998	  BAD_WORD		4	0-35	!Contents of word before recovery.
    00999	  PI_STATUS		5	0-35	!CONI PI shows level of error.
  01000	  USER_ID		6	0-35	!PPN of user at time of trap.
01001	  PROGRAM_NAME		7	0-35	!of current user at time of trap.
 01002	  GOOD_WORD		8	0-35	!Contents of word after recovery.
    01003	  NOT_KL_FLAG		9	0	!Set if this is KS10.
  01004	  NOT_RECOVERED_FLAG	9	1	!Set by monitor when can't recover.
  01005	  CACHE_FAILED_FLAG	9	2	!When read from memory OK.
  01006	  CACHE_USE_FLAG	9	3	!Set when cache was on at time.
01007	  SWEEP_FLAG		9	4	!If error during cache sweep.
01008	  CACHE_DISABLED	9	5	!If cache was disabled.
   01009	!undefined		9	6-17
    01010	  CACHE_ON_COUNT	9	18-26	!Count of errors with cache on.
 01011	  CACHE_OFF_COUNT	9	27-35	!Count of errors with cache off.
    01012	  RECOVERED_COUNT	10	0-35	!Count of recoverable trap errors.
  01013	  NOT_RECOVERED_COUNT	11	0-35	!Count of non-recoverable errors.
    01014	END ENTRY
   01015	
 01016	!++
    01017	!
 01018	!	The following describes the new KL-10 interrupt and trap
    01019	!	sweep entries.
 01020	!
 01021	!--
    01022	
  01023	ENTRY  TOPS10
    01024	 056	NXM_MEMORY_SWEEP_10
   01025	  CPU_NAME		0	0-35	!In SIXBIT.
  01026	  TOTAL_SINCE_RELOAD	1	0-35	!Count of NXMs.
    01027	  SPUR_SINCE_RELOAD	2	0-35	!Count of spurious NXMs.
 01028	  FIRST_ADDRESS		3	0-35	!Of this sweep.
   01029	  LAST_ADDRESS		4	0-35	!Of this sweep.
    01030	!obsolete for compat.	5	0-35
    01031	  TOTAL_THIS_SWEEP	6	0-35
  01032	!same as word 1 ??	7	0-35
  01033	!obsolete for compat.	8	0-35
    01034	  ADDRESS_AND		9	0-35	!Logical and of bad addresses.
01035	  ADDRESS_OR		10	0-35	!Logical OR or bad addresses.
 01036	  SEEN_BY_CHANNEL	11	0-35	!Count of NXMs seen by channel.
01037	!undefined		12	0-34
   01038	  BIT_PER_PAGE_FLAG	12	35	!Flag for NXM table
  01039	  NXM_TAB,_BEFORE_ERR	13	HEAD-F	!
    01040	  NXM_TAB,_AFTER_ERR	14	HEAD-F	!
01041	  TOP_TEN,_BAD_ADD	15	HEAD-F	!
  01042	END ENTRY
   01043	
  01044	ENTRY  TOPS10
    01045	 057	PAR_MEMORY_SWEEP_10
   01046	  CPU_NAME		0	0-35	!In SIXBIT.
  01047	  TOTAL_SINCE_RELOAD	1	0-35	!Count of parity errors.
01048	  SPUR_SINCE_RELOAD	2	0-35	!Count of spurious parity errors.
  01049	  FIRST_CONTENTS	3	0-35	!Of this sweep.
   01050	  FIRST_ADDRESS		4	0-35	!Of this sweep.
   01051	  PAR_SWEEP_DATA	5	HEAD-F	!pointer to %CCPAR sub-table.
  01052	  TOP_TEN,_BAD_ADD	6	HEAD-F	!Pointer to %CCMPT sub-table.
01053	END ENTRY
   01054	
 01055	!++
    01056	!	Obsolete entry written by TOPS-10 for the KL10 processor with
    01057	!	a parity error interrupt.
01058	!--
    01059	
  01060	ENTRY  TOPS10
    01061	 060	OLD_CPU_PAR_INT_10
    01062	  KDINAM	0	0-35	!CPU NAME IN SIXBIT
  01063	  KDITPE	1	0-35	!# MPE'S
   01064	  KDISPE	2	0-35	!# SPURIOUS MPE'S
    01065	  KDIMPC	3	0-35	!# OF CONTINUES AFTER MPE HALTS
01066	  KDIMPP	4	0-35	!PC AT MPE INTERRUPT
 01067	  KDIMPW	5	0-35	!CONTENTS OF 1ST BAD WD FOUND ON SWEEP
        01068	  KDIMPA	6	0-35	!ADDRESS OF 1ST BAD WD FOUND ON SWEEP
    01069	  KDIPAR	7	0-35	!AOB POINTER TO %CCPAR TABLE
   01070	  KDIMPT	8	0-35	!AOB POINTER TO %CCMPT TABLE
   01071	  KDIPPN	9	0-35	!PPN OF USER
    01072	  KDIPGM	10	0-35	!PROGRAM NAME
  01073	  KDICNI	11	0-35	!CONI APR
 01074	  KDIERA	12	0-35	!RDERA
    01075	  KDISBD	13	0-35	!PTR TO SBDIAG SUBTABLE
  01076	END ENTRY
   01077	
 01078	!++
    01079	!
 01080	!	The following describes the old KL-10 data parity trap
 01081	!	entries on TOPS-10. (Not to be supported in ANALYZE).
  01082	!
 01083	!--
    01084	
  01085	ENTRY  TOPS10
    01086	 061	CPU_PAR_TRAP_10
  01087	  PAGE_FAIL_WORD	0	0-35	!At time of trap.
 01088	  BAD_WORD		1	0-35	!Contents of word with parity error.
  01089	  GOOD_WORD		2	0-35	!What the word should have been.
01090	  PHYS_ADDRESS		3	0-35	!Address of parity error.
    01091	!undefined		4	0
  01092	  NOT_RECOVERED_FLAG	4	1	!Set by monitor when can't recover.
  01093	  CACHE_FAILED_FLAG	4	2	!When read from memory OK.
  01094	  CACHE_USE_FLAG	4	3	!Set when cache was on at time.
01095	  SWEEP_FLAG		4	4	!If error during cache sweep.
01096	  CACHE_DISABLED	4	5	!If cache was disabled.
   01097	!undefined		4	6-17	!
  01098	  CACHE_ON_COUNT	4	18-26	!Count of errors with cache on.
 01099	  CACHE_OFF_COUNT	4	27-35	!Count of errors with cache off.
    01100	  RECOVERED_COUNT	5	0-35	!Count of recoverable trap errors.
   01101	  NOT_RECOVERED_COUNT	6	0-35	!Count of non-recoverable errors.
01102	  PROGRAM_COUNTER	7	0-35	!PC at time of trap.
  01103	END ENTRY
   01104	
 01105	!++
    01106	!
 01107	!	Old interrupt entry from TOPS-10. Not to be
  01108	!	supported in ANALYZE.
    01109	!
 01110	!--
    01111	
  01112	ENTRY  TOPS10
    01113	 062	CPU_PAR_INT_10
   01114	  CPU_NAME		0	0-35	!In SIXBIT.
  01115	  MEM_PAR_ERRORS	1	0-35	!Count of memory parity errors.
  01116	  SPURIOUS_ERRORS	2	0-35	!Count of spurious parity errors.
    01117	  ATTEMPTED_CONTINUES	3	0-35	!Number of times tried to continue.
   01118	  PROGRAM_COUNTER	4	0-35	!PC at first error.
   01119	  FIRST_CONTENTS	5	0-35	!Found during sweep.
   01120	  FIRST_ADDRESS		6	0-35	!Physical address of first bad word.
  01121	  PAR_SWEEP_DATA	7	HEAD-F	!pointer to %CCPAR sub-table.
  01122	  TOP_TEN,_BAD_ADD	8	HEAD-F	!Pointer to %CCMPT sub-table.
01123	  USER_ID		9	0-35	!PPN of user running at time of error.
 01124	  PROGRAM_NAME		10	0-35	! His program.
    01125	  APR_STATUS		11	0-35	!CONI APR at time of first error.
  01126	  RDERA_STATUS		12	0-35	!RDERA at time of first error.
   01127	  SBDIAG_LIST		13	HEAD-F	!Pointer to SBDIAG sub-table.
   01128						! - # blocks,,offset from header.
    01129	END ENTRY
   01130	
 01131	!++
    01132	!
 01133	!	KL10 status block entry for TOPS-10. This comes after
  01134	!	certain entries if KLSTAT has been turned on.
01135	!
 01136	!--
    01137	
  01138	ENTRY  TOPS10
    01139	 063	KL_CPU_STATUS_10
 01140	  APR_ID		0	0-35	!CPU identifier.
    01141	  APR_STATUS		1	0-35	!CONI APR word at time of crash.
    01142	  PI_STATUS		2	0-35	!CONI PI word at time of crash.
 01143	  PAGE_DATAI		3	0-35	!DATAI PAG at time of crash.
   01144	  PAGE_STATUS		4	0-35	!CONI PAG at time of crash.
   01145	  LAST_MUUO		5	0-35	!UPT location 424.
    01146	  LAST_MUUO_PC		6	0-35	!UPT location 425.
 01147	  MUUO_CONTEXT_WORD	7	0-35	!UPT location 426.
  01148	  MUUO_RESERVED		8	0-35	!UPT location 427.
01149	  RDERA_STATUS		9	0-35	!RDERA at crash time.
   01150	  CONI_RH20_LIST	10	0-35	!All CONIs from RH20s.
01151	  CONI_DTE_LIST		18	0-35	!All CONIs from DTEs.
 01152	  CHN_LOGOUT_LIST	22	BODY-F	!EPT loc 0 through 37.
  01153	  DTE_CONTROL_BLOCK	54	BODY-F	!EPT loc 140 through 177.
  01154	  PAGE_FAIL_WORD	86	0-35	!UPT location 500.
    01155	  PAGE_FAIL_OLD_PC	87	0-35	!UPT location 501.
  01156	  PAGE_FAIL_NEW_PC	88	0-35	!UPT location 502.
  01157	  UPT_503		89	0-35	!Reserved (unknown).
   01158	  AC_BLOCK_6_DATA	90	BODY-F	!Locs. 0-3 and 12.
 01159	  AC_BLOCK_7_DATA	95	BODY-F	!Locs. 0-2.
   01160	  SBDIAG_LIST		98	HEAD-F	!Pointer to SBDIAG list.
   01161	END ENTRY
   01162	
 01163	!++
    01164	!
 01165	!	Device status block entry for TOPS-10.
  01166	!
 01167	!--
    01168	
  01169	ENTRY  TOPS10
    01170	 064	DEVICE_STATUS_10
 01171	  NUMBER_IO_INSTR	0	0-17	!Number of IO instructions in block.
 01172	  START_OF_INSTR	0	18-35	!Where instructions begin.
 01173	  NUMBER_OF_RESULTS	1	0-17	!Number of IO instruction results.
 01174	  START_OF_RESULTS	1	18-35	!Where results begin.
    01175	  DEVICE_DATA		2	0-35	!-(NUMBER_IO_INSTR + NUMBER_OF_RESULTS)
 01176	END ENTRY
   01177	
 01178	!++
    01179	!	Obsolete KL10 address fail entry written by TOPS-10.
   01180	!--
    01181	
  01182	ENTRY  TOPS10
    01183	 066	OLD_KL_ADDRESS_FAIL_10
01184	  KAENAM	0	0-35	!SIXBIT CPU NAME
01185	  KAETNE	1	0-35	!TOTAL # OF ERRORS
   01186	  KAESNE	2	0-35	!# F SPURIOUS ERRORS
 01187	  KAEMPP	3	0-35
  01188	  KAENJA	4	0-35
  01189	  KAEMNA	5	0-35
  01190	  KAELNA	6	0-35
  01191	  KAEMNR	7	0-35
  01192	  KAENTS	8	0-35	!# ERRORS DETECTED THIS SWEEP
  01193	  KAENSC	9	0-35	!# OF SWEEPS
    01194	  KAEUEN	10	0-35	!# OF USER ENABLED ERRORS
01195	  KAENAA	11	0-35	!LOGICAL AND OF BAD ADDRESSES
 01196	  KAENOA	12	0-35	!LOGICAL OR OF BAD ADDRESSES
  01197	  KAENCS	13	0-35	!# FAILURES DET BY CHAN BUT NOT CPU
01198	  KAEKPG	14	0-35	!FLAG WD FOR NXM TABLES
  01199	  KAEBEF	15	0-35	!PTR TO NXM TABLE BEFORE ERROR
01200	  KAEAFT	16	0-35	!PTR TO NXM TABLE AFTER ERROR
 01201	  KAEADR	17	0-35	!PTR TO LIST OF BAD ADDRESSES
 01202	  KAEPPN	18	0-35	!PPN OF USER
   01203	  KAEPGM	19	0-35	!PROGRAM NAME
  01204	  KAECNI	20	0-35	!CONI APR
 01205	  KAEERA	21	0-35	!RDERA
    01206	  KAESBD	22	0-35	!PTR TO SBDIAG SUBTABLE
  01207	END ENTRY
   01208	
 01209	!++
    01210	!	Address fail data written by TOPS-10.
   01211	!--
    01212	
  01213	ENTRY  TOPS10
    01214	 067	KL_ADDRESS_FAIL_10
    01215	  KAENAM	0	0-35	!CPU NAME IN SIXBIT
  01216	  KAETNE	1	0-35	!# REPRODUCIBLE ERRORS
    01217	  KAESNE	2	0-35	!# SPURIOUS ERRORS
   01218	  KAEMPP	3	0-35	!PC AT ERROR
    01219	  KAENJA	4	0-35	!# OF JOBS AFFECTED
  01220	  KAEMNA	5	0-35	!1ST BAD ADDRESS
01221	  KAELNA	6	0-35	!LAST ADDRESS
   01222	  KAEMNR	7	0-35	!RELATIVE ADDR OF NXM IN SEGMENT
    01223	  KAENTS	8	0-35	!# OF ERRORS DETECTED THIS SWEEP
    01224	  KAENSC	9	0-35	!# OF CORE SWEEPS
    01225	  KAEUEN	10	0-35	!# USER ENABLED ERRORS
   01226	  KAENAA	11	0-35	!LOGICAL AND OF BAD ADDRESSES
 01227	  KAENOA	12	0-35	!LOGICAL OR OF BAD ADDRESSES
  01228	  KAENCS	13	0-35	!# DET BY CHAN BUT NOT CPU
    01229	  KAEKPG	14	0-35	!FLAG WD FOR NXM TABLES
  01230	  KAEBEF	15	0-35	!PTR TO NXM TABLES BEFORE ERROR
    01231					!-LENGTH,,OFFSET FROM HEADER WD 0
01232	  KAEAFT	16	0-35	!PTR TO NXM TABLES AFTER ERROR
01233					!-LENGTH,,OFFSET FROM HEADER WD 0
01234	  KAEADR	17	0-35	!PTR TO LIST OF BAD ADDRESSES
      01235					!-LENGTH,,OFFSET FROM HEADER WD 0
01236	  KAEPPN	18	0-35	!PPN OF USER
   01237	  KAEPGM	19	0-35	!PROGRAM NAME IN SIXBIT
  01238	  KAECNI	20	0-35	!CONI APR
 01239	  KAEERA	21	0-35	!RDERA
    01240	  KAESBD	22	0-35	!PTR TO SBDIAG SUBTABLE
  01241					!-# OF ENTRIES,,OFFSET FROM HEADER WD 0
    01242	END ENTRY
   01243	
 01244	!++
    01245	!	Information about hard copy errors written by TOPS-10 for
   01246	!	the LP100 controller.
    01247	!--
    01248	
  01249	ENTRY  TOPS10
    01250	 071	LP100_ERR_10
01251	  LPTNAM	0	0-35	!DEVICE NAME IN SIXBIT
    01252	  LPTCNI	1	0-35	!CONI LP100
01253	  LPTWRD	2	0-35	!LAST DATA WORD SENT TO PRINTER
01254	  LPTTYP	3	0-35	!LPT ID
    01255	END ENTRY
   01256	
  01257	!++
    01258	!	Information written by TOPS-10 on errors from a hard copy
   01259	!	controller (BA10 or LP100).
   01260	!--
    01261	
  01262	ENTRY  TOPS10
    01263	 072	HARD_COPY_ERR_10
 01264	  HCCNAM	0	0-35	!SIXBIT DEVICE MANE
  01265	  HCCTYP	1	0-35	!CONTROLLER/DEVICE NAME
   01266	  HCCCTL	1	0-5	!CONTROLLER TYPE
 01267						!0 = ILLEGAL
01268						!1 = BA10
   01269						!2 = LP100
  01270						!3 = LP20 (ON KS10)
   01271						!4 = CD20 (ON KS10)
   01272	  HCCDEV	1	6-11	!DEVICE TYPE
    01273						!0 = ILLEGAL
01274						!1 = LPT
    01275						!2 = CDR
    01276						!3 = CDP
    01277						!4 = PLT
    01278						!1B17 = NON-RECOVERABLE
    01279						!RH = RETRY COUNT
01280	  HCCUID	2	0-35	!PPN OF USER
    01281	  HCCPGM	3	0-35	!PROGRAM NAME
   01282	  HCCSBP	4	0-35	!PTR TO DEVICE SUB-BLOCK
  01283					!+LENGTH,,OFFSET FROM HCCNAM
01284	END ENTRY
   01285	
 01286	!++
    01287	!	The following entries are recorded by TOPS-20 via the
  01288	!	monitor itself (the SYSERR) module.
01289	!--
    01290	
  01291	!++
    01292	!
 01293	!	Reload information recorded by TOPS-20 systems whether or not an
 01294	!	error occurred.
01295	!
 01296	!--
    01297	
  01298	ENTRY  TOPS20
    01299	 101	SYSTEM_RELOAD_20
 01300	  SYS_NAME		0	MAIN$Z	! Offset to ASCIZ system name string
01301	  SYS_BUILD_DATE	1	0-35	!System build date in universal format.
    01302	  MONITOR_VERSION	2	0-35	!Funny format showing major, minor
   01303						!version, and edit number.
 01304	  CPU_SERIAL_NUMBER	3	0-35	!CPU which reloaded system as opposed
   01305						!to CPU logging an error.
  01306	  WHY_RELOAD_CODE	4	MAIN$Z	!Major reason-type supplied by
01307						!operator when reloading.
  01308	  BUGHLT_ADDRESS	5	0-35	!If auto-reload.
  01309	  RELOAD_FLAGS		6	0-35	!Don't know what flags are.
  01310	END ENTRY
   01311	
 01312	!++
    01313	!
 01314	!	Information recorded by TOPS-20 when a BUGCHK, BUGINF, or BUGHLT
 01315	!	takes place.
   01316	!
 01317	!--
    01318	
  01319	ENTRY  TOPS20
    01320	 102	MONITOR_BUG_DATA_20
   01321	  SYS_NAME		0	MAIN$Z	! Offset to ASCIZ system name string
01322	  CPU_SERIAL_NUMBER	1	0-35	!CPU which reloaded system as opposed
   01323						!to CPU logging an error.
  01324	  MONITOR_VERSION	2	0-35	!Funny format showing major, minor
   01325						!version, and edit number.
 01326	  SYS_BUILD_DATE	3	0-35	!System build date in universal format.
    01327	!Undefined		4	0-33
    01328	  BUG_TYPE_FLAG		4	34-35	!Type of bug code
01329	!   DEFINE
  01330	!     BUGCHK = 1
 01331	!     BUGINF = 2
 01332	!     BUGHLT = 3
 01333	!   END DEFINE
   01334	  ERROR_ADDRESS		5	0-35	!Address of halt/check
 01335	  FORK_NUMBER		6	0-17	!Fork active at error time.
   01336	  JOB_NUMBER		6	0-35	! Job active at time of occurrance.
 01337	  USER_ID		7	0-35	! User number.
01338	  PROGRAM_NAME		8	0-35	! Name of job user was running.
   01339	  BUG_MESSAGE		9	MAIN$Z	! Offset to ASCIZ message string.
01340	  SAVED_ACS		10	BODY-F	!Contents of AC at time of error.
      01341						!WORDS 10-25
01342	  PI_STATUS		26	0-35	!CONI PI at time of STOPCODE.
  01343	  REGISTER_COUNT	27	0-35	!Maximum of 4.
   01344	  REGISTER_ONE		28	0-35	!
  01345	  REGISTER_TWO		29	0-35	!
  01346	  REGISTER_THREE	30	0-35	!
 01347	  REGISTER_FOUR		31	0-35	!
 01348	  STOP_BUG_NAME		32	0-35	!BUGCHK name in SIXBIT.
    01349	  BUGHLT_DATE_TIME	33	0-35	!Universal format time of crash.
   01350	  CHECK_TALLY		34	0-35	!Total number of errors since reload.
  01351	  APR_STATUS		35	0-35	!CONI APR at error-time.
 01352	  PAGE_STATUS		36	0-35	!CONI PAG at error-time.
01353	  PAGE_DATAI		37	0-35	!DATAI PAG at error-time.
01354	  RDERA_STATUS		38	0-35	!RDERA at error-time.
  01355	END ENTRY
   01356	
 01357	!++
    01358	!
 01359	!	TOPS-20 - ERROR CODE 111 ENTRY - Massbus device error
  01360	!
 01361	!--
    01362	
  01363	ENTRY  TOPS20
    01364	 111	MASSBUS_ERR_20
   01365	  DEV_NAM		0	0-35	!device name
  01366	  DEV_NAME		0	0-35	!device name
 01367	  VOL_ID		1	0-35	!volume identification
   01368	  MEDIAID		1	0-35	!media identification
   01369	  RH_CHAN_TYPE		2	15-17	!RH controller type
    01370	  RH_DEV_TYPE		2	31-35	!device type
  01371	  LBN			3	0-35	!logical block number at error
  01372	  ERR_LOCATION		3	0-35	!record number at error
 01373	  FILE_IN_ERROR		3	0-17	! FILE IN ERROR
   01374	  RECORD_IN_ERROR	3	18-35	! RECORD IN ERROR
    01375	  FINAL_ERR_STATE	4	0-35	!final error state from TOPS20
  01376	  HARD			4	0	!hard error - non-recoverable
01377	  ECC_CORR		4	1	!ECC correctable error
    01378	  DAT_ERR		4	2	!data error
 01379	  HDR_ERR		4	3	!header error
    01380	  DEV_ERR		4	4	!device error - neither data 
   01381						!or header
  01382	  POSITION_ERR		4	5	!positioning error
    01383	  FORMAT_ERR		4	6	!format error
 01384	  REC_NOMOTION_ERR	4	17	!recoverable no motion error
01385	  CONI_INITIAL		5	0-35	!initial RH controller status
01386	  RHCS1_ERR             5       20-35   ! Control and Status 1 for RH11
 01387	  CONI_FINAL		6	0-35	!final RH controller status
    01388	  SEEK_CNT		7	0-35	!number of seeks
  01389	  BLOCKS_READ		8	0-35	!no. of blocks read for disk
  01390	  FRAMES_READ		8	0-35	!no. of frames read for tape
  01391	  BLOCKS_WRITE		9	0-35	!no. of blocks written for disk
   01392	  FRAMES_WRITTEN	9	0-35	!no. of frames written for tape
  01393	  FILE_NAME		10	0-35	!file name
 01394	  USER			11	0-35	!user making request
01395	  PROGRAM_RUN		12	0-35	!program running
   01396	  RH_DATI_TCR_ERR	13	0-35	!RH control reg at error
  01397	  RHCS2_ERR             13      20-35   ! Control and Status 2 for RH11
 01398	  RH_DATI_TCR_END	14	0-35	!RH control reg at end
    01399	  RH_DATI_BAR_ERR	15	0-35	!RH block address reg at err
   01400	  UBA_STATUS_ERR	16	0-17	! IF RH11
   01401	  UBA_MAP_ERR		16	18-35	! IF RH11
    01402	  RH_DATI_BAR_END	16	0-35	!RH block address reg at end
   01403	  UBA_STATUS_END	16	0-17	! IF RH11
   01404	  UBA_MAP_END		16	18-35	! IF RH11
    01405	  UDB_JOB0		17	0-35	!unit data block for job 0
 01406	  IORB_STATUS		18	0-35	!IORB status word
  01407	  SUM_HARD		18	2       !Used by summary to say hard/soft
 01408	  SOFT_READ		19	0-35	!count of soft read errors
01409	  SOFT_WRITE		20	0-35	!count of write errors
   01410	  HARD_READ		21	0-35	!count of hard read errors
01411	  HARD_WRITE		22	0-35	!count of hard write errors
   01412	  CYLINDER		23	0-35	!cylinder position at error for disk
 01413	  FILE_POSITION		23	0-35	!file position at error for tape
01414	  SURF_SECT		24	0-35	!surface and sector at error for disk
    01415	  ERR_RECORD		24	0-35	!record in error for tape
01416	  CHAN_LOGO0		25	0-35	!channel logout word 0
   01417	  CHAN_LOGO1		26	0-35	!channel logout word 1
   01418	  CHAN_LOGO2		27	0-35	!channel logout word 2
   01419	  CCW1			28	0-35	!first chan control word
 01420	  CCW2			29	0-35	!second chan control word
01421	  MPE_CNT		30	0-35	!parity error count
    01422	  NXM_CNT		31	0-35	!NXM error count
  01423	  RETRY_CNT		32	18-35	!final retry error count
 01424	  CHAN_ADDR		33	0-35	!channel address
01425	! **** unknown		33	0-32    ! [1000]
  01426	  CHAN_NUMBER		33	33-35	!just the channel number
    01427	  UNIT_ADDR		34	0-35	!unit address
   01428	  KON_NUMBER		34	0-17    ! [1000]
    01429	  UNT_NUMBER		34	32-35	! Funny name used by some people
  01430	  UNIT_NUMBER		34	32-35	! [1000]just the unit number
01431						! Can't handle 8-bit RP20 unit numbers
    01432	  SOFT_POS_ERR		35	0-35	!soft position error count
  01433	  HARD_POS_ERR		36	0-35	!hard positioning error count
    01434	  OVERRUN_ERR		37	0-35	!overrun error count
    01435	  ICR			38	0-35	!content of initial control reg
01436	  INIT_CNTRL_REG	38	0-35	!content of initial control reg
 01437	  MB_DEV, _TABLE	39	BODY-F	! MASSBUS device registers
    01438						!  39 - 54
  01439	! ***** ADDITIONAL DEFINITIONS FOR DX20 *****
  01440	  DX_VER		39	18-35	! DX version number
    01441	  DX20_MASSBUS_REG	40	MAIN+F	! Pointer to MASSBUS registers
   01442						!  +LENGTH,,OFFSET
    01443	  DX20_DEVICE_REG	41	MAIN+F	! Pointer to device registers
01444						!  +LENGTH,,OFFSET
    01445	!++
    01446	!
 01447	!	TM78 controller status block
  01448	!
 01449	!--
    01450	  TM78_CAS_REGS,_END_20	39	BODY-L	! CAS REGISTERS 0-21 FOR TU78
    01451	  TM78_CAS_REGS,_ERR_20 39	BODY-R	
   01452	  TM78_U_CODE_REVS,_20	57	BODY-F	! TU78 U-CODE REVISION LEVELS (2 WORDS)
01453	  TM78_SENSE_BYTES,_20	59	BODY-F	! 60 8-BIT BYTES IN 15 WORDS
 01454	END ENTRY
   01455	
 01456	!++
    01457	!	This is the Tops-20 Release 5 disk/tape statistics entry.
   01458	!	It is not an error. It occurs at normal system shutdown and
 01459	!	at tape unloads, and for disk mount/dismount.
01460	!--
    01461	
  01462	ENTRY TOPS20
01463	114	USAGE_DATA_20
01464	USAGE_EVENT	0	0-35		! 1 = system shutdown
 01465						! 2 = disk pack mount
 01466						! 3 = disk pack dismount
   01467						! 4 = magtape unload
  01468	TAPE_UNIT	1	0-35		! Magtape unit number or 0 if disk
01469	VOLUME_ID	2	0-35		! SIXBIT name of volume/structure
 01470	CHN_PIA		3	8-10		! channel PI level
  01471	CHN_BLK_ID	3	11-12		! block code (1=CDB)
  01472	CHN_TYPE	3	13-17		! channel type
01473	DEV_PIA		3	26-28		! device PIA level
 01474	DEV_BLK_ID	3	29-30		! block code (2=KDB, 3=UDB)
01475	DEV_TYPE	3	31-35		! device type
 01476	CHN_NUMBER	4	0-35		! channel number
  01477	KON_NUMBER	5	0-17		! kontroller number (-1 if none)
 01478	UNT_NUMBER	5	32-35		! unit number
    01479	UNIT_NUMBER	5	32-35		! just the unit number
    01480						! Can't handle 8-bit RP20 unit numbers
    01481	TOTAL_READS	6	0-35		! total reads on this unit
 01482	TOTAL_WRITES	7	0-35		! total writes on this unit
    01483	TOTAL_SEEKS	8	0-35		! total seeks on this unit
 01484	RD_NRZI		9	0-35		! frames read in NRZI
    01485	RD_PE		10	0-35		! frames read in PE
  01486	RD_GCR		11	0-35		! frames read in GCR
01487	WR_NRZI		12	0-35		! frames written in NRZI
01488	WR_PE		13	0-35		! frames written in PE
    01489	WR_GCR		14	0-35		! frames written in GCR
  01490	END ENTRY
   01491	
 01492	!++
    01493	!	Information recorded by TOPS-20 when some part of the configuration
   01494	!	changes status. This is not an error.
   01495	!--
    01496	
  01497	ENTRY  TOPS20
    01498	 115	CONFIG_CHANGE_20
 01499	  COMMAND_CODE		0	12-17	!OPERATION CODE FIELD
  01500	  UNIT_TYPE		1	31-35	!UNIT TYPE
 01501	  DEVICE_NAME		2	0-35	!SIXBIT LOGICAL DEVICE NAME
   01502	  MTOPR_FUNCTION	3	0-35	!MTOPR FUNCTION $MOINF WORD $MOISN
    01503	  CHANNEL_NUMBER	3	9-11	!CHANNEL #
   01504	  CONTROLLER_NUMBER	3	12-14	!CONTROLLER #
 01505	  UNIT_NUMBER		3	15-17	!UNIT #
  01506	  SERIAL_NUMBER		3	20-35	!DRIVE SERIAL NUMBER  (IN BINARY)
    01507	  CHANGE_REASON		4	0-35	!WORD CONTAINING OFFSET TO REASON STRING
   01508	END ENTRY
   01509	
  01510	!++
    01511	!	System log entry
    01512	!--
    01513	
  01514	ENTRY  TOPS20
    01515	 116	SYS_ERROR_LOG_20
 01516	  ERROR_LOG		0	BODY-F	!See below
01517	END ENTRY
   01518	
 01519	!++
    01520	!	TOPS-20 front-end entry 
 01521	!--
    01522	
  01523	ENTRY  TOPS20
    01524	 130	FE_DEVICE_ERR_20
 01525	  FE_DATA		0	BODY-F	!Common FE table data
 01526	END ENTRY
   01527	
  01528	!++
    01529	!	Information saved by TOPS-20 when the front end is reloaded.
01530	!--
    01531	
  01532	ENTRY  TOPS20
    01533	 131	FE_RELOAD_20
01534	  R1_NUM	0	0-35		!-11 NUMBER
    01535	  R1_STS	1	0-35		!RELOAD STATUS BITS
 01536	  $R1GTF	1	0		!GTJFN FAILED FOR DUMP FILE
 01537	  $R1OPF	1	1		!OPENF FAILED FOR DUMP FILE
 01538	  $R1DPF	1	2		!DUMP FAILED
 01539	  $R110E	1	3		!TO -10 ERROR ON DUMP
  01540	  $R111E	1	4		!TO -11 ERROR ON BOOT
  01541	  $R1ASF	1	5		!ASGPAG FAILED ON DUMP
 01542	  $R1RLF	1	6		!RELOAD FAILED
    01543	  $R1PDF	1	7		!-11 DIDN'T POWER DOWN
 01544	  $R1PUF	1	8		!-11 DIDN'T POWER UP
   01545	  $R1RMF	1	9		!ROM DID NOT ACK THE -10
    01546	  $R1BSF	1	10	!-11 BOOT PROGRAM DIDN'T MAKE IT TO THE -11
01547	  $R1NRL	1	11		!-11 TOOK MORE THAN 1 MINUTE TO RELOAD$
   01548					!WILL CAUSE A RETRY
    01549	  ER$DHG	1	12		!TO-10 BYTE XFER FOR DUMP HUNG
  01550	  ER$ENF	1	13		!ENTER FAILURE FOR DUMP FILE
    01551	  ER$OPE	1	14		!OPEN FAILURE FOR DUMP OUTPUT DEVICE
 01552	  ER$OUF	1	15		!OUTPUT FAILURE FOR DUMP FILE
   01553	  ER$TT1	1	16		!TO-11 BYTE XFER TIMED OUT
 01554	  $R1RTC	1	30-35		!RETRY COUNT
  01555	  R1_FNM	2	0-35		!FILE NAME POINTER
  01556	  R1_ERW	3	0-35		![534]BITS 2-17=RAD50 11'S FAILURE CODE
 01557					!BITS 20-35 = 11'S PARITY STATUS REGISTER
  01558	END ENTRY
   01559	
 01560	!++
    01561	!	Information saved by TOPS-20 when the KS10 halts
  01562	!--
    01563	
  01564	ENTRY  TOPS20
    01565	 133	KS_HALT_STATUS_20
01566	  STATUS_CODE	0	0-35	!HALT STATUS CODE - PHYSICAL LOCATON 0
   01567	  HS_HPC	1	0-35	!PROGRAM COUNTER - PHYSICAL LOCATION 1
   01568	  KS_HS_BLOCK	2	BODY-F	!HALT STATUS BLOCK OFFSET POINTER
 01569					!-LENGTH,,OFFSET
  01570	  CS_PTR	3	0-35	!CLOK STOP BLOCK OFFSET POINTER (UNUSED)
 01571					!-LENGTH,,OFFSET
  01572	END ENTRY
   01573	
 01574	!++
    01575	!
 01576	!	Parity trap entry for TOPS-20 systems
   01577	!
 01578	!--
    01579	
  01580	ENTRY  TOPS20
    01581	 160	CPU_PAR_TRAP_20
  01582	  PAGE_FAIL_WORD	0	0-35	!At time of trap.
 01583	  BAD_WORD		1	0-35	!Contents of word with parity error.
  01584	  GOOD_WORD		2	0-35	!What the word should have been.
01585	  USER_ID		3	0-35	!User identifier.
  01586	  FORK_NUMBER		4	0-17	! Fork in use at time.
   01587	  JOB_NUMBER		4	18-35	! Job of user running at time.
01588	  PROGRAM_NAME		5	0-35	! Program running.
 01589	  PHYS_ADDRESS		6	0-35	!Address of parity error.
    01590	!undefined		7	0
  01591	  NOT_RECOVERED_FLAG	7	1	!Set by monitor when can't recover.
  01592	  CACHE_FAILED_FLAG	7	2	!When read from memory OK.
  01593	  CACHE_USE_FLAG	7	3	!Set when cache was on at time.
01594	  SWEEP_FLAG		7	4	!If error during cache sweep.
01595	!undefined		7	5-17	!
  01596	  RETRY_COUNT		7	18-35	!Number of times tried to recover.
01597	END ENTRY
   01598	
 01599	!++
    01600	!	Obsolete parity error interrupt record written by TOPS-20
   01601	!	and replaced by entry 162.
    01602	!--
    01603	
  01604	ENTRY  TOPS20
    01605	 161	OLD_CPU_PAR_INT_20
    01606	  PI_CNI	0	0-35	!CONI APR
  01607	  PI_ERA	1	0-35	!ERA
  01608	  PI_FPC	2	0-35	!PC AT INTERRUPT
01609	  PI_SWP	3	0-35	!# ERRORS THIS SWEEP
 01610	  PI_AAD	4	0-35	!LOGICAL AND OF BAD ADDRESSES
  01611	  PI_OAD	5	0-35	!OR  OF BAD ADDRESSES
01612	  PI_ADA	6	0-35	! AND  OF BAD DATA
   01613	  PI_ODA	7	0-35	!OR  OF BAD DATA
01614	  PI_SBD	10	0-35	!S-BUS DIAG FUNCTION SUBTABLE
 01615	  PI_ADD	22	0-35	!LIST OF 1ST 10. BAD ADDRESSES
01616	  PI_DAT	34	0-35	!LIST OF 1ST 10. BAD DATA WORDS
    01617	  PI_CDA	46	0-35	!LIST OF 1ST 10. GOOD DATA WORDS
   01618	END ENTRY
   01619	
 01620	!++
    01621	!
 01622	!	Interrupt entry from TOPS-20
  01623	!
 01624	!--
    01625	
  01626	ENTRY  TOPS20
    01627	 162	CPU_PAR_INT_20
   01628	  APR_STATUS		0	0-35	!CONI APR at time of first error.
   01629	  RDERA_STATUS		1	0-35	!RDERA at time of first error.
    01630	  PC_FLAGS		2	0-35	!Right-justified?
 01631	  PROGRAM_COUNTER	3	0-35	!PC at first error.
   01632	  MEM_PAR_ERRORS	4	0-35	!Count of parity errors this sweep.
   01633	  ADDRESS_AND		5	0-35	!Logical AND of failing addresses.
 01634	  ADDRESS_OR		6	0-35	!Logical OR of failing addresses.
   01635	  CONTENTS_AND		7	0-35	!Logical AND of failing data.
01636	  CONTENTS_OR		8	0-35	!Logical OR of failing data.
  01637	  SBDIAG_LIST		9	HEAD-F	!Pointer to SBDIAG sub-table.
         01638						!- # blocks,,offset from header.
01639	  TOP_TEN,_BAD_ADD	10	BODY-F	!List of bad addresses.
01640						!WORDS 10-19
01641	  TOP_TEN,_BAD_WORDS	20	BODY-F	!List of bad word contents.
    01642						!WORDS 20-29
01643	  TOP_TEN,_GOOD_WORDS	30	BODY-F	!List of what words should have been?
   01644						!WORDS 30-39
01645	END ENTRY
   01646	
 01647	!++
    01648	!
 01649	!	KL10 status block entry for TOPS-20. This comes after
  01650	!	certain entries if KLSTAT has been turned on.
01651	!
 01652	!--
    01653	
  01654	ENTRY  TOPS20
    01655	 163	KL_CPU_STATUS_20
 01656	  APR_ID		0	0-35	!CPU identifier.
    01657	  APR_STATUS		1	0-35	!CONI APR word at time of crash.
    01658	  PI_STATUS		2	0-35	!CONI PI word at time of crash.
 01659	  PAGE_DATAI		3	0-35	!DATAI PAG at time of crash.
   01660	  PAGE_STATUS		4	0-35	!CONI PAG at time of crash.
   01661	  MUUO_RESERVED		5	0-35	!UPT location 424
 01662	  LAST_MUUO		6	0-35	!UPT location 425.
    01663	  LAST_MUUO_PC		7	0-35	!UPT location 426.
 01664	  MUUO_CONTEXT_WORD	8	0-35	!UPT location 427.
  01665	  RDERA_STATUS		9	0-35	!RDERA at crash time.
   01666	  CONI_RH20_LIST	10	0-35	!All CONIs from RH20s.
01667	  CONI_DTE_LIST		18	0-35	!All CONIs from DTEs.
 01668	  CHN_LOGOUT_LIST	22	BODY-F	!EPT loc 0 through 37.
  01669	  DTE_CONTROL_BLOCK	54	BODY-F	!EPT loc 140 through 177.
  01670	  PAGE_FAIL_WORD	86	0-35	!UPT location 500.
    01671	  PAGE_FAIL_FLAGS	87	0-35	!UPT location 501.
   01672	  PAGE_FAIL_OLD_PC	88	0-35	!UPT location 502.
  01673	  PAGE_FAIL_NEW_PC	89	0-35	!UPT location 503.
  01674	  AC_BLOCK_6_DATA	90	BODY-F	!Locs. 0-3 and 12.
 01675	  AC_BLOCK_7_DATA	95	BODY-F	!Locs. 0-2.
   01676	  SBDIAG_LIST		98	HEAD-F	!Pointer to SBDIAG list.
   01677	END ENTRY
   01678	
  01679	!++
    01680	!	Message recorded by TOPS-20 when TGHA finds an error in MOS
 01681	!	memory.
   01682	!--
         01683	
  01684	ENTRY  TOPS20
    01685	 164	MF_20_ERR_20
01686	  MF_20_TEXT	0	0-35	!ALL TEXT
   01687	END ENTRY
   01688	
 01689	!++
    01690	!	The following entries describe DECNET Phase II reports
 01691	!	for TOPS-10 and TOPS-20.
 01692	!--
    01693	
  01694	ENTRY  TOPS10 TOPS20
  01695	 201	NETCON_START
01696	  NETCON_VERSION	0	0-35	! Version of NETCON software
01697	  NODE_NAME		1	MAIN$Z	! Offset to ASCIZ node name string
 01698	  PROGRAM_NAME		2	MAIN$Z	! Offset to ASCIZ program name string
01699	END ENTRY
   01700	
  01701	ENTRY  TOPS10 TOPS20
  01702	 202	NODE_DOWN_LINE_LOAD
   01703	  TARGET_NODE		0	MAIN$Z	! Offset to ASCIZ target node name
    01704	  SERVER_NODE		1	MAIN$Z	! Offset to ASCIZ server node name
    01705	  SERVER_LINE		2	MAIN$Z	! Offset to ASCIZ servr line designator
    01706	  FILE_NAME		3	MAIN$Z	! Offset to ASCIZ name of file loaded
   01707	  RETURN_CODE		4	28-35	! Return code as described below
  01708	  PROGRAM_NAME		5	MAIN$Z	! Offset to ASCIZ program name string
01709	! Unused		6	0-35
 01710	END ENTRY
   01711	
  01712	!++
    01713	!	Return codes specified in NICE protocol version 1.0
    01714	!	Bob Stewart,  28 March 1977
   01715	!
 01716	!	+1	SUCCESS
01717	!	-1	INVALID FUNCTION OR OPTION
 01718	!	-2	INVALID MSG FORMAT
    01719	!	-3	INSUFFICIENT STATUS
   01720	!	-8	INVALID LINE ID
  01721	!	-9	LINE IN WRONG STATE
   01722	!	-10	LINE COMMUNICATIONS ERROR
 01723	!	-11	INVALID NODE ID
 01724	!	-12	INVALID SERVER ID
    01725	!	-13	INVALID FILE
    01726	!	-14	CONFIGURATION DATA BASE ERROR
  01727	!	-15	RESOURCE ERROR
  01728	!	-16	INVALID PARAMETER VALUE
   01729	!	-17	LINE PROTOCOL ERROR
  01730	!	-18	FILE I/O ERROR
  01731	!	-19	NETWORK COMMUNICATIONS ERROR
   01732	!	-20	NO ROOM FOR NEW ENTRY
01733	!	-21	REMOTE NICE PROCESS NOT AVAIL.
 01734	!--
    01735	
  01736	ENTRY  TOPS10 TOPS20
  01737	 203	NODE_DOWN_LINE_DUMP
   01738	  TARGET_NODE		0	MAIN$Z	! Offset to ASCIZ target node name
    01739	  SERVER_NODE		1	MAIN$Z	! Offset to ASCIZ server node name
    01740	  SERVER_LINE		2	MAIN$Z	! Offset to ASCIZ servr line designator
    01741	  FILE_NAME		3	MAIN$Z	! Offset to ASCIZ name of file dumped
   01742	  RETURN_CODE		4	28-35	! Return code as described above
  01743	  PROGRAM_NAME		5	MAIN$Z	! Offset to ASCIZ program name string
01744	! Unused		6	0-35
 01745	END ENTRY
   01746	
  01747	ENTRY  TOPS10 TOPS20
  01748	 210	NET_HARDWARE_ERR
 01749	  XMIT_NODE_ID		0	0-17	! Transmit node ID #
    01750	  RECV_NODE_ID		0	18-35	! Destination node ID #
01751	  XMIT_NODE_NAME	1	MAIN$Z	! Offset to ASCIZ transmit node name
01752	  RECV_NODE_NAME	2	MAIN$Z	! Offset to ASCIZ receive node name
 01753	  ADJ_NODE_NAME		3	MAIN$Z	! Offset to ASCIZ adjacent node name
01754	  FUNCTION_WORD		4	0-35	! Function word
   01755	! Unknown		4	0-9
 01756	  PARENT_HDWR_TYPE	4	10-17	! Parent hardware system type
 01757	  PARENT_SFWR_TYPE	4	20-27	! Parent operating system type
01758	  HDWR_OPTION_TYPE	4	28-35	! Hardware option type
   01759	  BYTE_COUNT		5	0-35	! # of 8 bit bytes in log data section
   01760	
  01761	! LOG_DATA		14	MAIN-F	! Offset to log data section
  01762	END ENTRY
   01763	
  01764	ENTRY  TOPS10 TOPS20
  01765	 211	NET_SOFTWARE_ERR
 01766	END ENTRY
   01767	
  01768	ENTRY  TOPS10 TOPS20
  01769	 220	NET_OPR_LOG_ENTRY
01770	END ENTRY
   01771	
  01772	ENTRY  TOPS10 TOPS20
  01773	 221	NET_TOPOLOGY_CHANGE
   01774	END ENTRY
   01775	
  01776	ENTRY  TOPS10 TOPS20
  01777	 222	NET_CHECK11_REPORT
    01778	END ENTRY
   01779	
  01780	ENTRY  TOPS10 TOPS20
  01781	 230	NET_LINE_STATS
   01782	END ENTRY
   01783	
  01784	ENTRY  TOPS10 TOPS20
  01785	 231	NET_NODE_STATS
   01786	END ENTRY
   01787	
  01788	ENTRY  TOPS10 TOPS20
  01789	 232	OLD_DN64_STATS
   01790	END ENTRY
   01791	
  01792	ENTRY  TOPS10 TOPS20
  01793	 233	DN6X_STATS
  01794	END ENTRY
   01795	
  01796	ENTRY  TOPS10 TOPS20
  01797	 234	DN6X_ENABLE_DISABLE
   01798	END ENTRY
   01799	
 01800	ENTRY  TOPS10 TOPS20
  01801	 240	DECNET_PHASE_III
 01802	  BYTE_COUNT		0	0-35	! Count of 8 bit data bytes in entry.
    01803	  FUNCT_CODE		1	0-7	! Type of message
01804	
  01805	! Entry is an 8-bit byte stream.  For an "Event Logging Message"
   01806	!  (FUNCT_CODE = 1) the entry consists of the following fields:
    01807	
  01808	! SINK_FLAGS				! See WORD_11 definition
  01809	! EVENT_CODE				! See WORD_11 definition
  01810	!   EVENT_CLASS
  01811	!   EVENT_TYPE
   01812	! EVENT_TIME
01813	!   JULIAN_HALF_DAY
   01814	!   SECOND
  01815	!   MILLISECOND
  01816	! SOURCE_NODE
    01817	!   NODE_ADDRESS
 01818	!   NODE_NAME
    01819	! EVENT_ENTITY
   01820	!   ENTITY_TYPE
  01821	!   ENTITY_ID
    01822	! EVENT_DATA
01823	!   DATA_ID				 	! See WORD_11 definition
 01824	!     PARAMETER_DATA
  01825	!	PARAMETER_TYPE
 01826	!	DATA_TYPE			 	! See WORD_11 definition
  01827	!     COUNTER_DATA
    01828	!	COUNTER_WIDTH
  01829	!	BIT_MAPPED_FLAG
01830	!	COUNTER_TYPE
   01831	!       BIT_MAP				! Present if BIT_MAPPED_FLAG is set
   01832	!   DATA
    01833	!
 01834	END ENTRY
   01835	
 01836	!++
    01837	!
 01838	!	LOGGER/AVAIL entry definitions
01839	!
 01840	!--
    01841	
  01842	ENTRY  TOPS20
    01843	500 logger
  01844		lgr_data_block		0	MAIN-F
  01845		lgr_count		0	0-17	! block size
 01846		lgr_cr_msec		1	0-35	! block creation time (milliseconds)
01847		lgr_wr_msec		2	0-35	! block write time
   01848		lgr_address		3	0-35	! "monitor" address of this block
   01849		lgr_block_id		4	0-8	! block type code
    01850		lgr_channel		4	9-17	! device channel number
   01851		lgr_kontroller		4	18-26	! device kontroller number
 01852		lgr_unit		4	27-35	! device unit number
   01853	END ENTRY
   01854	
 01855	! TABLES FOR LOGGER ENTRIES
01856	
  01857	TABLE  TOPS20
    01858	lgr_data_block
   01859		lgr_table_count		0	0-35	! number of GETAB subtables
01860		lgr_table_id		1	0-17	! GETAB number of this table
  01861		lgr_table		1	MAIN+F	! define subtable format
  01862	! ... GETAB data block format ...
    01863	!	IDSYS = %O'14', System GETAB data
  01864	!	IDSUB = %O'15', Subsystem GETAB data
    01865	! ...
  01866	! Monitor name block (IDNAM = %O'13')
01867		sys_build_date		0	0-35	! monitor build date/time
   01868		sys_name		1	0-35	! ASCIZ text string starts here
   01869	! System/Program data block (IDPGM = %O'23')
   01870		lgr_version		0	0-35	! LOGGER version number
   01871		lgr_wakeup_counter	6	0-35	! number of times LOGGER has run
   01872		lgr_start_udt		7	0-35	! startup date/time
01873		lgr_start_msec		8	0-35	! startup system runtime
    01874		lgr_wakeup_udt		9	0-35	! wakeup date/time
01875		lgr_wakeup_msec		10	0-35	! wakeup system runtime
   01876		lgr_time_change_udt	16	0-35	! total date/time change (UDT)
   01877		monitor_version		17	0-35	! monitor version number
  01878		lgr_sched_down		34	0-35	! scheduled downtime
  01879		lgr_sched_up		35	0-35	! scheduled uptime
 01880	END TABLE
   01881	
  01882	TABLE TOPS20
01883	lgr_table		! .. sub table format (GETAB data) ...
   01884		lgr_table_size		0	0-17	! number of words in this table
  01885		lgr_table_gtb		0	18-35	! GETAB number of this table (self-check)
  01886		lgr_table_data		1	0-35	! fullword data ...
    01887	! NOTE: descriptions of indivdual tables can be found
    01888	!	in the TOPS20 Monitor Calls Reference Manual
 01889	!	section 2.3.2 System Tables
   01890	!	and Appendix B (which defines the symbolic table names)
01891	END TABLE
   01892	
  01893	ENTRY TOPS10
01894	44	avail_reload
       01895		sys_name		0	MAIN$Z	! pointer to monitor name
  01896		monitor_version		1	0-35	! monitor version
01897		monitor_runtime		2	0-35	! monitor runtime
01898		daemon_wakeup		3	0-35	! date/time DAEMON last woke up
   01899		reload_date_time	4	0-35	! date/time of this reload
 01900		reload_why_sixbit	5	0-35	! SIXBIT reload reason code
    01901		time_change		6	0-35	! total date/time change
  01902	END ENTRY
   01903	
  01904	ENTRY TOPS10
01905	46	avail_bof
01906		daemon_version		0	0-35	! DAEMON version number
01907	END ENTRY
   01908	
  01909	ENTRY TOPS10
01910	47	avail_eof
01911		daemon_version		0	0-35	! DAEMON version number
01912	END ENTRY
   01913	
  01914	
 01915	!++
    01916	!	The following tables represent a finer definition of
   01917	!	entries recorded by TOPS-10 and TOPS-20.
01918	!--
    01919	
  01920	TABLE  TOPS10 TOPS20
  01921	 AC_BLOCK_6_DATA	!Saved ACs from block 6
  01922	  AC0		0	0-35
    01923	  AC1		1	0-35
    01924	  AC2		2	0-35
    01925	  AC3		3	0-35
    01926	  AC12		4	0-35
   01927	END TABLE
   01928	
  01929	TABLE  TOPS10 TOPS20
  01930	 AC_BLOCK_7_DATA	!Saved ACs from block 7
  01931	  AC0		0	0-35
    01932	  AC1		1	0-35
    01933	  AC2		2	0-35
    01934	END TABLE
   01935	
  01936	TABLE  TOPS10 TOPS20
  01937	 CHN_LOGOUT_LIST	! Holds logout blocks for 8 channels.
   01938	  CHN_LOGOUT,_0		0	BODY-F
  01939	  CHN_LOGOUT,_1		4	BODY-F
  01940	  CHN_LOGOUT,_2		8	BODY-F
  01941	  CHN_LOGOUT,_3		12	BODY-F
 01942	  CHN_LOGOUT,_4		16	BODY-F
 01943	  CHN_LOGOUT,_5		20	BODY-F
 01944	  CHN_LOGOUT,_6		24	BODY-F
 01945	  CHN_LOGOUT,_7		28	BODY-F
 01946	END TABLE
   01947	
  01948	TABLE  TOPS10 TOPS20
  01949	 CHN_LOGOUT	! Format of channel logout block for each channel
 01950	  INIT_CHN_COMMAND	0	0-35
  01951	  CHN_STATUS_WORD	1	0-35
   01952	  LAST_COMMAND		2	0-35
01953	  RESERVED_WORD		3	0-35
    01954	END TABLE
   01955	
  01956	!---------------------------------------------------------------
   01957	
  01958	!++
    01959	!
 01960	!	TM10B controller status block
 01961	!
 01962	!--
    01963	
  01964	TABLE  TOPS10
    01965	 CSB_TM10
   01966	  TM10_TMC		0	0-35	! CONI TMC
   01967	  TM10_TMS		1	0-35	! CONI TMS
   01968	END TABLE
   01969	
  01970	WORD_10 TOPS10
   01971	 TM10_TMS
   01972	  TM10_CTL_PAR		11		! Control word parity error
01973	  TM10_NXM		12		! No such memory
01974	  TM10_MEM_PAR		13		! Memory data parity error
 01975	  TM10_UNI_HNG		18		! Unit hung
 01976	  TM10_ILL_OP		21		! Illegal operation
    01977	  TM10_PAR_ERR		22		! Tape parity error
   01978	  TM10_CMP_ERR		25		! Read compare error
  01979	  TM10_LEN_ERR		26		! Record length differs
    01980	  TM10_DAT_LAT		27		! Data late
 01981	  TM10_BAD_TAP		28		! Bad tape
  01982	END WORD_10
 01983	
  01984	!++
    01985	!
 01986	!	DX10 controller status block
  01987	!
 01988	!--
    01989	
  01990	TABLE  TOPS10
    01991	 CSB_DX10
   01992	  RBC			0	0-35	! BYTE COUNT
01993	  TAG			1	0-35	! TAG LINES ,, BUS LINES
   01994	  DAC			2	0-35	! DAC BITS 14 THRU 35
 01995	  FEATURE_REG		3	0-35	!
    01996	  UCODE_VERSION		3	0-5	! Micro-code version #  
01997	  UCODE_EDIT		3	6-17	! Micro-code edit #
  01998	!  FEATURE_REG		3	18-35	! Feature register
01999	
  02000	!++
    02001	!
 02002	! THESE BYTES ARE IN THE FORMAT:
02003	!	BYTE 0 = BITS 2 - 9
 02004	!	BYTE 1 = BITS 10-17
 02005	!	BYTE 2 = BITS 20-27
 02006	!	BYTE 3 = BITS 28-35
 02007	! VALUES ARE SUPPLIED FROM DX20 WITH VER 100 OR LATER OF U-CODE AS LONG AS
   02008	! DX20 IS STILL RUNNING. VALUES ARE THOSE DETECTED AT TIME OF THE ERROR.
02009	!
 02010	!--
    02011	
  02012	  SENSE_BYTES_A		4	0-35	! Sense bytes	0-3
 02013	  SENSE_BYTES_B		5	0-35	!		4-7
  02014	  SENSE_BYTES_C		6	0-35	!		8-11
 02015	  SENSE_BYTES_D		7	0-35	!		12-15
02016	  SENSE_BYTES_E		8	0-35	!		16-19
02017	  SENSE_BYTES_F		9	0-35	!		20-23
02018	  CONI			10	0-35	! CONI DX10
    02019	  STATUS_WORD_1		11	0-35	! ICPC + 1 (STATUS WORD)
   02020	  DX10_DSR		11	0-7	! Device status register
    02021	  DX10_CSR		11	8-19	! Channel status register
  02022	  DX10_SEQ_ERR		11	22-27	! Sequence error code
 02023	  DX10_DAR		11	28-35	! Device address register
 02024	  STATUS_WORD_2		12	0-35	! ICPC + 2 (STATUS WORD)
   02025	  DX10_BC_OF		12	0	! ?
02026	  DX10_BYTE_CTR		12	1-13	! Byte counter
   02027	  DX10_CPC		12	14-35	! Channel program counter
 02028	  DX10_LAST_REC		13	12-35	! Last record (block) length
   02029	  CHANNEL_CMD_WD	14	0-35	!
 02030	  CHANNEL_CMD_WD_2	15	0-35	!
    02031	  MD			16	0-35	! MD AND CPMA
    02032	  DR_REG		17	0-35	!
   02033	  DAG			18	0-35	! DIAGN FAILURE CODE
 02034	  MR1			19	0-35	! DX MEM REG 10 & 11
 02035	END TABLE
   02036	
  02037	WORD_10 TOPS10
   02038	 CONI
  02039	  DX10_MP_ERR			26	! MICROPROCESSOR ERROR
 02040	  DX10_MEM_PAR			27	! DX10 MEMORY PARITY ERROR
 02041	  DX10_NXM			28	! NXM
 02042	END WORD_10
 02043	
  02044	WORD_10 TOPS10
   02045	 DX10_DSR
   02046	  DSR_ATTN			28	! Attention
02047	  DSR_STAT_MOD			29	! Status modifier
02048	  DSR_CU_END			30	! Control unit end
 02049	  DSR_BUSY			31	! 
    02050	  DSR_CHAN_END			32	! Channel end
    02051	  DSR_DEV_END			33	! Device end
 02052	  DSR_UNIT_CHK			34	! Unit check
02053	  DSR_UNIT_EXCEPT		35	! Unit exception
    02054	END WORD_10
 02055	
  02056	WORD_10 TOPS10  
 02057	 DX10_CSR
   02058	  CSR_PRG_STAT			24	! Program status
 02059	  CSR_TYPE			25-26	! Cause/type of last status in DSR
    02060	  CSR_SEL_ERR			27	! Device didn't respond
02061	  CSR_SEQ_ERR			28	! Sequence error
  02062	  CSR_PAR_ERR			29	! Device parity error
  02063	  CSR_LEN_ERR			30	! Length error
    02064	  CSR_IGN_LEN_ERR		31	! Ignore length error
    02065	  CSR_UNUSED			32	! 
  02066	  CSR_DSR_FLAG			33	! Bit of interest in DSR
   02067	  CSR_SBYTE_RD_ERR		34	! Error while reading sense byte
  02068	  CSR_OPI			35	! Operation incomplete
02069	END WORD_10
 02070	
  02071	!++
    02072	!
 02073	!	TM02 controller status block
  02074	!
 02075	!--
    02076	
  02077	TABLE  TOPS10
    02078	 CSB_TM02
   02079	  CONI_INITIAL		0	0-35
02080	
  02081	  RHCS1_ERR		0	2-17    ! LH = RH11 CONTROL & STATUS 2
    02082	  RHCS2_ERR		0	20-35	! RH = RH11 CONTROL & STATUS 1.
02083	  CHAN_CNTRL_STAT	0	0-35	! LH = LH CHANNEL STATUS 0 (RH20)
         02084						! RH = CONI RH for RH10/20
 02085						
  02086	  PTCR			1	0-35	! RH20 PRIMARY TRANSFER CONTROL REG
 02087						! RH10 DATAI RHCR
02088	  UBA_STATUS		1	0-35	! RH11 UBA STATUS REGISTER
02089	  UBA_STATUS_ERR	1	18-35	! USED BY SUMMARIZE
   02090	  PBAR			2	0-35	! RH20 PRIMARY BLOCK ADDRESS REGISTER
    02091						! RH10 DATAI RHDB
02092	  UBA_MAP		2	0-35	! RH11 UBA MAP REGISTER.
02093	  LAST_COMMAND		3	0-35	! LAST COMMAND ISSUED
   02094	! Unknown		4	0-17	!
   02095	  MB_CR			4	18-35	! DEVICE CONTROL REGISTER
    02096	! Unknown		5	0-17	!
   02097	  MB_DS			5	18-35	! DEVICE STATUS REGISTER
02098	! Unknown		6	0-17	!
   02099	  MB_ERR		6	18-35	! DEVICE ERROR REGISTER
 02100	! Unknown		7	0-17	!
   02101	  MB_MR			7	18-35	! MAINTENANCE REGISTER
  02102	! Unknown		8	0-17	!
   02103	  MB_AS			8	18-35	! ATTENTION SUMMARY REGISTER
 02104	! Unknown		9	0-17	!
   02105	  MB_FR_CNT		9	18-35	! FRAME COUNT REGISTER
    02106	! Unknown		10	0-17	!
  02107	  MB_DT			10	18-35	! DRIVE TYPE REGISTER
  02108	! Unknown		11	0-17	!
  02109	  MB_CHK_SUM		11	18-35	! CHECKSUM REGISTER
02110	! Unknown		12	0-17	!
  02111	  MB_SN			12	18-35	! DRIVE SERIAL NUMBER REGISTER
   02112	! Unknown		13	0-17	!
  02113	  MB_TC			13	18-35	! TAPE CONTROL REGISTER
02114	END TABLE
   02115	
 02116	!++
    02117	!
 02118	!	TM78 controller status block
  02119	!
 02120	!--
    02121	
  02122	TABLE  TOPS10
    02123	 CSB_TM78
   02124	  TM78_U_CODE_REVS,_10	0	BODY-F	! TU78 U-CODE REVISION LEVELS (2 WORDS)
 02125	  CONI			2	0-35	! RH20 CONI
02126	  PTCR			3	0-35	! RH20 PRIMARY TRANSFER CONTROL REG
 02127	  PBAR			4	0-35	! RH20 PRIMARY BLOCK ADDRESS REGISTER
    02128	  LAST_COMMAND		5	0-35	! LAST COMMAND ISSUED
   02129	  TM78_CAS_REGS,_10	6	BODY-R	! CAS REGISTERS 0-21 FOR TU78
    02130	  TM78_SENSE_BYTES,_10	24	BODY-F	! 60 8-BIT BYTES IN 15 WORDS
 02131	END TABLE
   02132	
  02133	!++
    02134	!  TM78 micro-code version
 02135	!__
    02136	
  02137	TABLE TOPS20
02138	 TM78_U_CODE_REVS
02139	  UCODE_1		0	0-35
02140	  UCODE_2		1	0-35
02141	END TABLE
   02142	
  02143	!++
    02144	!
 02145	!	TM78 Masbuss Registers  (Common Address Space)
    02146	!		First 2 bits unused
02147	!
 02148	!--
    02149	
  02150	TABLE  TOPS10  TOPS20 
02151	 TM78_CAS_REGS
   02152	  CMD_CAS_0		0	! 20-35	! Data transfer function reg.
02153	  DST_CAS_1		1	! 20-35	! Interrupt and failure code reg.
 02154	  CNT_CAS_2		2	! 20-35	! Record count, skip count amd format
  02155	  DG1_CAS_3		3	! 20-35	! Error msg nr and diag test nr.
  02156	  ATN_CAS_4		4	! 20-35	! Attention bits
   02157	  BCT_CAS_5		5	! 20-35   ! Byte count. When this register is 
 02158						! used in a write or write with
 02159						! extended IRG operation it is set by
02160						! the program to the 2's complement
  02161						! of the number of bytes to be written
    02162						! on tape. This register becomes 0
   02163						! after the last byte of the record
  02164						! has been read from memory. When
    02165						! this register is used in a read
    02166						! operation, it is set to a number
   02167						! equal to or greater than the 2's
   02168						! comlement of the number of bytes 
  02169						! to be loaded into memory. A record
 02170						! length error occurs for long records
    02171						! only. This happens when a read pulse
    02172						! for data occurs and the Word Count
 02173						! Register is 0.
 02174						! When the Byte Count Register is used
    02175						! in a space forward or space reverse
02176						! operation, it is set to the 2's
    02177						! complement of the number of records 
    02178						! to be spaced.
  02179	  DTR_CAS_6		6	! 20-35	! Drive type (101) in bits 8-0
    02180	  STA_CAS_7		7	! 20-35	! Drive status reg. or Sense reg.
 02181	  SER_CAS_10		8	! 20-35	! Serial no. reg.
 02182	  DG2_CAS_11		9	! 20-35   ! Diagnostic reg.
    02183	  DG3_CAS_12		10	! 20-35   ! Diagnostic reg.
   02184	  NST_CAS_13		11	! 20-35   ! Non-data transfer int. code
 02185	  NC1_CAS_14		12	! 20-35   ! Tape control register.
 02186						! Non_data transfer function code 0
  02187						! There are four tape control
   02188						! registers one register for each
    02189						! transport. 
    02190	  NC2_CAS_15		13	! 20-35	! Non_data transfer function code 1
  02191	  NC3_CAS_16		14	! 20-35	! Non_data transfer function code 2
  02192	  NC4_CAS_17		15	! 20-35	! Non_data transfer function code 3
  02193	  MPA_CAS_20		16	! 20-35	! u-code internal address
  02194						! The Internal Address Register contains
  02195						! the address of the current address
 02196						! being asserted by the microcomputer.
    02197	  MPD_CAS_21		17	! 20-35	! Control register
    02198	END TABLE
   02199	
  02200	WORD_11  COMMON
  02201	 CMD_CAS_0
  02202	  CMD_SPL_COND			15	! Special condition. Read only. Set 
 02203						! by TRE, ATTN, or I/O bus control
   02204						! parity error. Cleared by Unibus A
  02205						! INIT, controller clear, or by
 02206						! removing the ATTN condition.
  02207	  CMD_TRAN_ERR			14	! Transfer error. Read/write. Set by
 02208						! DLT, WCE, UPE, NED, NEM, PGE, MXF,
 02209						! MDPE, or a drive error during a 
   02210						! data transfer. Cleared by Unibus A
 02211						! INIT, controller clear, error clear,
    02212						! or loading a data transfer command
 02213						! with GO set.
   02214	  CMD_MCPE			13	! Mass I/O bus control bus parity
   02215						! error Read only. Set by parity error
    02216						! on control bus while writing a 
    02217						! remote register. Cleared by TM
02218						! clear.
    02219						! Parity errors that occur on the I/O
02220						! control bus while writing a drive 
 02221						! register are detected by the drive 
02222						! and cause the PAR error 
 02223						! (Error reg. bit 03) to set.
   02224						! Bit 12 not used. Always zero.
 02225	  CMD_DR_AVAIL			11	! Drive available. Read only. Always
 02226						! a 1 in the TM78 when read from an
  02227						! existing drive.
02228	  CMD_PORTSEL			10	! When PSEL = 1, data transfer is via
 02229						! Unibus B; when PSEL = 0, data transfer
  02230						! is via Unibus A. Cleared by Unibus
 02231						! A INIT, controller clear, or by
    02232						! writing a 0 in this bit position.
  02233	  CMD_A17			09	! Upper extension bits of the BUS 
   02234	  CMD_A16			08	! Address Register. Cleared by Unibus
02235						! A INIT, controller clear or by
02236						! writing 0s in these bit positions.
 02237	  CMD_READY_DT			07	! RDY normally = 1. During data 
02238						! transfers, RDY = 0.
 02239						! When a data transfer command code
  02240						! is written into the control and
    02241						! status register RDY is reset. At
   02242						! the termination of the data transfer,
   02243						! RDY is set.
    02244	  CMD_INT_EN			06	! Interrupt enable. IE is a control bit
02245						! which can be set only under program 
    02246						! control. When IE = 1, an interrupt
 02247						! may occur due to RDY or ATTN being 
02248						! asserted. Cleared by Unibus A INIT,
02249						! controller clear, or automatically
 02250						! cleared when a interrupt is recognized
  02251						! by the CPU. When a 0 is written into
    02252						! IE by the program, pending interrupts
   02253						! are cancelled.
 02254	  CMD_FUNC_CODE			05-01	! Function codes.
 02255	  CMD_GO_BIT			00	! The GO bit must be set to cause the
  02256						! controller or drive to respond to a
02257						! command. The GO bit is reset by the
02258						! drive after command execution.
02259	END WORD_11
 02260	
  02261	WORD_11 COMMON
   02262	 DST_CAS_1
  02263	  CAS_FAIL_CODE	 		15-10   ! Failure code on data transfer
    02264	  CAS_INT_CODE			05-00	! Interrupt code on data transfer
 02265	END WORD_11
 02266	
  02267	WORD_11  COMMON
  02268	 CNT_CAS_2
  02269	  CNT_SER			15	! If the TM78 detects an error that
  02270						! requires a retry, the tape will be
 02271						! repositioned for the retry operation
    02272						! unless SER is set. If SER is not
   02273						! set, the TM78's error recovery
02274						! algorithms inform the host CPU of
  02275						! the next operation to perform via
  02276						! the interrupt code. 
02277	  CNT_FORMAT			14-12	! The FORMAT field defines the manner
    02278						! in which tape bytes are assembled 
 02279						! to/from the host CPU words. The
    02280						! following is a list of the possible 
    02281						! formats
   02282						! FORMAT		MODE
   02283						! 000		11 NORMAL
 02284						! 001		15 NORMAL
 02285						! 010		10 Compatible
  02286						! 011		10 Core Dump
   02287						! 100		10 High Density 
    02288						!		   Compatible
 02289						! 101		Image
02290						! 110		10 High Density Dump
02291	  CNT_SKIP_CNT			11-08	! Skip Count is used during tape read
  02292						! operations to zero-fill the specified
   02293						! number of byte positions before 
   02294						! reading the first data byte. These
 02295						! zero-filled bytes are transferred
  02296						! from the TM78 even if no data bytes
02297						! are read(because of an error).
02298	  CNT_REC_CNT			07-02	! The Record Count specifies the 
  02299						! number of record to read or write
  02300						! and may be any value in the range 
 02301						! of 0 to 77 . When non-zero, it is
  02302						! 	    8
    02303						! decremented after every record that
02304						! is correctly transferred.
02305						! When record count is equal to zero
 02306						! the TM78 transfers records until
   02307						! stopped by the Massbus controller.
 02308						! The RH20, which has its own block
  02309						! counter, may be operated with REcord
    02310						! Count set to zero.
  02311						! Record Count is not decremented during
  02312						! unsuccessful error retry operations
02313						! so it does not have to be reloaded
 02314						! after an error, unless the TM78 issues
  02315						! a read opposite interrupt code. In
 02316						! this case, the record count should be
   02317						! set to 0.
 02318	  CNT_CMD_ADR			01-00	! Identifies the tape transport.
   02319	END WORD_11
 02320	
  02321	WORD_11
02322	 DTR_CAS_6
  02323	  DTR_NSA			15	! always 1
  02324	  DTR_TAP			14	! always 1
  02325	  DTR_MOH			13	! always 0
  02326	  DTR_7CH			12	! always 0
  02327	  DTR_DMD			11	! dual massbus option.
02328						! If set this TM78 has the dual massbus
   02329						! ports option.
  02330						! bits 10-9 not used.
 02331						! The drive type code for a TU78 Tape
02332						! drive is 101
   02333						!	      8
   02334	END WORD_11
 02335	
  02336	WORD_11 COMMON
   02337	 STA_CAS_7
  02338	  STA_RDY			15	! The tape unit has a tape mounted,
  02339						! is on-line, and not rewinding or
   02340						! performing a DSE.
   02341	  STA_PRES			14	! The tape unit has power applied.
  02342	  STA_ON_L			13	! The tape unit is on-line, and a tape 
  02343						! is mounted.
    02344	  STA_REWIND			12	! The tape unit is rewinding.
02345	  STA_PE			11	! WHen set, the tape unit is set foR
  02346						! PE recording format. When clear, the
    02347						! tape unit is set for GCR recording
 02348						! format.
   02349	  STA_BOT			10	! The tape is positioned at load point.
   02350	  STA_EOT			09	! The tape is positioned beyond the 
 02351						! end-of-tape marker.
 02352	  STA_FPT			08	! The tape unit is write protected.
  02353	  STA_AVAIL			07	! The tape unit is available to this
    02354						! massbus.
  02355	  STA_SHR			06	! The tape unit is available to both
 02356						! Massbus ports (shared)
   02357	  STA_MAINT			05	! The tape unit is in maintenance mode,
 02358						! and may not be used.
02359	  STA_DSE			04	! The tape unit is performing the
    02360						! erase portion of DSE Command.
 02361	END WORD_11
 02362	
  02363	WORD_11
02364	 NC1_CAS_14
 02365	  NC1_CMD_CNT			15-08	! The command count specifies the
  02366						! number of times the command is to 
 02367						! be repeated (up to 376, octal). If
 02368						! the operation terminates prematurely
    02369						! the command count contains the no.
 02370						! of operations that did not complete
02371						! successfully. A command count of 0
 02372						! or 1 may be used to specify a single
    02373						! operation.
02374						! The GO bit informs the TM78 that
   02375						! a new Command has been loaded. The
 02376						! GO bit is not intended to serve
    02377						! as a status bit as the readability
 02378						! is undefined.
  02379	  NC1_FUNC_CODE0		05-01	! function code.
  02380	END WORD_11
 02381	
  02382	WORD_11  COMMON
  02383	 NC2_CAS_15
 02384	  NC2_CMD_CNT1			15-08	! Command count
    02385	  FUNC_CODE1			05-01	! Function code
 02386	END WORD_11
 02387	
  02388	WORD_11  COMMON
  02389	 NC3_CAS_16
 02390	  NC3_FUNC_CODE2		05-01	! Function code
   02391	END WORD_11
 02392	
  02393	WORD_11  COMMON
  02394	 NC4_CAS_17
 02395	  NC4_CMD_CNT3			15-08	! Command count
    02396	  NC4_FUNC_CODE3		05-01	! Function code
   02397	END WORD_11
 02398	
  02399	WORD_11 COMMON
   02400	 MPD_CAS_21
 02401	  MPD_TM_RDY			15	! TM RDY occurs after microcode 
  02402						! initialization. New commands may
   02403						! not be loaded until TM RDY is set.
 02404	  MPD_TM_CLR			14	! TM Clear initializes the TM78. This
  02405						! restarts the microcomputer and 
    02406						! terminates any command that may have
    02407						! been previously loaded.
  02408	  MPD_CM_PE			13	! A microcomputer Rom Parity error 
02409						! has occurred.
  02410	  MPD_ILR			12	! A reference has been made to a 
    02411						! non-existent massbus register address
   02412	  MPD_CPE			11	! The TM78 has detected a parity error
    02413						! as a result of a write to some massbu
   02414						! register address.
   02415	  MPD_EV_PAR			10	! A diagnostic bit which causes even
   02416						! parity to be generated and checked
 02417						! for on the massbus control bus.
    02418	  MPD_HLDA			09	! The stopped condition is indicated 
    02419						! by the HLDA bit being set after a 
 02420						! small delay.
   02421	  MPD_HOLD			08	! The microcomputer may be stopped by
    02422						! setting the HOLD bit.
    02423	  MPD_INT_DATA			07-00	! If HLDA is not set, Internal Data
    02424						! always reads as a zero. If HLDA is
 02425						! set the Internal Address Structure 
02426						! of the TM78 maybe accessed via the 
02427						! Internal Address and Internal Data
 02428						! Registers. These then contain the 
 02429						! current address being asserted by
  02430						! the microcomputer.
  02431	END WORD_11
 02432	
  02433	TABLE  TOPS_10 TOPS_20
02434	  TM78_SENSE_BYTES
    02435	    CMDCOD		0	10-17
   02436	    INTCOD		0	2-9
02437	    FALCOD		0	28-35
   02438	    RPFAIL		0	20-27
   02439	    RPATH		1	10-17
    02440	    RSTAT		1	2-9
 02441	    RCMLP		1	28-35
    02442	    RAMT		1	20-27
02443	    RDON		2	10-17
02444	    RILL		2	2-9
  02445	    RMK2		2	28-35
02446	    REND		2	20-27
02447	    RPSTA		3	10-17
    02448	    RPOSTN		3	2-9
02449	    RDATA		3	28-35
    02450	    CRCWRD		3	20-27
   02451	    ECCOR		4	10-17
    02452	    ECCSTA		4	2-9
02453	    CH0TIE		4	28-35
   02454	    CH1TIE		4	20-27
   02455	    CH2TIE		5	10-17
   02456	    CH3TIE		5	2-9
02457	    CH4TIE		5	28-35
   02458	    CH5TIE		5	20-27
   02459	    CH6TIE		6	10-17
   02460	    CH7TIE		6	2-9
02461	    CHPTIE		6	28-35
   02462	    RTIER		6	20-27
    02463	    TAMT		7	10-17
02464	    PSTAT		7	2-9
 02465	    PRDD		7	28-35
02466	    CASSTA		7	20-27
   02467	    CBUSSTA		8	10-17
  02468	    DBUSSTA		8	2-8
    02469	    WMCSTA		8	28-35
   02470	    TUSEL0		8	20-27
   02471	    TUSEL1		9	10-17
   02472	    WRTDAT		9	2-9
02473	    BYT1_CNT		9	28-35
 02474	    BYT2_CNT		9	20-27
 02475	    PAD1_CNT		10	10-17
02476	    PAD2_CNT		10	2-9
  02477	    ERR1_CNT		10	28-35
02478	    ERR2_CNT		10	20-27
02479	    DDR_A		11	10-17
   02480	    DDR_B		11	2-9
02481	    WMCERR		11	28-35
  02482	    INTSTA		11	20-27
  02483	    TUSTAT		12	10-17
  02484	    MIAA_STAT		12	2-9
 02485	    MIAB_STAT		12	28-35
    02486	    SER_A_NR		12	20-27
02487	    SER_B_NR		13	10-17
02488	    TUDIAG		13	2-9
    02489	    RET1_CNT		13	28-35
02490	    RET2_CNT		13	20-27
02491	    TUX			14	10-17
    02492	    XFRCTL		14	2-9
    02493	    XRETRY		14	28-35
  02494	    ENAON		14	20-27
   02495	END TABLE
   02496	
  02497	! Sense byte 1
   02498	
  02499	WORD_11 COMMON
   02500	  CMDCOD
    02501	   CMD_CODE			7 - 0	! Command code being executed 
  02502						! on last error.
 02503	END WORD_11
 02504	
  02505	! Sense byte 2
   02506	
  02507	WORD_11 COMMON
   02508	  INTCOD
    02509	   INT_CODE			7 - 0	! Interrupt code from last error
02510	END WORD_11
 02511	
  02512	! Sense byte 3
   02513	
  02514	WORD_11 COMMON
   02515	  FALCOD
    02516	   FAIL_CODE			7 - 0	! Failure code from last error
 02517	END WORD_11
 02518	
  02519	
  02520	! Sense byte 4 (M8950 via M8953)
02521	
  02522	WORD_11 COMMON
   02523	  RPFAIL
    02524	   WFAIL_0			00	! Write fail bit from REad channel 0 
    02525						! Write fail is an OR of certain
02526						! error conditions namely:
 02527						!	 Illegal 5 to 4 translation
   02528						!	 AMTIE
    02529						!	 PHTIE
    02530						!	 Pointer mismatch
   02531	   WFAIL_1			01	! Write fail bits from read channel 1
    02532						! Write fail is an OR of certain
02533						! error conditions namely:
 02534						!	 Illegal 5 to 4 translation
   02535						!	 AMTIE
    02536						!	 PHTIE
    02537						!	 Pointer mismatch
   02538	   WFAIL_2			02	! Write fail bits from read channel 2
    02539						! Write fail is an OR of certain
02540						! error conditions namely:
 02541						!	 Illegal 5 to 4 translation
   02542						!	 AMTIE
    02543						!	 PHTIE
    02544						!	 Pointer mismatch
   02545	   WFAIL_3			03	! Write fail bits from read channel 3
    02546						! Write fail is an OR of certain
02547						! error conditions namely:
 02548						!	 Illegal 5 to 4 translation
   02549						!	 AMTIE
    02550						!	 PHTIE
    02551						!	 Pointer mismatch
   02552	   WFAIL_4			04	! Write fail bits from read channel 4
    02553						! Write fail is an OR of certain
02554						! error conditions namely:
 02555						!	 Illegal 5 to 4 translation
   02556						!	 AMTIE
    02557						!	 PHTIE
    02558						!	 Pointer mismatch
   02559	   WFAIL_5			05	! Write fail bits from read channel 5
    02560						! Write fail is an OR of certain
02561						! error conditions namely:
 02562						!	 Illegal 5 to 4 translation
   02563						!	 AMTIE
    02564						!	 PHTIE
    02565						!	 Pointer mismatch
   02566	   WFAIL_6			06	! Write fail bits from read channel 6
         02567						! Write fail is an OR of certain
02568						! error conditions namely:
 02569						!	 Illegal 5 to 4 translation
   02570						!	 AMTIE
    02571						!	 PHTIE
    02572						!	 Pointer mismatch
   02573	
  02574	   WFAIL_7			07	! Write fail bits from read channel 7
    02575						! Write fail is an OR of certain
02576						! error conditions namely:
 02577						!	 Illegal 5 to 4 translation
   02578						!	 AMTIE
    02579						!	 PHTIE
    02580						!	 Pointer mismatch
   02581	
  02582	END WORD_11
 02583	
  02584	! Sense byte 5 (M5953)
02585	
  02586	WORD_11 COMMON
   02587	  RPATH
02588	   WRITE_FAIL_P			00	! Illegal 5 - 4 AMTIE, PHTIE or
02589						! pointer mismatch for parity bit
    02590	   STAT_SELECT			01	! True if TIE bus statistics are
02591						! being sent to TIE bus
    02592	   CLOCK_STOPPED		02	! True if Read Path clock is stopped
02593	   BOP				03	! Beginning of Preamble. True when Read 
    02594						! path senses that the Preamble has 
 02595						! just passed the Read Head.
    02596	   DATA_READY			04	! Goes false when M8953 asserts data 
 02597						! ready to M8951
 02598	   PREAMBLE_ERR			05	! True if Preamble had AMTIE
   02599	   STATUS_VALID			06	! M8953	status is valid (set after 
 02600						! .1 inch gap found)
  02601	   VEL_OK			07	! True if velocity is within 10%
02602						! of 125 IPS or JAM velocity OK bit
  02603						! is set
    02604	END WORD_11
 02605	
  02606	! Sense byte 6
   02607	
  02608	WORD_11 COMMON
   02609	  RSTAT
02610	   RMC_STATUS			7-0	! Read path microcontroller status
   02611						! codes are returned in this byte.
   02612						! The following table identifies
02613						! each code and its meaning:
    02614						!  STATUS	MEANING
02615						! 
02616						! Status resulting from ECC self test
02617						! command
   02618						! 101	ECC sequencer passed self test
 02619						! 102	ECC sequencer failed self test
 02620	
  02621						! Status resulting from an M8953 self
02622						! test
 02623						! 103	Read path passed self test
02624						! 104	Read path failed self test
02625	
  02626						! Status resulting from an M8950 self 
    02627						! test 
02628						! 105	Read channel tests all passed
  02629	
  02630						! Status resulting from a clear all test 					! command for velocity testing of drive
  02631						! by microcode
   02632						! 1	First tach pulse
  02633						! 201	Last tach pulse
 02634	
  02635						! Status resulting from a sample density
       02636						! command
   02637						! 210	Not Capable found
    02638						! 211	GCR ID found
    02639						! 212	PE ID found
02640	
  02641						! Status resulting from a write test
 02642						! of IBG, PE ID, GCR ID, ARA ID, or
  02643						! ARA Burst.
02644						! 220	Bad status (write test)
   02645	
  02646						! Status resulting from a tape mark
  02647						! test command
   02648						! 222	Good tape mark found on tape
   02649						!	status
    02650	
  02651						! Status resulting a NON BOT command
 02652						! (read or write FWD or REV, GCR or PE)
   02653						! 230	ARA ID found (not record or TM)
02654						! 231	Tape Mark found
 02655						! 234	Preamble end not found
    02656						! 235	Read path fault 1, too many
    02657						!	M8950's have been fataled to
  02658						! 	continue record processing
   02659						! 236	Read path fault 2, 7 or more
   02660						!	M8950 boards found illegal 5-4
02661						!	translations
   02662						! 241	Unexpected IBG in data;
   02663						!	probably creased tape(7 or
    02664						!	more AMTIES active)
 02665						! 261	Postamble long
  02666						! 262	Postamble short
 02667						! 377	OK
    02668	END WORD_11
 02669	
  02670	! Sense byte 7( RMC commands Loop Back Register, M8953)
  02671	
  02672	WORD_11 COMMON
   02673	  RCMLP
02674	   RMC_CMD			7-0	! Contains the last command sent to
02675						! the M8953 via 'RCMD'
02676						! The Read Microcontroller commands
  02677						! and their codes are:
02678						! Code	Task
 02679						! 00	NOP
    02680						! 01	Interblock read
  02681						! 02	Test PE ID burst
 02682						! 03	Test GCR ID burst
02683						! 04	Test ARAID burst
 02684						! 05	Test TM
02685						! 06	Test ARA burst
   02686						! 07	Normal NON_BOT read
   02687						! 10	Run RMC self test
02688						! 11	Test unknown ID Burst
 02689						! 12	Run read channel micro's test
   02690						! 13	Diagnostic read command
    02691						! 14	Run read channel self test
 02692						! 15	Run clear all RMC test pgm
 02693						! 16	Run ECC self test pgm
 02694						! 17	Find gap
    02695	
  02696	END WORD_11
 02697	
  02698	! Sense byte 8 (read channel AMTIE status ;location is tape transport
   02699	!	via M8955, M8950, M8953)
 02700	
  02701	
  02702	WORD_11 COMMON
   02703	  RAMT
 02704	   AMTIE			7-0	! This reg. reflects the state of the
02705						! AMTIE lines for channels 7 thro 0.
 02706	
  02707	END WORD_11
 02708	
  02709	! Sense byte 9 (read channel DONE status; location is M8950's via M8953)
02710	
  02711	WORD_11 COMMON
   02712	  RDON
 02713	   NOT_DONE_0			0	! This bit will be false if the 
  02714						! associated M8950 has completed 
    02715						! its assigned task.
  02716	   NOT_DONE_1			1	! This bit will be false if the 
  02717						! associated M8950 has completed 
    02718						! its assigned task.
  02719	   NOT_DONE_2			2	! This bit will be false if the 
  02720						! associated M8950 has completed 
    02721						! its assigned task.
  02722	   NOT_DONE_3			3	! This bit will be false if the 
  02723						! associated M8950 has completed 
    02724						! its assigned task.
  02725	   NOT_DONE_4			4	! This bit will be false if the 
  02726						! associated M8950 has completed 
    02727						! its assigned task.
  02728	   NOT_DONE_5			5	! This bit will be false if the 
  02729						! associated M8950 has completed 
    02730						! its assigned task.
  02731	   NOT_DONE_6			6	! This bit will be false if the 
  02732						! associated M8950 has completed 
    02733						! its assigned task.
  02734	   NOT_DONE_7			7	! This bit will be false if the 
  02735						! associated M8950 has completed 
    02736						! its assigned task.
  02737	END WORD_11
 02738	
       02739	! Sense byte 10 (read channel illegal status; location M8950 via M8953)
 02740	
  02741	WORD_11 COMMON
   02742	  RILL
 02743	   ILL_0			0	! This bit will be true if the 
   02744						! associated M8950 indicates the 
    02745						! following:
02746						! GCR
  02747						! ---
  02748						! Data contained an illegal 5-bit code
    02749						! which was either an error or a tape 
    02750						! format control character.
02751						! PE
   02752						! --
   02753						! Data error such as no bit time phase
    02754						! transition.
    02755	   ILL_1			1	!	''
02756	   ILL_2			2	!	''
02757	   ILL_3			3	!	''
02758	   ILL_4			4	!	''
02759	   ILL_5			5	!	''
02760	   ILL_6			6	!	''
02761	   ILL_7			7	!	''
02762	
  02763	END WORD_11
 02764	
  02765	! Sense byte 11 (read channel mark 2 status; location M8950's via M8953)
02766	
  02767	WORD_11 COMMON
   02768	  RMK2
 02769	   MK2_0			0	! When true indicates that the 
   02770						! associated M8950 has detected
 02771						! a 'MARK 2' tape format control
02772						! character. If the corresponding
    02773						! 'illegal 5 to 4' bit is set (RILL reg)
  02774						! a MARK 2 was detected during 5 to 4
02775						! conversion.
    02776	   MK2_1			1	!	''
     02777	   MK2_2			2	!	''
02778	   MK2_3			3	!	''
02779	   MK2_4			4	!	''
02780	   MK2_5			5	!	''
02781	   MK2_6			6	!	''
02782	   MK2_7			7	!	''
02783	
  02784	END WORD_11
 02785	
  02786	! Sense byte 12 (End mark for read channels; location M8950's via M8953)
02787	
  02788	WORD_11 COMMON
   02789	  REND
 02790	   END_0			0	! END Mark for read channel 0
02791	   END_1			1	! END Mark for read channel 1
02792	   END_2			2	! END Mark for read channel 2
02793	   END_3			3	! END Mark for read channel 3
02794	   END_4			4	! END Mark for read channel 4
02795	   END_5			5	! END Mark for read channel 5
02796	   END_6			6	! END Mark for read channel 6
02797	   END_7			7	! END Mark for read channel 7
02798	
  02799	END WORD_11
 02800	
  02801	! Sense byte 13 (Parity Read Channel Status Byte M8950)
  02802	
  02803	WORD_11 COMMON
   02804	 RPSTA
 02805	  AMTIE_P			00	! Weak amplitude on parity bit
  02806	  NOT_DONE_P			01	! Parity M8950 not done
 02807	  ILLEGAL_P			02	! Illegal 5:4 for parity bit
  02808	  MK2P				03	! Mark 2 detected for parity bit
  02809	  END_P				04	! End Mark detected for parity bit
    02810	  POST_P			05	! PE Postamble detected for parity bit
02811	  DATA_P			06	! M8950 data output for parity bit
    02812	  CORRECTED_DATA_P		07	! ECC module corrected output data
02813						! for parity bit
 02814	
  02815	END WORD_11
 02816	
  02817	! Sense byte 14 (read channel PE postamble detect reg.;
  02818	!	location is M8950's via M8953)
02819	
  02820	WORD_11 COMMON
   02821	  RPOSTN
    02822	   POST_0			0	! In PE: contains the inverted data
   02823						! for the byte prior to the one 
02824						! currently on the data lines (RC3 D(N)
   02825						! H). It is used for PE postamble 
   02826						! detection.
02827						! Not used in GCR
02828	   POST_1			1	!	''
    02829	   POST_2			2	!	''
    02830	   POST_3			3	!	''
    02831	   POST_4			4	!	''
    02832	   POST_5			5	!	''
    02833	   POST_6			6	!	''
    02834	   POST_7			7	!	''
    02835	END WORD_11
 02836	
  02837	
  02838	! Sense byte 15 (read channel data register; location M8950's via M8953)
02839	
  02840	WORD_11 COMMON
   02841	  RDATA
02842	   DATA_ECC			7-0	! Data output from M8950 to ECC
   02843						! (M8951)
   02844	END WORD_11
 02845	
  02846	! Sense byte 16 (CRC word; location M8952)
02847	
  02848	WORD_11 COMMON
   02849	  CRCWRD
    02850	   CRC_0			0	! CRC checker output bits
    02851	   CRC_1			1	! CRC checker output bits
    02852	   CRC_2			2	! CRC checker output bits
    02853	   CRC_3			3	! CRC checker output bits
    02854	   CRC_4			4	! CRC checker output bits
    02855	   CRC_5			5	! CRC checker output bits
    02856	   CRC_6			6	! CRC checker output bits
    02857	   CRC_7			7	! CRC checker output bits
    02858	END WORD_11
 02859	
  02860	
  02861	! Sense byte 17 (Corrected data register; location M8951)
02862	
  02863	WORD_11 COMMON
   02864	  ECCOR
02865	   CD_0				0	! Corrected data output from M8951 to
  02866						! M8952 module
   02867	   CD_1				1	! 	''
    02868	   CD_2				2	! 	''
    02869	   CD_3				3	! 	''
    02870	   CD_4				4	! 	''
         02871	   CD_5				5	! 	''
    02872	   CD_6				6	! 	''
    02873	   CD_7				7	! 	''
    02874	END WORD_11
 02875	
  02876	! Sense byte 18 (ECC Status Byte M8951)
   02877	
  02878	WORD_11 COMMON
   02879	  ECCSTA				
02880	   STEC				00	! Single track error correction
  02881	   TTEC				01 	! Two track error correction
    02882	   UNC				02	! Uncorrectable. ECC could not
    02883						! correct data error
  02884	   PM				03	! Pointer Mismatch. The track in 
  02885						! error did not have a pointer.
 02886	   ACRCERR			04	! ACRC Error
    02887	   AMT				05	! AMTIE occurred during data
 02888						! portion of record
   02889	   RPE				06	! ECC ROM Parity Error
  02890	   CRCE				07	! CRC Error
  02891	END WORD_11
 02892	
  02893	
  02894	! Sense byte 19 (Channel 1 Track-in-error byte M8950)
    02895	
  02896	WORD_11 COMMON
   02897	  CH0TIE
    02898	   STAT				00	! STAT = 0, Pointer mismatch
02899						! in GCR, 0 in PE
02900	 					! STAT = 1, Any pointer occurred
    02901						!	(both GCR and PE)
   02902	   PHTIE0			01	! Phase Tie
 02903	   AMTIE0			02	! AMTIE
02904	   PEGCRTK			03	! Illegal 5:4 in GCR
 02905						! Dead track in PE
    02906	END WORD_11
 02907	
  02908	! Sense byte 20 (Channel 2 Track-in-error byte M8950)
    02909	
  02910	WORD_11 COMMON
   02911	  CH1TIE
    02912	   STAT				00	! STAT = 0, Pointer mismatch
02913						! in GCR, 0 in PE
02914	  					! STAT = 1, Any pointer occurred
   02915						!	(both GCR and PE)
   02916	   PHTIE1			01	! Phase Tie
 02917	   AMTIE1			02	! AMTIE
02918	   PEGCRTK			03	! Illegal 5:4 in GCR
 02919						! Dead track in PE
    02920	END WORD_11
 02921	
  02922	
  02923	! Sense byte 21 (Channel 3 Track-in-error byte M8950)
    02924	
  02925	WORD_11 COMMON
   02926	  CH2TIE
    02927	   STAT				00	! STAT = 0, Pointer mismatch
02928						! in GCR, 0 in PE
02929						! STAT = 1, Any pointer occurred
02930						!	(both GCR and PE)
   02931	   PHTIE2			01	! Phase Tie
 02932	   AMTIE2			02	! AMTIE
02933	   PEGCRTK			03	! Illegal 5:4 in GCR
 02934						! Dead track in PE
    02935	
  02936	END WORD_11
 02937	
  02938	
  02939	! Sense byte 22 (Channel 4 Track-in-error byte M8950)
    02940	
  02941	WORD_11 COMMON
   02942	  CH3TIE
    02943	   STAT				00	! STAT = 0, Pointer mismatch
02944						! in GCR, 0 in PE
02945						! STAT = 1, Any pointer occurred
02946						!	(both GCR and PE)
   02947	   PHTIE3			01	! Phase Tie
 02948	   AMTIE3			02	! AMTIE
02949	   PEGCRTK			03	! Illegal 5:4 in GCR
 02950						! Dead track in PE
    02951	
  02952	END WORD_11
 02953	
  02954	
  02955	! Sense byte 23 (Channel 5 Track-in-error byte M8950)
    02956	
  02957	WORD_11 COMMON
   02958	  CH4TIE
    02959	   STAT				00	! STAT = 0, Pointer mismatch
02960						! in GCR, 0 in PE
02961						! STAT = 1, Any pointer occurred
02962						!	(both GCR and PE)
   02963	   PHTIE4			01	! Phase Tie
 02964	   AMTIE4			02	! AMTIE
02965	   PEGCRTK			03	! Illegal 5:4 in GCR
 02966						! Dead track in PE
    02967	
  02968	END WORD_11
 02969	
  02970	
  02971	! Sense byte 24 (Channel 6 Track-in-error byte M8950)
    02972	
  02973	WORD_11 COMMON
   02974	  CH5TIE
    02975	   STAT				00	! STAT = 0, Pointer mismatch
02976						! in GCR, 0 in PE
02977						! STAT = 1, Any pointer occurred
02978						!	(both GCR and PE)
   02979	   PHTIE5			01	! Phase Tie
 02980	   AMTIE5			02	! AMTIE
02981	   PEGCRTK			03	! Illegal 5:4 in GCR
 02982						! Dead track in PE
    02983	END WORD_11
 02984	
  02985	
  02986	! Sense byte 25 (Channel 7 Track-in-error byte M8950)
    02987	
  02988	WORD_11 COMMON
   02989	  CH6TIE
    02990	   STAT				00	! STAT = 0, Pointer mismatch
02991						! in GCR, 0 in PE
02992						! STAT = 1, Any pointer occurred
     02993						!	(both GCR and PE)
   02994	   PHTIE6			01	! Phase Tie
 02995	   AMTIE6			02	! AMTIE
02996	   PEGCRTK			03	! Illegal 5:4 in GCR
 02997						! Dead track in PE
    02998	END WORD_11
 02999	
  03000	
  03001	
  03002	! Sense byte 26 (Channel 8 Track-in-error byte M8950)
    03003	
  03004	WORD_11 COMMON
   03005	  CH7TIE
    03006	   STAT				00	! STAT = 0, Pointer mismatch
03007						! in GCR, 0 in PE
03008						! STAT = 1, Any pointer occurred
03009						!	(both GCR and PE)
   03010	   PHTIE7			01	! Phase Tie
 03011	   AMTIE7			02	! AMTIE
03012	   PEGCRTK			03	! Illegal 5:4 in GCR
 03013						! Dead track in PE
    03014	END WORD_11
 03015	
  03016	
  03017	! Sense byte 27 (Channel P Track-in-error byte M8950)
    03018	
  03019	WORD_11 COMMON
   03020	  CHPTIE
    03021	   STAT				00	! STAT = 0, Pointer mismatch
03022						! in GCR, 0 in PE
03023						! STAT = 1, Any pointer occurred
03024						!	(both GCR and PE)
   03025	   PHTIEP			01	! Phase Tie
 03026	   AMTIEP			02	! AMTIE
03027	   PEGCRTK			03	! Illegal 5:4 in GCR
 03028						! Dead track in PE
    03029	
  03030	END WORD_11
 03031	
  03032	! Sense byte 28 (read channel TIE bus register; location M8953)
    03033	
  03034	WORD_11 COMMON
   03035	  RTIER
03036	   TIE_BUS_0			0	! Reads TIE bus without enabling
   03037						! any M8950 modules. If JAM TIE
 03038						! bus (in address 011-W bit 7)
  03039						! is set then the value written into
 03040						! address 012-W is read.
   03041	   TIE_BUS_1			1	!	''
 03042	   TIE_BUS_2			2	!	''
 03043	   TIE_BUS_3			3	!	''
 03044	
  03045	END WORD_11
 03046	
  03047	! Sense byte 29 (AMTIE word; location M8955 TUP 2, 4)
    03048	
  03049	WORD_11 COMMON
   03050	  TAMT
 03051	   TU_AMTIE			7-0	! This register reflects info on
  03052						! TU bus AMTIE 7:0 L
  03053	
  03054	END WORD_11
 03055	
  03056	
       03057	! Sense byte 30 (TU port status byte   M8955)
  03058	
  03059	WORD_11 COMMON
   03060	  PSTAT
03061	   AMTIE_P			00	! TU bus AMTIE Parity
03062	   RDP				01	! TU bus RD P line
 03063	   WCSP				02	! TU bus WCS P line
    03064	   TACK				03	! TU bus tachometer line
    03065	   TUPRES			04	! Tape unit present. Indicates that
  03066						! a TU78 transport is physically
03067						! cabled to this TU port.
  03068	   CMDPE			05	! WCS command parity error during
03069						! a TM78 command or command/status
   03070						! address write.
 03071	   WR_DATA_STROBE		06	! TU bus WDS
   03072	   STAT_PE			07	! WCS status parity error has occurred
   03073						! when reading a TU78 register 
 03074						! over the WCS lines.
 03075	END WORD_11
 03076	
  03077	
  03078	! Sense byte 31 (port read data word)
03079	
  03080	WORD_11 COMMON
   03081	  PRDD
 03082	   READ_DATA			7-0	! This reg. reflects the info
    03083						! on TU BUS RD 7:0 L
  03084	END WORD_11
 03085	
  03086	! Sense byte 32 (CAS port (n) status byte)
03087	
  03088	WORD_11 COMMON
   03089	  CASSTA
    03090	   DRADR			2-0	! Massbus drive address for
03091						! this port
 03092	   ATA				03	! Attention active. The host computer
  03093						! has not completed the ATTN. 
  03094						! interrupt servicing routine yet
    03095	   ILR_CAS			04	! Illegal Massbus register referenced
    03096	   CASPE			05	! CAS/Massbus C bus parity error has
  03097						! been detected on a write to TM78.
  03098	   TMRDY			06	! This massbus port is ready to 
 03099						! accept a command from the host
03100						! computer. 
03101	   CONTEN			07	! CAS contention error. Both the
03102						! host computer and 
  03103						! the microcomputer (M8960) tried
    03104						! to access the common address space
 03105						! at the same time.
   03106	
  03107	END WORD_11
 03108	
       03109	! Sense byte 33 (Massbus C bus status byte)
    03110	
  03111	WORD_11 COMMON
   03112	  CBUSSTA
   03113	   ONLINE			00	! Massbus port is on-line 
 03114	   V5OK				01	! When true indicates that
  03115						! the -5 volts power supply for
 03116						! Massbus receivers is operating.
    03117	   LEFT				02	! reflects the status of the 
    03118						! write microcontroller LEFT line
    03119	   MBFAIL			03	! Massbus fail. When HI indicates
    03120						! a controller Power failure or
 03121						! no Massbus connected to this port.
 03122	   MBINIT			04	! Massbus initialize line status
03123	   MBDEM			05	! Massbus demand line status
03124	   MBTRA			06	! Massbus transfer line status
   03125	   MBATTN			07	! Massbus attention line status
 03126	
  03127	END WORD_11
 03128	
  03129	! Sense byte 34 (Massbus D bus status byte)
    03130	
  03131	WORD_11 COMMON
   03132	  DBUSSTA
   03133	   MBSCLK			00	! Massbus sync clock line status
03134	   WMCSCLK			01	! WMC SCLK or hardware reg 300-w bit 0
   03135	   MBRUN			02	! Massbus run line
03136	   MBEXC			03	! Massbus exception line status
  03137	   MBEBL			04	! Massbus end of block line status
    03138	   MBOCC			05	! Massbus occupied line status
   03139	   MBWCLK			06	! Massbus write clock line status
    03140	   MBWREN			07	! Port write enabled
  03141	
  03142	END WORD_11
 03143	
  03144	! Sense byte 35 (write microcontroller status; location M8959)
03145	
  03146	WORD_11 COMMON
   03147	  WMCSTA
    03148	   XMC_WCLK			00	! Reflects true state of translator
03149						! write clock pulse(110 ns at normal
 03150						! speed)
    03151	   RES_WMC_DRBUS		01	! Residual To WMC DR Bus.
 03152						! Gates HI or LO nibble of residual
  03153						! character to WMC DR BUS.
 03154	   ACRC_WMC_DRBUS		02	! ACRC to WMC DR BUS.
    03155						! Gates HI or LO nibble of ACRC 
03156						! character to WMC DR Bus.
 03157	   CRC_WMC_DRBUS		03	! Gates HI or LO nibble of CRC
 03158						! character to WMC DR Bus.
 03159	   ECC_WMC_DRBUS		04	! Gates HI or LO nibble of ECC
 03160						! character to WMC DR Bus.
 03161	   TRANS			05	! Transfer. Shifts one nibble
    03162						! on WMC DR bus into Translator.
03163	   WMC_NOT_DONE			06	! 0 = Write microcontroller done
    03164						! writing PE data or GCR data 
  03165						! groups.(used in diagnostic single
  03166						! step node; normally appears for
    03167						! 110 ns.)
  03168						! 1 = Write microcontroller busy
03169						!     or idle.
   03170	   XMC_NOT_DONE			07	! 0 = Translator microcontroller
    03171						!     done writing postamble and
03172						!     waiting to be serviced.
   03173						! 1 = Translator Busy.
03174	END WORD_11
 03175	   
    03176	
  03177	! Sense byte 36 (Tape unit port 0/1 select; location M8955, Port 0/1, Slot 08)
    03178	
  03179	WORD_11
03180	  TUSEL0
    03181	   TUNIT_SEL			1 - 0	! A two bit binary field which
 03182						! reflects the Tape Unit Port 
  03183						! currently selected by the MBSEL
    03184						! register (340-w bits 1:0)
03185	   TPORT1_WR_EN			2	! When true indicates that the 
 03186						! Write Path for Tape Unit Port
 03187						! 1 is enabled.
  03188	   TPORT0_WR_EN			3	! When true indicates that the 
 03189						! Write Path for Tape Unit Port
 03190						! 0 is enabled.
  03191	   TPORT1_RD_EN			4	! When true indicates that the 
 03192						! Read Path for Tape Unit Port 1
03193						! is enabled.
    03194	   TPORT0_RD_EN			5	! When true indicates that the 
 03195						! REad Path for Tape Unit Port 0
03196						! is enabled.
    03197	   NOT_BYTE_TER_CNT		6	! 0 = Write microcontroller Byte
  03198						!     Count Terminal Count asserted.
 03199	   SINGLE_TPORT			7	! 0 = Both TUP modules are installed
 03200						!     in backplane slots 08/09
  03201						! 1 = Only one TUP module installed
  03202						!     in backplane slot 08.
03203	END WORD_11
 03204	
  03205	
  03206	! Sense byte 37 (Tape unit port 2/3 select; location M8955, Port 2/3 Slot 09)
03207	
  03208	WORD_11 COMMON
   03209	  TUSEL1
    03210	   TUNIT_SEL1			1 - 0	! A two bit binary field which
03211						! reflects the Tape Unit Port 
  03212						! currently selected by the MBSEL
    03213						! register (340-w bits 1:0)
03214	   TPORT3_WR_EN			2	! When true indicates that the 
 03215						! Write Path for Tape Unit Port
 03216						! 3 is enabled.
  03217	   TPORT2_WR_EN			3	! When true indicates that the 
 03218						! Write Path for Tape Unit Port
 03219						! 2 is enabled.
  03220	   TPORT3_RD_EN			4	! When true indicates that the 
 03221						! Read Path for Tape Unit Port 3
03222						! is enabled.
    03223	   TPORT2_RD_EN			5	! When true indicates that the 
 03224						! REad Path for Tape Unit Port 2
03225						! is enabled.
    03226						! Bits 7:6 are not used.
   03227	END WORD_11
 03228	
  03229	
  03230	! Sense byte 38 (write data; location M8959)
   03231	
  03232	WORD_11 COMMON
   03233	  WRTDAT
    03234	   WR_DATA			7-0	! Looks at write or read data on
   03235						! the intermediate DRD bus.
03236	END WORD_11
 03237	
  03238	
  03239	! Sense byte 39 (Byte counter HI/LO; location M8959)
03240	
  03241	WORD_11 COMMON
   03242	  BYT1_CNT
  03243	   BYTE_CNT			7 - 0	! Write micro/byte assembly 
    03244						! 'byte counter' word.
03245						
  03246	END WORD_11
 03247	
  03248	
  03249	! Sense byte 40 (byte counter 15:8)
  03250	
  03251	WORD_11 COMMON
   03252	  BYT2_CNT
  03253	  BYTE_CNT2			7 - 0	! Byte count bits 15 to 8
  03254	END WORD_11
 03255	
  03256	
  03257	! Sense byte 41 (Pad counter HI/Lo; location M8959)
 03258	
       03259	WORD_11 COMMON
   03260	  PAD1_CNT
  03261	   PAD_CNT			7 - 0	! Write Micro/Byte assembly
 03262						! 'pad character counter' word.
 03263	END WORD_11
 03264	
  03265	! Sense byte 42 (pad counter 15:8)
   03266	
  03267	WORD_11 COMMON
   03268	  PAD2_CNT
  03269	   PAD_CNT			7 - 0	! Write Micro/Byte assembly
 03270	
  03271	END WORD_11
 03272	
  03273	! Sense byte 43 (Error code counter HI/Lo; location M8959)
    03274	
  03275	WORD_11 COMMON
   03276	  ERR1_CNT
  03277	   ERR_CODE			7-0	! ECODE counter values when read
  03278						! at the completion of an operation:
 03279						! EC	Error Indication
 03280						! -1	Read Skip Count > 4 in
03281						! 	10 CORE DUMP, > 3 in
    03282						!	10 COMPAT, or > 8 in
03283						! 	HI Density
    03284						! -2	Read Skip Count > 1 in
03285						!	11 Normal or 15
03286						!	Normal
    03287						! -3	Format COde > 6
  03288						! -4	WMC SELF-TEST
    03289						!	Diagnostic error
    03290						! -5	Read overrun or write fault
03291	END WORD_11
 03292	
  03293	! Sense byte 44 (error code counter 15:8)
 03294	WORD_11 COMMON
   03295	  ERR2_CNT
  03296	   ECODE_2			7 - 0	! Error code counter 15:8
   03297	END WORD_11
 03298	
  03299	
  03300	! Sense byte 45 (Diagnostic data reg A)
   03301	
  03302	WORD_11 COMMON
   03303	  DDR_A
03304	   MASSBUS_DATA			7 - 0	! This reg. reads from and writes 
    03305						! to a portion of the 18 bit wide MBD 
    03306						! bus between the M8956 and M8959
    03307						! modules.
  03308	END WORD_11
 03309	
  03310	! Sense byte 46 (diagnostic data reg B)
   03311	
  03312	WORD_11 COMMON
   03313	  DDR_B
03314	   MASSBUS_DATA_B		7 - 0	! This reg. reads from and writes
    03315						! to a portion of the 18 bit wide
    03316						! MBD bus between the M8956 and
 03317						! M8959 modules.
 03318	END WORD_11
 03319	
  03320	
       03321	! Sense byte 47 (Write Microcontroller error byte)
  03322	
  03323	WORD_11 COMMON
   03324	  WMCERR
    03325	   MBD				2-0	! HI order 3 bits of MBD lines
   03326	   DRRDPE			03	! Read data parity error from M8952
  03327						! to WMC modules over the CRC bus.
   03328	   ROMPE			04	! WMC ROM parity error was detected
   03329						! or the WMC internal microdiagnostics
    03330						! stopped at an error halt.
03331	   ERR				05	! WMC diagnostic ''ovarall error''
03332						! status bit.
    03333	   DRMBPE			06	! Massbus data bus parity error
 03334						! was received at TM78 data input
    03335						! port.
03336	   DR_NO_WR_CLK			07	! Host Massbus controller failed
    03337						! to respond to SCLK in time to
 03338						! transfer next data byte. (currently
03339						! not used)
 03340	
  03341	END WORD_11
 03342	
  03343	! Sense byte 48 (Interrupt status byte, M8960)
 03344	
  03345	WORD_11 COMMON
   03346	  INTSTA
    03347	   X_ROMPE			00	! Translator (M8958) ROM parity error
    03348						! or has branched to an error halt
   03349						! during its internal diagnostic
03350						! routines.
 03351	   PE_WR_PE			01	! Translator VPE on PE write has
   03352						! been detected at the output of
03353						! the Translator.
03354	   MB_B_OUT			02	! Massbus port B logic not present
 03355	   MB_A_OUT			03	! Massbus port A logic not present
 03356	   WR_DATA_REG_P		04	! Reflects the state of the 
   03357						! ''DR BYTE PAR H'' line. Serves
03358						! as the parity bit for the WRTDAT
   03359						! reg. or  PE write done flag.
  03360	   PWR_OK			05	! When set indicates that the TM78
   03361						! Power Supply has not signaled
 03362						! an AC LO condition.
 03363	   ROM_PE			06	! Microcomputer(M8960) ROM has
  03364						! experienced a Parity Error.
   03365	   MBSEL			07	! Massbus port currently  selected 
   03366						! 0 = Port A, 1 = Port B
   03367	
  03368	END WORD_11
 03369	
  03370	
  03371	! Sense byte 49 (TU78 status byte)
   03372	
  03373	WORD_11 COMMON
   03374	  TUSTAT
    03375	   FPT_TU			00	! File protected
 03376	   EOT_TU			01	! End of tape
    03377	   BOT_TU			02	! Beginning of tape
   03378	   PES				03	! 1 = PE mode, 0 = GCR mode
  03379	   REW_TU			04	! TU is rewinding
03380	   ONL				05	! TU is on-line, but not necessarily
   03381						! ready
03382	   RDY_ON			06	! Ready has undergone a transition
   03383						! to the set state. Cleared by a CLR
 03384						! TU command.
    03385	   REDY			07	! The tape unit is ON LINE, not 
  03386						! rewinding, not loading or unloading
03387						! and all pneumatic interlocks are made.
  03388	 
 03389	END WORD_11
 03390	
  03391	! Sense byte 50 (MIA status A byte)
  03392	
  03393	WORD_11 COMMON
   03394	  MIAA_STAT
 03395	   DSE_MIA			00 	! indicates that a Data security erase
  03396						! command has been written into the TU 
   03397						! CMD B location. Clears when EOT sets
    03398						! or when a CLR TU command is written
03399						! into TU CMD B.
 03400	   MOT				01	! Indicates  TU capstan motion
    03401	   LWR				02	! Loop write-to-read test command
 03402	   WR_INH			03	! Write head inhibit
  03403	   WRT				04	! Indicates the state of the 
03404						! Write command bit
   03405	   REVERSE			05	! indicates the state of the
   03406						! TU reverse command bit
   03407	   FWD				06	! TU forward bit has been written
 03408						! with a 1 or a DSE command has
 03409						! been written into the TU CMD B
03410						! location.
 03411	   MAN_TEST			07	! MIA is in manual test mode
  03412	
  03413	END WORD_11
 03414	
  03415	! Sense byte 51 (MIA status B byte)
  03416	
  03417	WORD_11 COMMON
   03418	  MIAB_STAT
 03419	   PORTSEL_MIA		2-0	! Port select
    03420						! 6 = position 0 (massbus A)
    03421						! 5 = position 1 (massbus B)
    03422						! 3 = position 2 or both(Massbus A or B)
  03423						! 7 = position 3(select neither Massbus)
  03424	   SPEED			4-3	! A two bit field that indicates
03425						! the speed of a tape unit. TU78 = 2
 03426						! (125 IPS)
 03427	   					! Bit 3 contains 0 always
    03428						! Bit 4 contains 1 always
  03429	   ARA_ERR			5	! Automatic read amplification 
 03430						! burst error. During a GCR operation
03431						! from 9.5 inches after BOT the
 03432						! amplifier gains failed to achieve
  03433						! the required value. Valid only if
  03434						! READY is set.
  03435	   PEC				6	! 0 = GCR mode
 03436						! 1 = PE mode
    03437	   CMD_PE			7	! TU bus command parity error or 
03438						! a TEST command has been written
    03439						! into TU CMD B. Clears when a CLR 
  03440						! TU command is received, whether 
   03441						! parity is correct(odd) or not. 
    03442						! This bit drives the TU Bus CMD PE L
03443						! line.
03444	END WORD_11
 03445	
  03446	! Sense byte 52 (MIA register 3; serial NR A)
  03447	
  03448	 WORD_11 COMMON
  03449	   SERA_NR
  03450	   SER_ANR		7-0	! SERIAL NUMBER
 03451	END WORD_11
 03452	
  03453	
  03454	! Sense byte 53 (MIA register 4; serial NR B)
  03455	
  03456	  WORD_11 COMMON
 03457	  SERB_NR
   03458	   SER_BNR		7-0	! SERIAL NUMBER
 03459	END WORD_11
 03460	
  03461	
  03462	
  03463	! Sense byte 54 (MIA TU diagnostics byte, M8955)
    03464	
  03465	WORD_11 COMMON
   03466	  TUDIAG		
  03467	   AMTIE_THR			1-0	! AMTIE threshold
 03468						! 0/1 = 10% IBG check
 03469						! 2 = 25% Write
  03470						! 3 = 20% Read
   03471						! Bit 02 is zero
 03472	   TACH				03	! Tachometer pulse
03473	   EOT_DET			04	! EOT detected
  03474	   RD_EN			05	! Read enable
03475	   NOT_WR			06	! Not writing
    03476	   WRB4				07	! State of write AMP for TK4
03477	
  03478	END WORD_11
 03479	
  03480	! Sense byte 55
  03481	
  03482	WORD_11 COMMON
   03483	  RET1_CNT
  03484	   RET_CNT			7 - 0	! Retry counter. This byte is the
03485						! count of retry interrupt requests
  03486						! given for the tape unit. When this
 03487						! count is zero, the tape unit is not
03488						! in a retry sequence.
03489	END WORD_11
 03490	
  03491	! Sense byte 56 (Retry control byte)
 03492	! This byte is used by the microcode to control error recovery. It is
   03493	! meaningful only when the retry counter(byte 55) is not zero.
03494	
  03495	WORD_11 COMMON
   03496	  RET2_CNT
  03497	   REV_CMD			05	! Initial command moved tape
   03498						! reverse
   03499						! Bits 0 to 4 are not used
 03500	   RD				06	! Initial command was a Read
  03501	   OPP				07	! Last retry was in the opposite
  03502						! direction of initial command
  03503	END WORD_11
 03504	
  03505	! Sense byte 57 (TU software status)
 03506	
  03507	WORD_11 COMMON
   03508	  TUX
  03509	   DSE_TUX			00	! Data security erase in progres
    03510	   REW				01	! Rewind in progress
    03511	   PRES_TUX			02	! TU exists and power is on
   03512	   NDT				03	! NON_DATA transfer command
  03513						! issued from a massbus port 
   03514						! is in progress
 03515	   REV				04	! Tape was not moved in reverse
   03516	   WRT_TAPE			05	! Last tape operation involved
03517						! a write to tape
03518	   TM				06	! Last record seen was a tape 
03519						! mark
 03520	   PORT				07	! 0 = Last massbus command came 
 03521						! from port A
    03522						! 1 = Last massbus command
 03523						! came from port B
    03524	END WORD_11
 03525	
  03526	! Sense byte 58 (Transfer control byte)
   03527	
  03528	WORD_11 COMMON
   03529	  XFRCTL
    03530	   WRC_SEL			2-0	! Write clock select
03531						! 0 = Normal write clock
   03532						! 1 = 20% clock
  03533						! 2 = 10% clock (GCR read)
 03534						! 3 = -20% clock (PE read)
 03535						! 4 = External clock
  03536						! 5 = Single step
03537						! 6/7 = not used
 03538	   RDC_SEL			5-3	! Read clock select
 03539						! 0 = -10% clock
 03540						! 1 = +10% clock
 03541						! 2 = Normal clock
    03542						! 3 = -30% clock
 03543						! 4 = external clock
  03544						! 5 = Single clock
    03545						! 6/7 = not used
 03546	   PLO_BP			06	! Read channel Phase Lock
  03547						! Oscillator Bypass
        03548						! Bit 7 is zero
  03549	   LO_RD_TH			07	! Low read threshold.
    03550	END WORD_11
 03551	
  03552	
  03553	! Sense byte 59(XRETRY Byte)
    03554	WORD_11 COMMON
   03555	  XRETRY
    03556	   X_RETRY			7 - 0	! REtry suppress and format control.
  03557						! This byte contains the contents
    03558						! of the left half of the Massbus reg.
    03559						! which contains the retry suppress bit
   03560						! format and skip count.
   03561	END WORD_11
 03562	
  03563	! Sense byte 60(Keypad enable flag byte)
  03564	
  03565	WORD_11 COMMON
   03566	  ENAON
03567	   KEYPAD_FLAG			7 - 0	! This byte is not zero when the
  03568						! keypad is enabled.
  03569	END WORD_11
 03570	
 03571	!++
    03572	!	Disk statistics block
    03573	!--
    03574	
  03575	TABLE  TOPS10
    03576	 DSCSBP		!Disk statistics block
 03577	  DSCBPT	0	0-35	!TABLE LENGTH
   03578					!-# OF ITEMS,,0
   03579	  DEV_NAM	1	0-35	!DEVICE NAME IN SIXBIT
   03580	  DSCHID	2	0-35	!HOME BLOCK ID IN SIXBIT
  03581	  DSCHCT	3	0-35	!LH = # OF HARD DEV+SEEK+SRH ERRORS
 03582					!RH = # OF HARD DATA ERRORS
 03583	  DSCSCT	4	0-35	!LH = # OF HARD+SOFT DEV+SEEK+SRH ERRORS
 03584					!RH = # OF HARD+SOFT DATA ERRORS
 03585	  DSCPCT	5	0-35	!LH = # OF POSITION FAILURES
   03586					!RH = # OF HARD+SOFT SEEK INC'S
  03587	  SEEK_INC_CNT	5	18-35   ! 
03588	  NTHUNG_CNT	6	0-8	! NTHUNG count	{
  03589	  THUNG_CNT	6	9-17	! THUNG count	{ UNIHNG
 03590	  PHUNG_CNT	6	18-26	! PHUNG count	{
  03591	  SHUNG_CNT	6	27-35	! SHUNG count	{
  03592	  DSCMCT	7	0-35	!SOFTWARE ERROR COUNT
03593	  SAT_ERRORS	7	0-11	! SAT error count	{
   03594	  RIB_ERRORS	7	12-23	! RIB error count	{ UNIMCT
03595	  CHKSM_ERRORS	7	24-35	! Checksum error count	{
03596	  DSCBRC	8	0-35	!TOTAL BLOCKS READ IN BUFFERED MODE
 03597	  DSCBWC	9	0-35	!TOTAL BLOCKS WRITTEN IN BUFFERED MODE
   03598	  DSCDRC	10	0-35	!TOTAL BLOCKS READ IN DUMP MODE
    03599	  DSCDWC	11	0-35	!TOTAL BLOCKS WRITTEN IN DUMP MODE
 03600	  DSCMRC	12	0-35	!TOTAL BLOCKS READ BY MONITOR
 03601	  DSCMWC	13	0-35	!TOTAL BLOCKS WRITTEN BY MONITOR
   03602	  DSCICT	14	0-35	!TOTAL BLOCKS READ FOR SWAPPER
03603	  DSCOCT	15	0-35	!TOTAL BLOCKS WRITTEN BY SWAPPER
   03604	  DSCMSC	16	0-35	!TOTAL SEEKS BY MONITOR
  03605	  DSCUSC	17	0-35	!TOTAL SEEKS FOR JOBS
    03606	END TABLE
   03607	
  03608	!++
    03609	!	DTE control block
   03610	!--
    03611	
  03612	TABLE  TOPS10 TOPS20
  03613	 DTE_CONTROL_BLOCK	!List of DTE control blocks
 03614	  DTE_BLOCK,_0		0	BODY-F
   03615	  DTE_BLOCK,_1		8	BODY-F
   03616	  DTE_BLOCK,_2		16	BODY-F
  03617	  DTE_BLOCK,_3		24	BODY-F
  03618	END TABLE
   03619	
  03620	TABLE  TOPS10 TOPS20
  03621	 DTE_BLOCK	! Each DTE duplicates the following format
    03622	  TO_11_POINTER		0	0-35
    03623	  TO_10_POINTER		1	0-35
    03624	  DTE_INT_INSTRUCTION	2	0-35
    03625	! RESERVED		3	0-35
    03626	  EXAMINE_PROTECT	4	0-35
   03627	  DEPOSIT_PROTECT	5	0-35
   03628	  DEPOSIT_RELOC		6	0-35
    03629	END TABLE
   03630	!---------------------------------------------------------------
   03631	
  03632	!++
    03633	!
 03634	!	MASSBUS REGISTER INFORMATION FOR DX20.
  03635	!	MASSBUS REGISTER VALUES ARE IN THE FORM
 03636	!	FINAL CONTENTS,,INITIAL CONTENTS
   03637	!
 03638	!--
    03639	
  03640	TABLE  TOPS10 TOPS20
  03641	 DX20_MASSBUS_REG
03642	  DM_CR			0	0-35	! Control register
  03643	  DM_SR			1	0-35	! Status register
   03644	  DM_ER			2	0-35	! Error register
    03645	  DM_MR			3	0-35	! Maintainence register
  03646	  DM_AS			4	0-35	! Attention summary register
  03647	  DM_SB			5	0-35	! Secondary block address register
 03648	  DM_DT			6	0-35	! Drive type & Hardware version #
  03649	  DM_SI			7	0-35	! STATUS INDEX / ENDING STATUS
03650	  DM_DN			8	0-35	! DRIVE # / MODE
    03651	  DM_ES			9	0-35	! EXTENDED STATUS TABLE SIZE
  03652	  DM_TE			10	0-35	! Track in error / Flags
03653	  DM_AY			11	0-35	! ASYNCH. STATUS
   03654	  DM_E0			12	0-35	! EXTENDED STATUS REG 0
 03655	  DM_E1			13	0-35	! EXTENDED STATUS REG 1
 03656	  DM_IR			14	0-35	! INSTR. REG
  03657	  DM_PC			15	0-35	! PROGRAM COUNTER
  03658	  DM_AL			16	0-35	! ALU
    03659	  DM_SD			17	0-35	! SROM / DROM
 03660	  DM_FP			18	0-35	! FROM / PARITY / INTERRUPTS
 03661	  DM_BW			19	0-35	! BALU / WORKING MEMORY
 03662	  DM_IB			20	0-35	! IBUS / BR
   03663	  DM_MA			21	0-35	! FLAGS / MEMORY ADDR.
       03664	END TABLE
   03665	
  03666	!++
    03667	!
 03668	!	DX20 DEVICE SUB-BLOCK DEFINITIONS
  03669	!
 03670	!--
    03671	
  03672	TABLE  TOPS10 TOPS20
  03673	 DX20_DEVICE_REG
 03674	  DT_SBA		0	0-35	! SENSE BYTES	0-3
   03675	  DT_SBB		1	0-35	!		4-7
    03676	  DT_SBC		2	0-35	!		8-11
   03677	  DT_SBD		3	0-35	!		12-15
  03678	  DT_SBE		4	0-35	!		16-19
  03679	  DT_SBF		5	0-35	!		20-23
  03680	  DT_MCV		6	0-35	! MICRO CODE VERSION #
   03681	  DT_MRA		7	0-35	! MASSBUS INTERFACE REG 0-3
   03682	  DT_MRB		8	0-35	!	 		4-7
  03683	  DT_MRC		9	0-35	! 			10-13
03684	  DT_MRD		10	0-35	! 		 	14-17
   03685	  DT_MRE		11	0-35	! 			20-23
    03686	  DT_MRF		12	0-35	! 			24-27
    03687	  DT_CB0		13	0-35	! CHANNEL BUS INTERFACE 10-13
03688	  DT_CB1		14	0-35	!			14-17
03689	  DT_DP0		15	0-35	! DATA PATH REG 0-3
03690	  DT_DP1		16	0-35	!		4-7
   03691	  DT_DP2		17	0-35	!		10-13
 03692	  DT_DP3		18	0-35	!		14-17
 03693	  DT_LAS		19	0-35	! LAST COMMAND,LAST ADDR,
    03694						!  LAST ASYNCH,STATUS,
03695						!  LAST DEV W ASYNCH STATUS
03696	END TABLE
   03697	
  03698	!++
    03699	!	Information recorded by TOPS-10 or TOPS-20 when an
03700	!	operator wishes to note something in the log.
03701	!	This may or may not be a manually-detected error.
 03702	!--
    03703	
  03704	TABLE  TOPS10 TOPS20
  03705	 ERROR_LOG
  03706	  JOB_NUMBER		0	0-17	!Who sent message
    03707	  TERMINAL_NUMBER	0	18-35	!Terminal of sender
  03708	  USER_ID		1	0-35	!P,PN OF USER
 03709	  WHO_ANSWER		2	0-35	!SIXBIT ANSWER TO /WHO
    03710	  DEV_ANSWER		3	0-35	!SIXBIT ANSWER TO /DEV
    03711	  LOG_TEXT		4	0-35	!PTR TO ASCIZ MSG
 03712	END TABLE
   03713	
  03714	!++
    03715	!	Front-end entry description used by both TOPS-10 and TOPS-20.
    03716	!--
    03717	
  03718	TABLE  TOPS10 TOPS20
  03719	 FE_DATA
    03720	  FORK_NUMBER		0	0-17	!Fork running at time of entry
03721	  JOB_NUMBER		0	18-35	!Job "    "     "   "    "
    03722	  DIRECTORY		1	0-35	!LOGGED IN DIRECTORY,, CONNECTED DIR
 03723	  FE_VERSION		2	0-35	!FRONT END SOFTWARE VERSION #
  03724	  PROGRAM_NAME		3	0-35	!USER'S PGM NAME IN SIXBIT
   03725	  UNK_DEV_FLAG		4	0	!DEVICE CODE UNKNOWN TO TOPSxx
  03726	  DEV_NUMBER		4	14-17	!DEVICE #
 03727	  DEV_CODE		4	18-35	!DEVICE CODE OF REPORTED DEVICE
 03728						! SAME AS CODE IN FE PROTOCOL
   03729	  WD_CNT		5	0-17	!POINTER TO SUB-BLOCK
    03730	  FE_SUB		5	MAIN-F	!To get into subtable
  03731	  FE_OFFSET		5	18-35	!DEVICE DEPENDENT PACKET OF INFORMATION.
 03732						!-# OF WORDS,,OFFSET FROM FE_JOB
03733	  DETECTING_DTE		6	0-35	!DTE # WHICH DETECTED ERROR
 03734	  FE_LENGTH		7	0-35	!LENGTH OF DATA PACKET IN 8 BIT BYTES
03735	END TABLE
   03736	
  03737	!++
    03738	!	FE supplied data in 16 bit bytes
   03739	!--
    03740	TABLE  TOPS10 TOPS20
  03741	 FE_SUB		!Fixed portion of front-end supplied data
  03742	  STD_STATUS		0	0-15	!Standard status
03743	  CONFIG_RPT_FLAG	0	4	!DEVICE CONFIGURATION REPORT
  03744	
  03745	! Info for new KLERR entry (sub-type 205)
 03746	
  03747	  KLER_BLOCK		0	16-31	!Current block number
    03748	  KLER_BLOCK_CNT	1	0-15	!Total number of blocks in entry
 03749	  KLER_FIRST_WORD	1	16-31	!First data word
03750	END TABLE
   03751	
  03752	!++
    03753	!	HALT STATUS BLOCK
   03754	!--
    03755	TABLE  TOPS10 TOPS20
  03756	 KS_HS_BLOCK	!KS-10 HALT status block
03757	  HS_MAG	0	0-35		!MAGNITUDE  (ONES IN BITS 1-36)
    03758	  HS_PC		1	0-35		!PC
  03759	  HS_HR		2	0-35		!CURRENT INSTRUCTION (HR)
03760	  HS_AR		3	0-35		!AR
  03761	  HS_ARX	4	0-35		!ARX
 03762	  HS_BR		5	0-35		!BASE REGISTER
 03763	  HS_BRX	6	0-35		!BASE REGISTER EXTENSTION
03764	  HS_ONE	7	0-35		!CONSTANT ONE
  03765	  HS_EBR	10	0-35		!EXEC BASE REGISTER
03766	  HS_UBR	11	0-35		!USER BASE REGISTER
03767	  HS_MSK	12	0-35		!MASK  (ONES IN BITS 0-35)
   03768	  HS_FLG	13	0-35		!MICROCODE STATUS FLAGS,,PAGE FAIL CODE
03769	  HS_PI		14	0-35		!PI STATUS
    03770	  HS_X1		15	0-35		!1,,1
    03771	  HS_T0		16	0-35		!T0
 03772	  HS_T1		17	0-35		!T1
 03773	  HS_VMA	20	0-35		!VMA FLAGS,,VMA  (0-15,,16-35)
    03774	END TABLE
   03775	
  03776	!++
    03777	!
 03778	!	MASSBUS REGISTER DEFINITIONS
  03779	!
 03780	!--
    03781	
  03782	TABLE  TOPS10 TOPS20
  03783	 MB_DEV		! MB_DEVICE_REG
   03784	  MB_CR_END		0	0-17	! Control reg at end
  03785	  MB_CR_ERR		0	18-35	!  at error
03786	  MB_DS_END		1	0-17	! Status reg at end
   03787	  MB_DS_ERR		1	18-35	!  at error
03788	  MB_ER1_END		2	0-17	! Error reg 1 at end
 03789	  MB_ER1_ERR		2	18-35	!  at error
    03790	  MB_ERR_END		2	0-17	! Error reg 1 at end
 03791	  MB_ERR_ERR		2	18-35	!  at error
    03792	  MB_MR_END		3	0-17	! Maintenance reg at end
   03793	  MB_MR_ERR		3	18-35	!  at error
03794	  MB_AS_END		4	0-17	! Attention summary reg at end
  03795	  MB_AS_ERR		4	18-35	!  at error
03796	  MB_DA_END		5	0-17	! Desired track/sector addr reg at end
    03797	  MB_DA_ERR		5	18-35	!  at error
03798	  MB_FR_CNT_END		5	0-17	! Frame count reg at end
    03799	  MB_FR_CNT_ERR		5	18-35	!  at error
 03800	  MB_DT_END		6	0-17	! Drive type reg at end
    03801	  MB_DT_ERR		6	18-35	!  at error
03802	  MB_LA_END		7	0-17	! Look ahead reg at end
    03803	  MB_LA_ERR		7	18-35	!  at error
03804	  MB_CHK_SUM_END	7	0-17	! Checksum reg at end
  03805	  MB_CHK_SUM_ERR	7	18-35	!  at error
 03806	  MB_SN_END		8	0-17	! Serial number reg at end (BCD)
03807	  MB_SN_ERR		8	18-35	!  at error		   (4 digits)
03808	  MB_OF_END		9	0-17	! Offset reg at end
   03809	  MB_OF_ERR		9	18-35	!  at error
03810	  MB_TC_END		9	0-17	! Tape control reg at end
  03811	  MB_TC_ERR		9	18-35	!  at error
03812	  MB_DC_END		10	0-17	! Desired cylinder reg at end
  03813	  MB_DC_ERR		10	18-35	!  at error
    03814	  MB_CC_END		11	0-17	! Current cylinder reg at end
  03815	  MB_CC_ERR		11	18-35	!  at error
    03816	  MB_ER2_END		12	0-17	! Error reg 2 at end
03817	  MB_ER2_ERR		12	18-35	!  at error
   03818	  MB_ER3_END		13	0-17	! Error reg 3 at end
03819	  MB_ER3_ERR		13	18-35	!  at error
   03820	  MB_ECC1_END		14	0-17	! ECC position reg at end
    03821	  MB_ECC1_ERR		14	18-35	!  at error
  03822	  MB_ECC2_END		15	0-17	! ECC pattern reg at end
03823	  MB_ECC2_ERR		15	18-35	!  at error
  03824	END TABLE
   03825	
  03826	!++
    03827	!	NXM_TABLE handled by user. May be one bit per page or one bit per word.
    03828	!--
    03829	
  03830	TABLE  TOPS10
    03831	 NXM_TAB
    03832	  NXM_WORD		0	0-35	!Just define the first word of the
    03833						!table for now. The length depends on
03834						!the pointer to this table.
03835	END TABLE
   03836	
  03837	!++
    03838	!
 03839	!	%CCPAR and %CCMPT sub-table definitions.
03840	!
 03841	!--
    03842	
  03843	TABLE  TOPS10
    03844	 PAR_SWEEP_DATA		! Info recorded by memory sweep routines
03845	  HIGH_ADDRESS		0	0-35	!Highest parity error found last sweep
 03846	  LAST_REL_ADDRESS	1	0-35	!Relative address in segment.
  03847	  LAST_SWEEP_COUNT	2	0-35	!Count of errors during last sweep.
 03848	  TOTAL_SWEEPS		3	0-35	!Number of parity sweeps this load.
    03849	  USER_ENABLED_COUNT	4	0-35	!Done by diagnostics?
   03850	  ADDRESS_AND		5	0-35	!On last sweep.
03851	  CONTENTS_AND		6	0-35	!On last sweep.
    03852	  ADDRESS_OR		7	0-35
  03853	  CONTENTS_OR		8	0-35
 03854	  CHANNEL_ERRORS	9	0-35	!Count of errors detected by channel
  03855						!but not by sweep.
    03856	END TABLE
   03857	
  03858	!++
    03859	!
 03860	!	Contents of ACS
03861	!
 03862	!--
    03863	
  03864	TABLE  TOPS10 TOPS20
  03865	 SAVED_ACS
  03866	  AC0		0	0-35
    03867	  AC1		1	0-35	!
  03868	  AC2		2	0-35	!
  03869	  AC3		3	0-35	!
  03870	  AC4		4	0-35	!
  03871	  AC5		5	0-35	!
  03872	  AC6		6	0-35	!
  03873	  AC7		7	0-35	!
  03874	  AC10		8	0-35	!
 03875	  AC11		9	0-35	!
 03876	  AC12		10	0-35	!
03877	  AC13		11	0-35	!
03878	  AC14		12	0-35	!
03879	  AC15		13	0-35	!
03880	  AC16		14	0-35	!
03881	  AC17		15	0-35	!
03882	END TABLE
   03883	
  03884	!++
    03885	!
 03886	!	SBDIAG tables.
 03887	!
 03888	!--
    03889	
  03890	TABLE  TOPS10 TOPS20
  03891	 SBDIAG_LIST
03892	  NEG_FUNCTION_COUNT	0	0-17	!Count of S-bus diagnostic functions.
  03893	  CONTROLLER_NUMBER	0	18-35	!Memory controller identifier.
    03894	  SBDIAG_FUNCTION_0	1	0-35	!Only function 0 and 1 currently
   03895	  SBDIAG_FUNCTION_1	2	0-35	!
    03896	!  SBDIAG_FUNCTION_2	3	0-35
03897	!  SBDIAG_FUNCTION_3	4	0-35
03898	!  SBDIAG_FUNCTION_4	5	0-35
03899	!  SBDIAG_FUNCTION_5	6	0-35
03900	!  SBDIAG_FUNCTION_6	7	0-35
03901	!  SBDIAG_FUNCTION_7	8	0-35
03902	!  SBDIAG_FUNCTION_10	9	0-35
    03903	!  SBDIAG_FUNCTION_11	10	0-35
   03904	!  SBDIAG_FUNCTION_12	11	0-35
   03905	END TABLE
   03906	
  03907	!++
    03908	!	The following table defines each word of a ten-word block which may
   03909	!	be a list of bad address, good contents, bad contents, or any other
   03910	!	list of items saved within an entry.
    03911	!--
    03912	
  03913	TABLE  TOPS10 TOPS20
  03914	 TOP_TEN
    03915	  WORD1			0	0-35	!List of saved addresses or data
   03916	  WORD2			1	0-35	!
    03917	  WORD3			2	0-35	!
    03918	  WORD4			3	0-35	!
    03919	  WORD5			4	0-35	!
    03920	  WORD6			5	0-35	!
    03921	  WORD7			6	0-35	!
    03922	  WORD8			7	0-35	!
    03923	  WORD9			8	0-35	!
    03924	  WORD10		9	0-35	!
    03925	END TABLE
   03926	
 03927	!++
    03928	!	The following WORD definitions are for all entries
03929	!	in TOPS-10 and TOPS-20.
  03930	!--
    03931	WORD_10
03932	 API_WORD
   03933	  ADDRESS_SPACE		0-2
  03934	!   DEFINE
  03935	!    EPT        = 0
   03936	!    EX_VIRTUAL = 1
   03937	!    PHYSICAL   = 4
   03938	!   END DEFINE
   03939	  API_FUNCTION		3-5
   03940	!   DEFINE
  03941	!    STANDARD_INT = 0,1
    03942	!    DTE_STD_INT  = 7
 03943	!    VECTOR_INT   = 2
 03944	!    INC_DEC_INT  = 3
 03945	!    EXAMINE_INT  = 4
 03946	!    DEPOSIT_INT  = 5
 03947	!    BYTE_INT     = 6
 03948	!   END DEFINE
   03949	  QUAL_BIT		6
    03950	  DEVICE_NUMBER		7-10
 03951	!   DEFINE
  03952	!    RH20_INT = 0-7
   03953	!    DTE_INT  = 10-13
 03954	!    DIA_INT  = 17
    03955	!   END DEFINE
   03956	  API_PHYS_ADDRESS	13-35
   03957	END WORD_10
 03958	
  03959	WORD_10  TOPS10 TOPS20
03960	 APR_STATUS
 03961	  ENABLE_24_31	6-13
   03962	  SWEEP_BUSY	19
  03963	  MASTER_OSC	22
  03964	  S_BUS_ERROR	24
 03965	  APRSTS_NXM	25
  03966	  IO_PAGE_FAIL	26
03967	  MB_PAR	27
 03968	  CACHE_DIR_PAR	28
    03969	  ADDRESS_PAR	29
 03970	  PWR_FAIL	30
    03971	  SWEEP_DONE	31
  03972	  INT_REQ	32
03973	  PI_LEVEL	33-35
 03974	END WORD_10
 03975	
  03976	WORD_10  TOPS10 TOPS20
03977	 PAGE_DATAI
 03978	  MUST_BE_ONES	0-2
    03979	  CURRENT_BLOCK	6-8
   03980	  PREV_BLOCK	9-11
03981	  PREV_CONTEXT	13-17
  03982	  UPT_PAGE	23-35
 03983	END WORD_10
 03984	
  03985	WORD_10  TOPS10 TOPS20
03986	 PAGE_FAIL_WORD
  03987	  MODE		0
   03988	!   DEFINE
  03989	!    USER_MODE = 1
    03990	!    EXEC_MODE = 0
    03991	!   END DEFINE
   03992	  ACCESSIBLE	2
   03993	  WRITEABLE	3
    03994	  SOFTWARE	4
03995	  WRITE_REF	5
    03996	  PUBLIC_MODE	6
  03997	  CACHEABLE	7
    03998	  VIRTUAL	8
 03999	  PF_CODE	1-5
    04000	!   DEFINE
  04001	!    PROP_VIOLATE =   21
   04002	!    ADDRESS_FAIL =   23
   04003	!    ILLEGAL_INDIR =  24
   04004	!    PAGE_TABLE_PAR = 25
   04005	!    ILL_ADDRESS =    27
   04006	!    AR_PAR =	     36
 04007	!    ARX_PAR =     37
 04008	!   END DEFINE
   04009	  VIRTUAL_ADDRESS 18-35
    04010	END WORD_10
 04011	
  04012	WORD_10  TOPS10 TOPS20
04013	 PAGE_STATUS
04014	  CACHE_LOOK	18
  04015	  CAHE_LOAD	19
   04016	  KL10_PAGED	21
  04017	  TRAP_ENABLE	22
 04018	  EPT_PAGE	23-35
 04019	END WORD_10
 04020	
  04021	WORD_10  TOPS10 TOPS20
04022	 PI_STATUS
  04023	  PI_REQUESTS		11-17	!PI levels requesting interrupts (1-7).
  04024	  WRITE_EVEN_ADR_PAR	18
    04025	  WRITE_EVEN_DATA_PAR	19
   04026	  WRITE_EVEN_DIR_PAR	20
    04027	  PI_IN_PROGRESS	21-27	!PI levels currently waiting to finish.
04028	  PI_SYS_ON		28
  04029	  PI_CHANNELS_ON	29-35	!PI levels capable of interrupting.
    04030	END WORD_10
 04031	
  04032	WORD_10  TOPS10 TOPS20
04033	 RDERA_STATUS
    04034	  WORD_NUMBER		0-1	!Failing word within quadword.
   04035	  SWEEP_REF		2	!Referenced during cache sweep.
 04036	  CHANNEL_REF		3	!Channel
  04037	  REF_DATA		4-6
  04038	!   DEFINE
  04039	!    MEM_RD_OR_RPW =     0
 04040	!    CHN_STORE_STATUS =  1
 04041	!    CHN_STORE_DATA =    3
 04042	!    E_BOX_STORE_FM_AR = 5
 04043	!    RD_FM_CACHE =       6
 04044	!    CACHE_WRITE_BACK =  7
 04045	!   END DEFINE
   04046	  RDERA_PHYS_ADDRESS		14-35
04047	END WORD_10
 04048	
  04049	!	SBDIAG bit definitions
   04050	!--------------------------------------------------------
04051	WORD_10  TOPS10 TOPS20
04052	 SBDIAG_FUNCTION_0	! SBDIAG function 0 bits
    04053	  SBD0_DMA		REFER	!DMA-specific stuff
04054	  SBD0_NOT_DMA		REFER	!Bits not found in DMA
   04055	  SBD0_MF20		REFER	!MF20-specific bits
    04056	END WORD_10
 04057	
  04058	WORD_10  TOPS10 TOPS20
04059	 SBD0_DMA	!DMA-specific  SBDIAG function 0 bits
04060	  SBD0_NXM		2
    04061	  SBD0_READ_PAR_ERR	3	!Also on MF20.
 04062	  SBD0_WRITE_PAR_ERR	4	!Also on MF20.
04063	  SBD0_ADD_PAR_ERROR	5	!Also on MA/MB and MF20.
04064	  SBD0_BUS_MODE		6-7
  04065	  SBD0_LAST_REQ_BITS	8-11	!RQ0-RQ3 also on MF20.
    04066	  SBD0_LAST_REQ_READ	12	!Also on MF20.
    04067	  SBD0_LAST_REQ_WRITE	13	!ALSO on MF20.
   04068	  SBD0_FIRST_ADDRESS	14-35	!XBUS address on MF20.
   04069	END WORD_10
 04070	
  04071	WORD_10
04072	 SBD0_NOT_DMA	!MA/MB/MF SBDIAG function 0 bits
 04073	  SBD0_INCOMP_CYCLE	2	!
    04074	  SBD0_INTERL_MODE	6-7	!
   04075	END WORD_10
 04076	
  04077	WORD_10
04078	 SBD0_MF20	!MF20 specific bits in SBDIAG function 0
 04079	  SBD0_CONTR_ERR	0
    04080	  SBD0_CORR_ERROR	1
   04081	END WORD_10
 04082	
  04083	WORD_10  TOPS10 TOPS20
04084	 SBDIAG_FUNCTION_1	! SBDIAG function 1 bit descriptions
  04085	  SBD1_CONTR_TYPE	8-11	!Common
  04086	  SBD1_MA_MB		REFER	!DMA-specific bits
    04087	  SBD1_NOT_MF		REFER	!DMA/MA/MB but not MF20
   04088	  SBD1_MF20		REFER	!MF20-specific bits
    04089	END WORD_10
 04090	
  04091	WORD_10  TOPS10 TOPS20
04092	 SBD1_MA_MB	!MA/MB specific SBDIAG function 1 bits
  04093	  SBD1_SBUS_ADDRESS	14-17 
 04094	  SBD1_LOW_ADR_BOUND	18-21 
04095	  SBD1_HI_ADR_BOUND	22-25
  04096	  SBD1_MARGINS_ON	30
  04097	  SBD1_REQ_ENABLED	32-35	! RQ0-RQ3
   04098	END WORD_10
 04099	
  04100	WORD_10
04101	 SBD1_NOT_MF	! DMA/MA/MB but not MF20 SBDIAG function 1 bits
  04102	  SBD1_MODS_INSTALLED	0-7	!DMA = 0-7, MA/MB = 4-7
   04103	  SBD1_LOOPBACK_SET	12	!also DMA
04104	END WORD_10
 04105	
  04106	WORD_10
04107	 SBD1_MF20	!MF20 specific SBDIAG function 1 bits
    04108	SBD1_LOOP_GROUP_SEL	12-14
  04109	SBD1_MF20_DISABLED	25
 04110	SBD1_MF20_CONDITION	26-27
  04111	END WORD_10
 04112	
  04113	!++
    04114	!
 04115	!	The following functions do not currently exist in the event
 04116	!	file. They are documented here in case they are inserted later.
  04117	!
 04118	!--
    04119	!
 04120	!WORD_10
    04121	! SBDIAG_FUNCTION_2
   04122	!  ERROR_WORD_NUMBER	5-6
   04123	!  SELECTED_DATA	7-14	!Diagnostic or PROM.
04124	!  SS_MOS_ADDRESS	20-27
    04125	!  RAM_ERROR_TYPE	28-30	!Timing, substitution, response.
 04126	!END WORD_10
04127	!
 04128	!WORD_10
    04129	! SBDIAG_FUNCTION_3
   04130	!  FAST_BUS_ON		8
04131	!  FIXED_VALUE_RAMS	10-13
  04132	!END WORD_10
04133	!
 04134	!WORD_10
    04135	! SBDIAG_FUNCTION_4
   04136	!  SS_CLK_CNTRL_ECHO	9-15
  04137	!  REF_ENABLED		21
    04138	!  REF_INTRVL_COUNTER	23-30
04139	!END WORD_10
04140	!
 04141	!WORD_10
    04142	! SBDIAG_FUNCTION_5
   04143	!  SS_MOS_RAS		24-27	!Row address strobe.
 04144	!END WORD_10
04145	!
 04146	!WORD_10
    04147	! SBDIAG_FUNCTION_6
   04148	!  DIAG_DATA_FROM	7-14
04149	!  SS_MOS_CAS		24-27	!State of column address strobe.
    04150	!END WORD_10
04151	!
 04152	!WORD_10
    04153	! SBDIAG_FUNCTION_7
   04154	!  BIT_SUB_RAM_DAT_ECHO	7-14
    04155	!  SS_MOS_WRITE_ENABLE	24-27
    04156	!END WORD_10
04157	!
 04158	!WORD_10
    04159	! SBDIAG_FUNCTION_10
  04160	!  ACTIVE_MARGINS	7-10
04161	!  ACTIVE_MARGIN_EN	11-14
  04162	!  ECC_INHIBITED	25
   04163	!  DC_ERROR		26
  04164	!END WORD_10
04165	!
 04166	!WORD_10
    04167	! SBDIAG_FUNCTION_11
  04168	!  TIM_RAM_DATA_ECHO	21-27
 04169	!  4K_ENABLED		29
04170	!  DESEL_CYC_ENABLED	30
    04171	!END WORD_10
04172	!
 04173	!WORD_10
    04174	! SBDIAG_FUNCTION_12
  04175	!  ADD_RES_RAM_ECHO	8-14
   04176	!END WORD_10
04177	!---------------------------------------------------------------
   04178	!	End of SBDIAG definitions
04179	
 04180	!++
    04181	!
 04182	!	RH10 Registers - Bit Definitions
   04183	!
 04184	!++
    04185	
  04186	WORD_10 TOPS10 TOPS20
 04187	 CONI_RH10
  04188	  RH10_AR_FULL			0	! SEE KL10 MAINTENANCE HANDBOOK
  04189	  RH10_CB_FULL			1
    04190	  RH10_CC_INH			3
04191	  RH10_CHAN_ACT			4
   04192	  RH10_CHAN_PLS			5
   04193	  RH10_DF22			6
  04194	  RH10_ILL_FUNCT		9
   04195	  RH10_SELDR_ADR_E		10
04196	  RH10_CDATA_PE			15
  04197	  RH10_CW_PE			16
04198	  RH10_NXM			17
  04199	  RH10_DBUS_PE			18
   04200	  RH10_DREXC_ERROR		19
04201	  RH10_CHAN_ERROR		20
 04202	  RH10_CW_WRITE			21
  04203	  RH10_OVER_RUN			22
  04204	  RH10_DR_RE_ERROR		23
04205	  RH10_ILL_CMD			24
   04206	  RH10_POWER_FAIL		25
 04207	  RH10_CBUS_OVRUN		28
 04208	  RH10_RAE			29
  04209	  RH10_ATTN			30
 04210	  RH10_BUSY			31
 04211	  RH10_DONE			32
 04212	END WORD_10
 04213	!++
    04214	!
 04215	!	RH20 Registers - Bit Definitions
   04216	!
 04217	!++
    04218	
  04219	WORD_10  TOPS10 TOPS20
04220	 CONI_STATUS
04221	  PIA				33-35	!PI channel assignment
04222	  CMD_DONE			32	!command done
   04223	  PRI_CFL			31	!PTCR register loaded
 04224	  MBUS_AIE			30	!enable attention interrupts
   04225	  SEC_CFL			29	!STCR register loaded
 04226	  MBUS_ATTN			28	!massbus attention active
04227	  MBUS_ENAB			27	!enable massbus transactions
  04228	  OVER_RUN			26	!data overrun error
  04229	  CHAN_RDY			25	!channel ready for data xfer
   04230	  REG_A_ERROR			24	!RAE register access error
       04231	  DR_RE_ERROR			23	!drive response error
  04232	  CHAN_ERROR			22	!channel error fm MBOX
  04233	  SHORT_WCE			21	!short word count error
  04234	  LONG_WCE			20	!long word count error
    04235	  DRIVE_EXC			19	!drive exception
    04236	  DATA_PE			18	!data bus parity error
04237	END WORD_10
 04238	
  04239	WORD_10  TOPS20
  04240	 SBAR					!secondary block addr reg
  04241	  PREP_REG			REFER	!common to all registers
    04242	  BLOCK_ADDRESS			20-35	!disk block address
    04243	END WORD_10
 04244	
  04245	WORD_10  TOPS20
  04246	 STCR					!secondary transfer control reg
 04247	  PREP_REG			REFER	!common to all registers
    04248	  RESET_CLP			7	!reset command list pointer
    04249	  STORE_STAT			10	!store termination status
    04250	  DIS_XFER			19	!disable transfer error stop
   04251	  NEG_BLK_CNT			20-29	!negative block count
    04252	  FUNCTION_CODE			30-35	!function code for command
  04253	END WORD_10
 04254	
  04255	WORD_10  TOPS20
  04256	 PBAR					!primary block addr reg
    04257	  PREP_REG			REFER	!common to all registers
    04258	  BLOCK_ADDRESS			20-35	!disk block address
    04259	END WORD_10
 04260	
  04261	WORD_10  TOPS20
  04262	 PTCR					!primary transfer control reg
   04263	  PREP_REG			REFER	!common to all registers
    04264	  RESET_CLP			7	!reset command list pointer
    04265	  STORE_STAT			10	!store termination status
    04266	  DIS_XFER			19	!disable transfer error stop
   04267	  NEG_BLK_CNT			20-29	!negative block count
    04268	  FUNCTION_CODE			30-35	!function code for command
  04269	END WORD_10
 04270	
  04271	WORD_10  TOPS20
  04272	 IVIR					!interrupt vector index reg
04273	  PREP_REG			REFER	!common to all registers
    04274	  VECT_INTR_ADDR		27-35	!vector interrupt address
   04275	END WORD_10
 04276	
  04277	WORD_10  TOPS20
  04278	 RR					!read register
04279	  PREP_REG			REFER	!common to all registers
    04280	  PAR_BIT			17	!parity bit
 04281	  DIAG_WRITE_DATA		18-35	!write data during maint mode
   04282	END WORD_10
 04283	
  04284	WORD_10  TOPS20
  04285	 WR					!write register
    04286	  PREP_REG			REFER	!common to all registers
    04287	  PAR_BIT			17	!parity bit
 04288	  DIAG_READ_DATA		18-35	!read data during maint mode
04289	END WORD_10
 04290	
  04291	WORD_10  TOPS20
  04292	 DCR					!diagnostic control register
04293	  PREP_REG			REFER	!common to all registers
    04294	  XFER_SIG			26	!simulates massbus TRANSFER sig
04295	  DATA_LOOP			27	!data loopback from massbus
   04296	  TEST_SBAR			28	!test SBAR register
 04297	  EVEN_PAR_CHK			29	!even parity check test
    04298	  READ_WRITE			30	!R/W set for diag read
  04299	  SIM_D_EXC			31	!simulate massbus exception
   04300	  SIM_EOB			32	!simulate massbus end of block
  04301	  SIM_ATTN			34	!simulate massbus attention
    04302	  SIM_SCLK			35	!simulate massbus S clock
 04303	END WORD_10
 04304	
  04305	WORD_10  TOPS20
  04306	 PREP_REG
   04307	  REG_SEL_CODE			0-5	!register select code
04308	  LOAD_REG			6	!load register bit
    04309	  DIS_RAE			9	!disable register access error stop
   04310	  DEV_SEL_CODE			15-17	!device select code
     04311	  CBUS_EP			8	!control bus parity
    04312	END WORD_10
 04313	
  04314	WORD_10 TOPS20
   04315	 CONO					!conditions out information
04316	  CLEAR_RAE			24	!clear reg access error
  04317	  CLEAR_MBC			25	!clear massbus controller
04318	  CLEAR_XFER			26	!clear transfer
    04319	  MBUS_ENAB			27	!enable the massbus
 04320	  CONO_RESET_CLP		28	!reset the cmd list pointer
    04321	  DEL_SCR			29	!delete current cmd in STCR
04322	  ATTEN_ENABLE			30	!enable attention interrupt
04323	  STOP				31	!stop the channel
  04324	  CLEAR_DONE			32	!clear out done flag
    04325	  PIA				33-35	!PI channel assignment
     04326	END WORD_10
 04327	
 04328	!++
    04329	!	Bits defined in PDP-11 format
 04330	!--
    04331	
  04332	!++
    04333	!
 04334	!	RH11 - Register Definitions
   04335	!
 04336	!++
    04337	
  04338	WORD_10  TOPS10 TOPS20
04339	 UBA_STATUS
 04340	  UBA_STAT_TIME_OUT		18	!UNIBUS arbitrator time out or NXM
    04341	  UBA_STAT_BAD_MDATA		19	!Bad memory data
 04342	  UBA_STAT_BUS_PE		20	!KS10 (backplane) bus parity error
 04343	  UBA_STAT_NXD			21	!Nonexistant device
   04344	  UBA_STAT_HI_INT		24	!High level interrupt pending
 04345	  UBA_STAT_LO_INT		25	!Low "  "  "
   04346	  UBA_STAT_ACDC_LO		26	!AC or DC low
 04347	  UBA_STAT_DIS_XFR		28	!Disable transfer if BMD (bit 19=1)
    04348	  UBA_STAT_INIT_UBA		29	!Init UBA and unibus devices
04349	  UBA_STAT_HIGH_PI		30-32	!High level PI number
04350	  UBA_STAT_LOW_PI		33-35	!low level PI  number
 04351	END WORD_10
 04352	
  04353	WORD_11  TOPS10 TOPS20
04354	 RH11_RMCS2				!control and status reg 2
  04355	  DATA_LATE			15	!data late error
    04356	  WR_CK_ERROR			14	!write check error
04357	  UBUS_PE			13	!unibus parity error
  04358	  NON_X_DRIVE			12	!non existent drive
    04359	  NXM				11	!non existent memory error
    04360	  PROG_ERROR			10	!program error
04361	  MISS_XFER			9	!missed transfer error
    04362	  MBUS_DPE			8	!massbus data parity error
 04363	  OUT_READY			7	!output ready
   04364	  IN_READY			6	!input ready
04365	  CONT_CLEAR			5	!controller clear
   04366	  PAR_TEST			4	!parity logic test
    04367	  BAI_INH			3	!inhibit increment of BA reg
04368	  UNIT_SEL			2-0	!unit select
   04369	END WORD_11
 04370	
  04371	WORD_11  TOPS10 TOPS20
04372	 RH11_RMBA				!bus addres register
   04373	  BUS_ADDRESS			15-0	!unibus address
 04374	END WORD_11
 04375	
  04376	WORD_11  TOPS10 TOPS20
04377	 RH11_RMDB				!data buffer reg
  04378	  DATA				15-0	!data from bus
        04379	END WORD_11
 04380	
  04381	WORD_11  TOPS10 TOPS20
04382	 RH11_RMWC				!word count reg
   04383	  WORD_COUNT			15-0	!negative word count
  04384	END WORD_11
 04385	
 04386	!++
    04387	!  RS04 Error Register Bit Definitions (from error register 1 offset)
   04388	!__
    04389	
 04390	WORD_11  COMMON
  04391	 RSER				  
 04392	  RS04_DCK			15      ! Data2Check
    04393	  RS04_UNS			14      ! Unsafe
   04394	  RS04_OPI			13      ! Operation incomplete
    04395	  RS04_DTE			12      ! Drive Timing Error
 04396	  RS04_WLE  			11      ! Write lock error
 04397	  RS04_IAE 			10      ! Invalid Address Error
  04398	  RS04_AO  			9       ! Address overflow
  04399	  RS04_PAR 			3       ! Bus Parity Error
  04400	  RS04_RMR			2       ! Register Modify Refused
 04401	  RS04_ILR			1       ! Illegal Register
   04402	  RS04_ILF			0       ! Illegal Function
   04403	END WORD_11
 04404	
  04405	!+++
   04406	!
 04407	!	RP04 / RP06 Register Bit Definitions
    04408	!
 04409	!+++
   04410	
  04411	WORD_11  COMMON
  04412	 DS					!drive status register
  04413	  ATTN_ACT			15	!attention active
    04414	  ERROR				14	!drive error
 04415	  PIP				13	!positioning in progress
 04416	  MOL				12	!medium on line
04417	  WRITE_LOCK			11	!write lock switch on
   04418	  LAST_SECT			10	!last sector
   04419	  PROG_ABLE			9	!programmable
   04420	  DRIVE_PRES			8	!drive preset
  04421	  DRIVE_READY			7	!drive ready
  04422	  VALID_VOL			6	!valid volume
   04423	  RP4_DEQ1			5	!diff equal 1
    04424	  RP4_DLT64			4	!diff less than 64
   04425	  RP4_GOREV			3	!go reverse
04426	  RP4_DIGB			2	!drive to inner guard band
 04427	  RP4_DF20			1	!drive fwd 20 ips
04428	  RP4_DF5			0	!drive fwd 5 ips
  04429	END WORD_11
 04430	
  04431	WORD_11  COMMON
  04432	 ER1					!error reg 1
 04433	  DATA_CHECK			15	!data check during read data
 04434	  UNSAFE			14	!drive unsafe condition
04435	  OPER_INC			13	!operation incomplete
04436	  DR_T_ERROR			12	!drive timing error
04437	  WR_LK_ERROR			11	!write lock error
 04438	  I_ADR_ERROR			10	!invalid address error
 04439	  A_OV_ERROR			9	!address overflow error
  04440	  HCRC_ERROR			8	!header CRC error
   04441	  H_COM_ERROR			7	!header compare error
   04442	  ECC_ERROR			6	!hard ECC error
 04443	  WR_CK_FAIL			5	!write clock failure
04444	  FMT_ERROR			4	!format error
   04445	  PAR_ERROR			3	!parity error in drive
    04446	  RMR				2	!reg modification refused
 04447	  ILL_REG			1	!illegal reg reference
 04448	  ILL_FUNCT			0	!illegal function attempted
    04449	END WORD_11
 04450	
 04451	WORD_11  COMMON
  04452	 MR					!maintenance register
   04453	  HI_CT_DET			10	!high count detected
04454	  SBYTE_DET			9	!sync byte detected
  04455	  ZERO_DET			8	!zeros detected
  04456	  DATA_ENV			7	!data envelope detected
    04457	  ECC_ENV			6	!ECC envelope detected
 04458	  MAINT_WRITE			5	!maintenance write operation
 04459	  MAINT_READ			4	!maintenance read operation
   04460	  MAINT_SCLK			3	!maintenance S clock
04461	  MAINT_INDEX			2	!maintenance index clock
04462	  MAINT_CLOCK			1	!maintenance clock
 04463	  DIAG_MODE			0	!diagnostic mode
04464	END WORD_11
 04465	
  04466	WORD_11  COMMON
  04467	 AS					!attention summary reg
  04468	  ATA7				7	!attention active from unit 7
 04469	  ATA6				6	!attention active from unit 6
 04470	  ATA5				5	!attention active from unit 5
 04471	  ATA4				4	!attention active from unit 4
 04472	  ATA3				3	!attention active from unit 3
 04473	  ATA2				2	!attention active from unit 2
 04474	  ATA1				1	!attention active from unit 1
 04475	  ATA0				0	!attention active from unit 0
 04476	END WORD_11
 04477	
  04478	WORD_11  COMMON
  04479	 DA					!drive address reg
 04480	  TRACK				12-8	!track number
   04481	  SECTOR			4-0	!sector address
  04482	END WORD_11
 04483	
  04484	WORD_11  COMMON
  04485	 DT					!drive type register
    04486	  NO_BLK_ADR			15	!not block addressable
  04487	  TAPE_DRIVE			14	!tape drive unit
   04488	  MOVE_HEAD			13	!moving head device
 04489	  DRIVE_REQ			11	!drive request required
  04490						!dual port drive only
 04491	  DRIVE_TYPE			8-0	!drive type designator
 04492	END WORD_11
 04493	
  04494	WORD_11  COMMON
  04495	 LA					!look ahead register
    04496	  SECTOR_COUNT			10-6	!current sector under head
    04497	  EXT_FIELD			5-4	!counter extension field
04498	END WORD_11
 04499	
       04500	WORD_11  COMMON
  04501	 SN					!serial number register
 04502	  SERIAL_NO			15-0	!serial no. in BCD (4 digits)
    04503	END WORD_11
 04504	
 04505	WORD_11  COMMON
  04506	 OF					!offset register
   04507	  SIGN_CNG			15	!sign change
    04508	  FMT22				12	!22 sector format
 04509	  ECC_INH			11	!inhibit ECC checking
 04510	  H_COM_INH			10	!inhibit header compare errors
04511	  OFFSET			7-0	!offset magnitude and direction
 04512	END WORD_11
 04513	
  04514	WORD_11  COMMON
  04515	 DC					!desired cylinder
  04516	  RP4_DCYL_NO			8-0	!desired cylinder for RP04
 04517	  RP6_DCYL_NO			9-0	!desired cylinder for RP06
 04518	END WORD_11
 04519	
  04520	WORD_11  COMMON
  04521	 CC					!current cylinder
  04522	  RP4_CCYL_NO			8-0	!current cylinder for RP04
 04523	  RP6_CCYL_NO			9-0	!current cylinder for RP04
 04524	END WORD_11
 04525	
  04526	WORD_11  COMMON
  04527	 ER2					!error register 2
 04528	  RP4_ACUN			15	!AC unsafe
 04529	  RP7_PGE			15
   04530	
  04531	  PLO_UNS			13	!PLO unsafe
 04532	  RP7_CPU			13
   04533	
  04534	  RP4_30VU			12	!30 volts unsafe
04535	  RP7_RWU3			12
  04536	
  04537	  INDEX_ERROR			11	!index clock error
04538	  RP7_RWU2			11
  04539	
  04540	  NO_H_SEL			10	!no head select error
04541	  RP7_RWU1			10
  04542	
  04543	  MULTI_H_SEL			9	!multiple head select error
  04544	  RP7_WOR			9
    04545	
  04546	  WRITE_UNS			8	!write unsafe
   04547	
  04548	  RP7_ERR_CODE			7-0
  04549	  RP4_FA_EN			7	!failsafe enable
04550	  RP6_AB_ST			7	!abnormal stop
  04551	  RP4_FA_EN_6_AB_ST		7	!Either way
   04552	
  04553	  TRAN_UNSF			6	!transitions unsafe
  04554	
  04555	  TRAN_DET_F			5	!transitions detected failed
  04556	
  04557	  RP6_RP4_MSE			4	!motor sequence error
   04558	  RD_WR_UNSF			4	!read write unsafe
  04559	  RP4_MSE_6_RD_WR_UNSF		4	!Either way
04560	
  04561	  C_SW_UNSF			3	!
     04562	
  04563	  W_SEL_UNSF			2	!
    04564	
  04565	  C_SK_UNSF			1	!
04566	
  04567	  WR_C_UNSF			0	!write clock unsafe
  04568	END WORD_11
 04569	
  04570	WORD_11  COMMON
  04571	 ER3					!error register 3
 04572	  OFF_CYL			15	!off cylinder error
   04573	  RP7_BSE			15	
  04574	
  04575	  SEEK_INC			14	!seek incomplete
04576	
  04577	  RP6_OPER			13	!operator plug error
 04578	  RP7_DSE			13
   04579	
  04580	  RP7_CLF			11
   04581	  RP7_LBC			10
   04582	  RP7_LCE			9
    04583	  RP7_PHF			8
    04584	  RP7_DVC			7
    04585	
  04586	  AC_LOW			6	!AC low error
 04587	  RP7_IXU			6
    04588	
       04589	  DC_LOW			5	!DC low error
 04590	  RP7_DCU			5
    04591	
  04592	  RP6_35_VF			4	!35 volt supply failure
   04593	  RP4_NOT_6_35V			4	!Because different on RP04
 04594	  RP7_SDF			4
    04595	
  04596	  RP4_UNSF			3	!drive unsafe
    04597	  RP7_DPE			3
    04598	
  04599	  RP7_SBE			2
    04600	
  04601	  RP4_VE_US			1	!velocity unsafe
04602	  RP6_WR_OS			1	!write with offset error
  04603	  RP4_VE_US_6_WR_OS		1	!Either way
   04604	  RP7_SCF			1
    04605	
  04606	  RP4_PS_UN			0	!power unsafe
   04607	  RP6_DC_UN			0	!DC unsafe
 04608	  RP4_PS_UN_6_DC_UN 		0	!Either way
  04609	  RP7_RTO			0
         04610	END WORD_11
 04611	
  04612	WORD_11  COMMON
  04613	 ECC1					!ECC position register
04614	  ECC_ERR_LOC			12-0	!location of error burst
  04615	END WORD_11
 04616	
  04617	WORD_11  COMMON
  04618	 ECC2					!ECC pattern register
 04619	  ECC_ERR_MASK			10-0	!error bit mask - 11 bits
04620	END WORD_11
 04621	
 04622	!++
    04623	!
 04624	!	RM03 Registers - bit definitions
   04625	!
 04626	!--
    04627	
  04628	WORD_11  COMMON
  04629	 RMCS1					!RM03 control register 1
  04630	  RH11_SPEC_COND		15	!special condition - RH11 only
 04631	  RH11_XFER_ERROR		14	!transfer error - RH11 only
   04632	  RH11_MBUS_CPE			13	!massbus control bus parity 
   04633						!error - RH11 only
    04634	  DRIVE_AVAIL			12	!drive available
  04635	  PORT_SEL			10	!port select
    04636	  UBADDR_EXT			9-8	!unibus adr extension bits
  04637	  READY				7	!unit ready
   04638	  INTR_ENAB			6	!interrupt enable
    04639	  FUNCTION			5-0	!drive function + go
04640	  GO				0	!go
    04641	END WORD_11
 04642	
  04643	WORD_11  COMMON
  04644	 RMDS					!RM03 drive status register
04645	  ATTN_ACT			15	!attention active 
   04646	  ERROR				14	!inclusive OR error bit
04647	  PIP				13	!positioning in progress
 04648	  MOL				12	!medium on line
04649	  WRITE_LOCK			11	!write lock
   04650	  LAST_BLOCK			10	!last block transferred
 04651	  PROG_ABLE			9	!programmable - dual port only
 04652	  DRIVE_PRES			8	!drive present
 04653	  DRIVE_READY			7	!drive ready
  04654	  VALID_VOL			6	!valid volume
   04655	  OFSET_MODE			0	!offset mode active
 04656	END WORD_11
 04657	
  04658	WORD_11  COMMON
  04659	 RMER1					!RM03 error register 1
    04660	  DATA_CHECK			15	!data check error
  04661	  UN_SAFE			14	!unsafe condition
04662	  OPER_INC			13	!operation incomplete
04663	  DR_T_ERROR			12	!drive timing error
04664	  WR_LK_ERROR			11	!write lock error
 04665	  I_ADR_ERROR			10	!invalid address error
 04666	  A_OV_ERROR			9	!address overflow error
  04667	  H_CRC_ERROR			8	!header CRC error
  04668	  H_COM_ERROR			7	!header compare error
   04669	  ECC_ERROR			6	!hard ECC error
 04670	  WR_CK_FAIL			5	!write clock failure
04671	  FMT_ERROR			4	!format error
   04672	  PAR_ERROR			3	!drive parity error
  04673	  RMR				2	!register modification refused
 04674	  ILL_REG			1	!illegal register reference
 04675	  ILL_FUNCT			0	!illegal function attempted
    04676	END WORD_11
 04677	
 04678	WORD_11  COMMON
  04679	 RMMR1					!RM03 maintenance register 1
   04680	  OCCUP				15	!occupied
    04681	  RUN_GO			14	!run / go
    04682	  END_BLOCK			13	!end of block level
 04683	  RX_EXCPT			12	!received exception
  04684	  ENB_SERCH			11	!enable search
 04685	  LOOK_SYNC			10	!pack looking for sync
   04686	  CRC_OUT			9	!enable CRC output
04687	  PACK_DATA			8	!pack data area
 04688	  PACK_HEADER			7	!pack header area
  04689	  CONT				6	!continue
 04690	  PROM_STROB			5	!PROM strobe
   04691	  ENB_ECC			4	!enable ECC out
   04692	  WRITE_DATA			3	!write data
    04693	  LAST_SECTR			2	!last sector
   04694	  LAST_S_T			1	!last sector and track
04695	  DIAG_MODE			0	!diagnostic mode
04696	END WORD_11
 04697	
  04698	WORD_11  COMMON
  04699	 RMAS					!RM03 attention summary
    04700	  ATTN7				7	!drive 7 attn active
    04701	  ATTN6				6	!drive 6 attn active
    04702	  ATTN5				5	!drive 5 attn active
    04703	  ATTN4				4	!drive 4 attn active
    04704	  ATTN3				3	!drive 3 attn active
    04705	  ATTN2				2	!drive 2 attn active
    04706	  ATTN1				1	!drive 1 attn active
    04707	  ATTN0				0	!drive 0 attn active
    04708	END WORD_11
 04709	
  04710	WORD_11  COMMON
  04711	 RMDA					!RM03 drive address
   04712	  RM_TRACK			10-8	!track address
04713	  SECTOR			4-0	!sector address
  04714	END WORD_11
 04715	
  04716	WORD_11  COMMON
  04717	 RMDT					!RM03 drive type register
  04718	  MOVE_HEAD			13	!moving head disk
   04719	  DRIVE_REQ			11	!drive request required
  04720	  DRIVE_TYPE			8-0	!drive type
  04721	END WORD_11
 04722	
  04723	WORD_11  COMMON
  04724	 RMLA					!RM03 look ahead register
  04725	  SECT_CNT			10-6	!sector count
 04726	END WORD_11
 04727	
  04728	WORD_11  COMMON
  04729	 RMSN					!RM03 serial number register
    04730	  SER_NUM			15-0	!serial number in BCD code
    04731	END WORD_11
 04732	
 04733	WORD_11  COMMON
  04734	 RMOF					!RMo3 offset register
 04735	  FMT_16			12	!16 bit format
    04736	  ECC_INH			11	!inhibit ECC checking
 04737	  H_COM_INH			10	!inhibit header compare chk
   04738	  OFFSET_DIRTN			7	!offset direction
 04739	END WORD_11
 04740	
  04741	WORD_11  COMMON
  04742	 RMDC					!RM03 desired cylinder reg
 04743	  RM_DCYL_NO			9-0	!desired cylinder number
    04744	END WORD_11
 04745	
  04746	WORD_11  COMMON
  04747	 RMMR2					!RM03 maint register 2
    04748	  REQ_A				15	!request on port A
04749	  REQ_B				14	!request on port B
04750	  CONTR_TAG_A			13	!controller select tag
 04751	  COMND_BRNCH			12	!command sequencer is branching
  04752	  CONTR_TAG_B			11	!controller tag B
 04753	  HEAD_TAG			10	!controller select or head select tag
    04754	  BUS_IN_LINES			9-0	!bus in bits
    04755	END WORD_11
 04756	
  04757	WORD_11  COMMON
  04758	 RMER2					!RM03 error register 2
    04759	  SEEK_INC			14	!seek incomplete
04760	  OPER_PLUG			13	!operator plug error
04761	  INVLD_CMD			12	!invalid command
    04762	  LOSS_CLK			11	!lost clocks
    04763	  LOSS_CHK			10	!loss of bit check
   04764	  DC_FAULT			7	!DC or head select fault
   04765	  DATA_ERROR			3	!data error
    04766	END WORD_11
 04767	
  04768	WORD_11  COMMON
  04769	 RMECC1					!ECC position register
   04770	  ECC_POSITION			12-0	!position of error burst
 04771	END WORD_11
 04772	
  04773	WORD_11  COMMON
  04774	 RMECC2					!ECC pattern register
    04775	  ECC_PATTERN			10-0	!error pattern mask
  04776	END WORD_11
 04777	!++
    04778	!
 04779	!      Error register definitions for TM02/3
   04780	!
 04781	!--
    04782	
  04783	WORD_11 COMMON
   04784	 MB_ERR                                 ! Error register
 04785	  TM_PE_CORR			15	! Correctible data error if PE
    04786	  TM_NRZI_CRC			15	! CRC does not match computed CRC
04787	  TM_PE_CORR_NRZI_CRC		15	! Either
   04788	  TM_UNSAFE			14	! 
   04789	  TM_OPER_INC			13	! Operation incomplete
 04790	  TM_DR_T_ERROR			12	! Drive timing error
 04791	  TM_NXF			11	! Nonexecutable function
    04792	  TM_PE_CS			10	! PE correctable skew
04793	  TM_NRZI_ITM			10	! Illegal tape mark
    04794	  TM_PE_CS_NRZI_ITM		10	! Either of above
 04795	  TM_F_C_ERR			9	! Frame count error
 04796	  TM_N_STD_GAP			8	! Non standard gap
04797	  TM_PE_PFE			7	! Format error if PE
 04798	  TM_NRZI_LRC			7	! Check char error if NRZI
   04799	  TM_PE_FE_NRZI_LRC		7	! Either of above
  04800	  TM_PE_NDE			6	! Noncorrectable data error if PE
   04801	  TM_NRZI_VPE			6	! Vertical parity error if NRZI
   04802	  TM_PE_NDE_NRZI_VPE		6	! Either of above
 04803	  TM_DBUS_PE			5	! Data bus parity error
  04804	  TM_FMT_ERROR			4	! Format error
    04805	  TM_CBUS_PE			3	! control bus parity
04806	  TM_REG_MOD			2	! register modification refused
    04807	  TM_ILL_REG			1	! Illegal register
  04808	  TM_ILL_FUNC			0	! illegal function
 04809	END WORD_11
 04810	
  04811	WORD_11 COMMON
   04812	 DM_ER				        ! Error register for DX20
    04813	  DX_MP_ERROR			7	! Microprocessor error
  04814	  DX_MP_STOP			6	! Microprocessor stopped
 04815	  DX_UBUS_PE			5	! Micro bus parity error
 04816	  DX_DBUF_PE			4	! Data buffer parity error
         04817	  DX_CBUS_PE			3	! Control bus parity error
    04818	  DX_REG_MOD			2	! Register modification refused
    04819	  DX_ILL_REG			1	! Illegal register
  04820	  DX_ILL_FUNCT			0	! Illegal functions
    04821	END WORD_11
 04822	
 04823	!++
    04824	!	DECNET "Event Logging Message" word definitions
   04825	!--
    04826	
  04827	WORD_11  COMMON
  04828	 SINK_FLAGS
 04829	  MONITOR			2
    04830	  FILE				1
 04831	  CONSOLE			0
    04832	END WORD_11
 04833	
  04834	
  04835	WORD_11  COMMON
  04836	 EVENT_CODE				! DECNET "Event Logging message"
04837	  EVENT_CLASS			14-6
  04838	  EVENT_TYPE			4-0
         04839	END WORD_11
 04840	
  04841	
  04842	WORD_11  COMMON
  04843	 DATA_ID
    04844	  PARAMETER_COUNTER_FLAG	15	! 0 = Parameter data
    04845						! 1 = Counter data
    04846	!    Bit definitions for Parameter data
   04847	! Reserved			14-12  
  04848	  PARAMETER_TYPE		11-0
04849	!    Bit definitions for Counter data
04850	  COUNTER_WIDTH			14-13	! 0 = reserved
    04851						! 1 = 8 bits
04852						! 2 = 16 bits
    04853						! 3 = 32 bits
    04854	  BIT_MAPPED_FLAG		12	! 0 = Not bit mapped
04855						! 1 = Bit mapped
 04856	  COUNTER_TYPE			11-0	! Decimal counter number
 04857	END WORD_11
 04858	
       04859	
  04860	WORD_11  COMMON
  04861	 DATA_TYPE				! Present for Parameter data only
04862	  CODED_FLAG			7	! 0 = Not coded
04863						! 1 = Coded
 04864	!    Bit definitions for Non-coded data
   04865	  FIELD_TYPE			6	! 0 = Binary number
 04866						! 1 = ASCII image field
    04867	  					!     bits 5-0 = 0
  04868	  OUTPUT_FORMAT			5-4	! 0 = Unsigned decimal number
 04869						! 1 = Signed decimal number
04870						! 2 = Hexadecimal number
   04871						! 3 = Octal number
    04872	  DATA_LENGTH			3-0	! 0 = Data is image field
  04873	!    Bit definitions for Coded data
  04874	  MULTIPLE_FIELD		6	! 0 = Single field
    04875						! 1 = Multiple field
  04876	  FIELD_COUNT			5-0	! Number of bytes for Single field
   04877						! Number of fields for Multiple fields
    04878	END WORD_11
 04879	
 04880	
  04881	
  04882	
  04883	
  04884	
  04885	
  04886	
  04887	
  04888	
  04889	
  04890	!++
    04891	!
 04892	!	End of DEFINE.EYE
   04893	!
 04894	!--
CREF TABLES:
FIELD NAME             FIELD DESC  BLOCK NAME             LINE #
$R110E                  1  3       FE_RELOAD_20             1539
$R111E                  1  4       FE_RELOAD_20             1540
$R1ASF                  1  5       FE_RELOAD_20             1541
$R1BSF                  1  10      FE_RELOAD_20             1546
$R1DPF                  1  2       FE_RELOAD_20             1538
$R1GTF                  1  0       FE_RELOAD_20             1536
$R1NRL                  1  11      FE_RELOAD_20             1547
$R1OPF                  1  1       FE_RELOAD_20             1537
$R1PDF                  1  7       FE_RELOAD_20             1543
$R1PUF                  1  8       FE_RELOAD_20             1544
$R1RLF                  1  6       FE_RELOAD_20             1542
$R1RMF                  1  9       FE_RELOAD_20             1545
$R1RTC                  1  30-35   FE_RELOAD_20             1554
AC0                     0  0-35    AC_BLOCK_6_DATA          1923
AC0                     0  0-35    AC_BLOCK_7_DATA          1932
AC0                     0  0-35    SAVED_ACS                3867
AC1                     1  0-35    AC_BLOCK_6_DATA          1924
AC1                     1  0-35    AC_BLOCK_7_DATA          1933
AC1                     1  0-35    SAVED_ACS                3868
AC10                    8  0-35    SAVED_ACS                3875
AC11                    9  0-35    SAVED_ACS                3876
AC12                    4  0-35    AC_BLOCK_6_DATA          1927
AC12                   10  0-35    SAVED_ACS                3877
AC13                   11  0-35    SAVED_ACS                3878
AC14                   12  0-35    SAVED_ACS                3879
AC15                   13  0-35    SAVED_ACS                3880
AC16                   14  0-35    SAVED_ACS                3881
AC17                   15  0-35    SAVED_ACS                3882
AC2                     2  0-35    AC_BLOCK_6_DATA          1925
AC2                     2  0-35    AC_BLOCK_7_DATA          1934
AC2                     2  0-35    SAVED_ACS                3869
AC3                     3  0-35    AC_BLOCK_6_DATA          1926
AC3                     3  0-35    SAVED_ACS                3870
AC4                     4  0-35    SAVED_ACS                3871
AC5                     5  0-35    SAVED_ACS                3872
AC6                     6  0-35    SAVED_ACS                3873
AC7                     7  0-35    SAVED_ACS                3874
ACCESSIBLE             **  2       PAGE_FAIL_WORD           3992
ACRCERR                **  04      ECCSTA                   2886
ACRC_WMC_DRBUS         **  02      WMCSTA                   3154
AC_BLOCK_6_DATA        90  BODY    KL_CPU_STATUS_10         1158
AC_BLOCK_6_DATA        90  BODY    KL_CPU_STATUS_20         1674
AC_BLOCK_7_DATA        95  BODY    KL_CPU_STATUS_10         1159
AC_BLOCK_7_DATA        95  BODY    KL_CPU_STATUS_20         1675
AC_LOW                 **  6       ER3                      4586
ADDRESS_AND             5  0-35    CPU_PAR_INT_20           1633
ADDRESS_AND             5  0-35    PAR_SWEEP_DATA           3851
ADDRESS_AND             9  0-35    NXM_MEMORY_SWEEP_10      1034
ADDRESS_AND            11  0-35    OLD_CPU_NXM_ERR_10        281
ADDRESS_OR              6  0-35    CPU_PAR_INT_20           1634
ADDRESS_OR              7  0-35    PAR_SWEEP_DATA           3853
ADDRESS_OR             10  0-35    NXM_MEMORY_SWEEP_10      1035
ADDRESS_OR             12  0-35    OLD_CPU_NXM_ERR_10        282
ADDRESS_PAR            **  29      APR_STATUS               3969
ADJ_NODE_NAME           3  MAIN$Z  NET_HARDWARE_ERR         1753
AMT                    **  05      ECCSTA                   2887
AMTIE                  **  7-0     RAMT                     2704
AMTIE0                 **  02      CH0TIE                   2903
AMTIE1                 **  02      CH1TIE                   2917
AMTIE2                 **  02      CH2TIE                   2932
AMTIE3                 **  02      CH3TIE                   2948
AMTIE4                 **  02      CH4TIE                   2964
AMTIE5                 **  02      CH5TIE                   2980
AMTIE6                 **  02      CH6TIE                   2995
AMTIE7                 **  02      CH7TIE                   3011
AMTIEP                 **  02      CHPTIE                   3026
AMTIE_P                **  00      PSTAT                    3061
AMTIE_P                **  00      RPSTA                    2805
AMTIE_THR              **  1-0     TUDIAG                   3467
APRSTS_NXM             **  25      APR_STATUS               3965
APR_ID                  0  0-35    KL_CPU_STATUS_10         1140
APR_ID                  0  0-35    KL_CPU_STATUS_20         1656
APR_STATUS              0  0-35    CPU_PAR_INT_20           1628
APR_STATUS              1  0-35    KL_CPU_STATUS_10         1141
APR_STATUS              1  0-35    KL_CPU_STATUS_20         1657
APR_STATUS              2  0-35    KL_PAR_NXM_INT_10         956
APR_STATUS             11  0-35    CPU_PAR_INT_10           1125
APR_STATUS             35  0-35    MONITOR_BUG_DATA_20      1351
ARA_ERR                **  5       MIAB_STAT                3429
ATA                    **  03      CASSTA                   3092
ATA0                   **  0       AS                       4475
ATA1                   **  1       AS                       4474
ATA2                   **  2       AS                       4473
ATA3                   **  3       AS                       4472
ATA4                   **  4       AS                       4471
ATA5                   **  5       AS                       4470
ATA6                   **  6       AS                       4469
ATA7                   **  7       AS                       4468
ATN_CAS_4               4  0-17    TM78_CAS_REGS            2157
ATN_CAS_4               4  18-35   TM78_CAS_REGS            2157
ATTEMPTED_CONTINUES     3  0-35    CPU_PAR_INT_10           1117
ATTEN_ENABLE           **  30      CONO                     4322
ATTN0                  **  0       RMAS                     4707
ATTN1                  **  1       RMAS                     4706
ATTN2                  **  2       RMAS                     4705
ATTN3                  **  3       RMAS                     4704
ATTN4                  **  4       RMAS                     4703
ATTN5                  **  5       RMAS                     4702
ATTN6                  **  6       RMAS                     4701
ATTN7                  **  7       RMAS                     4700
ATTN_ACT               **  15      DS                       4413
ATTN_ACT               **  15      RMDS                     4645
A_OV_ERROR             **  9       ER1                      4439
A_OV_ERROR             **  9       RMER1                    4666
BAD_WORD                1  0-35    CPU_PAR_TRAP_10          1088
BAD_WORD                1  0-35    CPU_PAR_TRAP_20          1583
BAD_WORD                4  0-35    KL_OR_KS_PAR_TRAP_10      998
BAI_INH                **  3       RH11_RMCS2               4367
BAT_FREE               35  9-17    MASSBUS_ERR_10            535
BCT_CAS_5               5  0-17    TM78_CAS_REGS            2158
BCT_CAS_5               5  18-35   TM78_CAS_REGS            2158
BIT_MAPPED_FLAG        **  12      DATA_ID                  4854
BIT_PER_PAGE_FLAG       2  35      CONFIG_CHANGE_10          664
BIT_PER_PAGE_FLAG      12  35      NXM_MEMORY_SWEEP_10      1038
BIT_PER_PAGE_FLAG      12  35      SYSTEM_RELOAD_10          216
BIT_PER_PAGE_FLAG      14  35      OLD_CPU_NXM_ERR_10        286
BLOCKS_READ             8  0-35    MASSBUS_ERR_20           1389
BLOCKS_WRITE            9  0-35    MASSBUS_ERR_20           1391
BLOCK_ADDRESS          **  20-35   PBAR                     4258
BLOCK_ADDRESS          **  20-35   SBAR                     4242
BODY_FORMAT             0  18-20   HEADER                    141
BOP                    **  03      RPATH                    2593
BOT_TU                 **  02      TUSTAT                   3377
BUGHLT_ADDRESS          5  0-35    SYSTEM_RELOAD_20         1308
BUGHLT_DATE_TIME       33  0-35    MONITOR_BUG_DATA_20      1349
BUG_MESSAGE             9  MAIN$Z  MONITOR_BUG_DATA_20      1339
BUG_TYPE_FLAG           4  34-35   MONITOR_BUG_DATA_20      1328
BUS_ADDRESS            **  15-0    RH11_RMBA                4373
BUS_IN_LINES           **  9-0     RMMR2                    4754
BYT1_CNT                9  28-35   TM78_SENSE_BYTES         2474
BYT2_CNT                9  20-27   TM78_SENSE_BYTES         2475
BYTE_CNT               **  7 -     BYT1_CNT                 3243
BYTE_CNT2              **  7 -     BYT2_CNT                 3253
BYTE_COUNT              0  0-35    DECNET_PHASE_III         1802
BYTE_COUNT              5  0-35    NET_HARDWARE_ERR         1759
CACHEABLE              **  7       PAGE_FAIL_WORD           3997
CACHE_DIR_PAR          **  28      APR_STATUS               3968
CACHE_DISABLED          4  5       CPU_PAR_TRAP_10          1096
CACHE_DISABLED          9  5       KL_OR_KS_PAR_TRAP_10     1008
CACHE_FAILED_FLAG       4  2       CPU_PAR_TRAP_10          1093
CACHE_FAILED_FLAG       7  2       CPU_PAR_TRAP_20          1592
CACHE_FAILED_FLAG       9  2       KL_OR_KS_PAR_TRAP_10     1005
CACHE_LOOK             **  18      PAGE_STATUS              4014
CACHE_OFF_COUNT         4  27-35   CPU_PAR_TRAP_10          1099
CACHE_OFF_COUNT         9  27-35   KL_OR_KS_PAR_TRAP_10     1011
CACHE_ON_COUNT          4  18-26   CPU_PAR_TRAP_10          1098
CACHE_ON_COUNT          9  18-26   KL_OR_KS_PAR_TRAP_10     1010
CACHE_USE_FLAG          4  3       CPU_PAR_TRAP_10          1094
CACHE_USE_FLAG          7  3       CPU_PAR_TRAP_20          1593
CACHE_USE_FLAG          9  3       KL_OR_KS_PAR_TRAP_10     1006
CAHE_LOAD              **  19      PAGE_STATUS              4015
CASPE                  **  05      CASSTA                   3096
CASSTA                  7  20-27   TM78_SENSE_BYTES         2467
CAS_FAIL_CODE          **  15-10   DST_CAS_1                2263
CAS_INT_CODE           **  05-00   DST_CAS_1                2264
CBUSSTA                 8  10-17   TM78_SENSE_BYTES         2468
CBUS_EP                **  8       PREP_REG                 4311
CCW1                   26  0-35    DX20_ERR_10               589
CCW1                   28  0-35    MASSBUS_ERR_20           1419
CCW2                   27  0-35    DX20_ERR_10               590
CCW2                   29  0-35    MASSBUS_ERR_20           1420
CCW_FAIL_CNT           35  27-35   MASSBUS_ERR_10            538
CD_0                   **  0       ECCOR                    2865
CD_1                   **  1       ECCOR                    2867
CD_2                   **  2       ECCOR                    2868
CD_3                   **  3       ECCOR                    2869
CD_4                   **  4       ECCOR                    2870
CD_5                   **  5       ECCOR                    2871
CD_6                   **  6       ECCOR                    2872
CD_7                   **  7       ECCOR                    2873
CH0TIE                  4  28-35   TM78_SENSE_BYTES         2454
CH1TIE                  4  20-27   TM78_SENSE_BYTES         2455
CH2TIE                  5  10-17   TM78_SENSE_BYTES         2456
CH3TIE                  5  2-9     TM78_SENSE_BYTES         2457
CH4TIE                  5  28-35   TM78_SENSE_BYTES         2458
CH5TIE                  5  20-27   TM78_SENSE_BYTES         2459
CH6TIE                  6  10-17   TM78_SENSE_BYTES         2460
CH7TIE                  6  2-9     TM78_SENSE_BYTES         2461
CHANGE_REASON           2  0-11    CONFIG_CHANGE_10          651
CHANGE_REASON           4  0-35    CONFIG_CHANGE_20         1507
CHANNEL_CMD_WD         14  0-35    CSB_DX10                 2030
CHANNEL_CMD_WD_2       15  0-35    CSB_DX10                 2031
CHANNEL_ERRORS          9  0-35    PAR_SWEEP_DATA           3855
CHANNEL_NUMBER          3  9-11    CONFIG_CHANGE_20         1503
CHANNEL_REF            **  3       RDERA_STATUS             4036
CHAN_ADDR               2  0-17    DX20_ERR_10               551
CHAN_ADDR               4  5-11    MASSBUS_ERR_10            498
CHAN_ADDR              33  0-35    MASSBUS_ERR_20           1424
CHAN_CNTRL_STAT         0  0-35    CSB_TM02                 2084
CHAN_ERROR             **  22      CONI_STATUS              4232
CHAN_LOGO0             25  0-35    MASSBUS_ERR_20           1416
CHAN_LOGO1             26  0-35    MASSBUS_ERR_20           1417
CHAN_LOGO2             27  0-35    MASSBUS_ERR_20           1418
CHAN_LOGOUT_0          23  0-35    DX20_ERR_10               586
CHAN_LOGOUT_1          24  0-35    DX20_ERR_10               587
CHAN_LOGOUT_2          25  0-35    DX20_ERR_10               588
CHAN_NUMBER            33  33-35   MASSBUS_ERR_20           1426
CHAN_RDY               **  25      CONI_STATUS              4229
CHAN_TYPE               2  18-26   DX20_ERR_10               552
CHECK_TALLY            15  0-35    MONITOR_BUG_DATA_10       239
CHECK_TALLY            34  0-35    MONITOR_BUG_DATA_20      1350
CHKSM_ERRORS            6  24-35   OLD_DISK_STATS_10         844
CHKSM_ERRORS            7  24-35   DSCSBP                   3596
CHKSM_ERRORS            7  24-35   MASSBUS_ERR_10            508
CHN_BLK_ID              3  11-12   USAGE_DATA_20            1471
CHN_DEV_PAR_COUNT       3  0-35    CHANNEL_ERROR_REPORT_10   387
CHN_LOGOUT_0            0  BODY    CHN_LOGOUT_LIST          1939
CHN_LOGOUT_1            4  BODY    CHN_LOGOUT_LIST          1940
CHN_LOGOUT_2            8  BODY    CHN_LOGOUT_LIST          1941
CHN_LOGOUT_3           12  BODY    CHN_LOGOUT_LIST          1942
CHN_LOGOUT_4           16  BODY    CHN_LOGOUT_LIST          1943
CHN_LOGOUT_5           20  BODY    CHN_LOGOUT_LIST          1944
CHN_LOGOUT_6           24  BODY    CHN_LOGOUT_LIST          1945
CHN_LOGOUT_7           28  BODY    CHN_LOGOUT_LIST          1946
CHN_LOGOUT_LIST        22  BODY    KL_CPU_STATUS_10         1152
CHN_LOGOUT_LIST        22  BODY    KL_CPU_STATUS_20         1668
CHN_MEM_PAR_COUNT       2  0-35    CHANNEL_ERROR_REPORT_10   386
CHN_NUMBER              4  0-35    USAGE_DATA_20            1476
CHN_PIA                 3  8-10    USAGE_DATA_20            1470
CHN_STATUS_WORD         1  0-35    CHN_LOGOUT               1952
CHN_TYPE                3  13-17   USAGE_DATA_20            1472
CHPTIE                  6  28-35   TM78_SENSE_BYTES         2462
CINDBG                  9  0-35    EXTRACTED_CRASH_INFO_10   310
CINDEL                 23  0-35    EXTRACTED_CRASH_INFO_10   324
CINEPO                 20  0-35    EXTRACTED_CRASH_INFO_10   321
CINEPP                 21  0-35    EXTRACTED_CRASH_INFO_10   322
CINERC                 22  0-35    EXTRACTED_CRASH_INFO_10   323
CINHSO                 10  0-35    EXTRACTED_CRASH_INFO_10   311
CINLNM                  6  0-35    EXTRACTED_CRASH_INFO_10   307
CINLST                 64  0-35    EXTRACTED_CRASH_INFO_10   365
CINMMS                 13  0-35    EXTRACTED_CRASH_INFO_10   314
CINMNA                 72  0-35    EXTRACTED_CRASH_INFO_10   373
CINMPA                 17  0-35    EXTRACTED_CRASH_INFO_10   318
CINMPC                 16  0-35    EXTRACTED_CRASH_INFO_10   317
CINMPP                 19  0-35    EXTRACTED_CRASH_INFO_10   320
CINMPW                 18  0-35    EXTRACTED_CRASH_INFO_10   319
CINNDS                 25  0-35    EXTRACTED_CRASH_INFO_10   326
CINNJA                 71  0-35    EXTRACTED_CRASH_INFO_10   372
CINNJS                 26  0-35    EXTRACTED_CRASH_INFO_10   327
CINNUL                 65  0-35    EXTRACTED_CRASH_INFO_10   366
CINNWC                 11  0-35    EXTRACTED_CRASH_INFO_10   312
CINOHT                 66  0-35    EXTRACTED_CRASH_INFO_10   367
CINPAA                 37  0-35    EXTRACTED_CRASH_INFO_10   338
CINPAC                 38  0-35    EXTRACTED_CRASH_INFO_10   339
CINPAR                 31  0-35    EXTRACTED_CRASH_INFO_10   332
CINPCS                 41  0-35    EXTRACTED_CRASH_INFO_10   342
CINPLA                 32  0-35    EXTRACTED_CRASH_INFO_10   333
CINPMR                 33  0-35    EXTRACTED_CRASH_INFO_10   334
CINPOA                 39  0-35    EXTRACTED_CRASH_INFO_10   340
CINPOC                 40  0-35    EXTRACTED_CRASH_INFO_10   341
CINPOK                  5  0-35    EXTRACTED_CRASH_INFO_10   306
CINPSC                 35  0-35    EXTRACTED_CRASH_INFO_10   336
CINPTR                  2  0-35    EXTRACTED_CRASH_INFO_10   303
CINPTS                 34  0-35    EXTRACTED_CRASH_INFO_10   335
CINPUE                 36  0-35    EXTRACTED_CRASH_INFO_10   337
CINRHC                 61  0-35    EXTRACTED_CRASH_INFO_10   362
CINRHI                 49  0-35    EXTRACTED_CRASH_INFO_10   350
CINRHO                 45  0-35    EXTRACTED_CRASH_INFO_10   346
CINRHR                 53  0-35    EXTRACTED_CRASH_INFO_10   354
CINRHX                 57  0-35    EXTRACTED_CRASH_INFO_10   358
CINRLC                 62  0-35    EXTRACTED_CRASH_INFO_10   363
CINRLI                 50  0-35    EXTRACTED_CRASH_INFO_10   351
CINRLO                 46  0-35    EXTRACTED_CRASH_INFO_10   347
CINRLR                 54  0-35    EXTRACTED_CRASH_INFO_10   355
CINRLX                 58  0-35    EXTRACTED_CRASH_INFO_10   359
CINRNC                 60  0-35    EXTRACTED_CRASH_INFO_10   361
CINRNI                 48  0-35    EXTRACTED_CRASH_INFO_10   349
CINRNO                 44  0-35    EXTRACTED_CRASH_INFO_10   345
CINRNR                 52  0-35    EXTRACTED_CRASH_INFO_10   353
CINRNX                 56  0-35    EXTRACTED_CRASH_INFO_10   357
CINRSC                 59  0-35    EXTRACTED_CRASH_INFO_10   360
CINRSI                 47  0-35    EXTRACTED_CRASH_INFO_10   348
CINRSO                 43  0-35    EXTRACTED_CRASH_INFO_10   344
CINRSP                 42  0-35    EXTRACTED_CRASH_INFO_10   343
CINRSR                 51  0-35    EXTRACTED_CRASH_INFO_10   352
CINRSX                 55  0-35    EXTRACTED_CRASH_INFO_10   356
CINSEC                  1  0-35    EXTRACTED_CRASH_INFO_10   302
CINSIZ                  4  0-35    EXTRACTED_CRASH_INFO_10   305
CINSJN                 27  0-35    EXTRACTED_CRASH_INFO_10   328
CINSNE                 70  0-35    EXTRACTED_CRASH_INFO_10   371
CINSPC                 24  0-35    EXTRACTED_CRASH_INFO_10   325
CINSPE                 15  0-35    EXTRACTED_CRASH_INFO_10   316
CINSPN                 28  0-35    EXTRACTED_CRASH_INFO_10   329
CINSPP                 30  0-35    EXTRACTED_CRASH_INFO_10   331
CINSUU                 29  0-35    EXTRACTED_CRASH_INFO_10   330
CINTIC                  7  0-35    EXTRACTED_CRASH_INFO_10   308
CINTIM                  3  0-35    EXTRACTED_CRASH_INFO_10   304
CINTJC                 68  0-35    EXTRACTED_CRASH_INFO_10   369
CINTNE                 69  0-35    EXTRACTED_CRASH_INFO_10   370
CINTPE                 14  0-35    EXTRACTED_CRASH_INFO_10   315
CINTUC                 67  0-35    EXTRACTED_CRASH_INFO_10   368
CINUNI                 73  0-35    EXTRACTED_CRASH_INFO_10   374
CINUPT                 12  0-35    EXTRACTED_CRASH_INFO_10   313
CINUPT                 63  0-35    EXTRACTED_CRASH_INFO_10   364
CINVER                  8  0-35    EXTRACTED_CRASH_INFO_10   309
CLEAR_DONE             **  32      CONO                     4324
CLEAR_MBC              **  25      CONO                     4317
CLEAR_RAE              **  24      CONO                     4316
CLEAR_XFER             **  26      CONO                     4318
CLOCK_STOPPED          **  02      RPATH                    2592
CMDCOD                  0  10-17   TM78_SENSE_BYTES         2436
CMDPE                  **  05      PSTAT                    3068
CMD_A16                **  08      CMD_CAS_0                2234
CMD_A17                **  09      CMD_CAS_0                2233
CMD_CAS_0               0  0-17    TM78_CAS_REGS            2153
CMD_CAS_0               0  18-35   TM78_CAS_REGS            2153
CMD_CODE               **  7 -     CMDCOD                   2501
CMD_DONE               **  32      CONI_STATUS              4222
CMD_DR_AVAIL           **  11      CMD_CAS_0                2225
CMD_FUNC_CODE          **  05-01   CMD_CAS_0                2254
CMD_GO_BIT             **  00      CMD_CAS_0                2255
CMD_INT_EN             **  06      CMD_CAS_0                2244
CMD_MCPE               **  13      CMD_CAS_0                2214
CMD_PE                 **  7       MIAB_STAT                3437
CMD_PORTSEL            **  10      CMD_CAS_0                2228
CMD_READY_DT           **  07      CMD_CAS_0                2237
CMD_SPL_COND           **  15      CMD_CAS_0                2202
CMD_TRAN_ERR           **  14      CMD_CAS_0                2207
CNTRLLER_REG            4  0-35    TAPE_ERR_10               724
CNT_CAS_2               2  0-17    TM78_CAS_REGS            2155
CNT_CAS_2               2  18-35   TM78_CAS_REGS            2155
CNT_CMD_ADR            **  01-00   CNT_CAS_2                2318
CNT_FORMAT             **  14-12   CNT_CAS_2                2277
CNT_REC_CNT            **  07-02   CNT_CAS_2                2298
CNT_SER                **  15      CNT_CAS_2                2269
CNT_SKIP_CNT           **  11-08   CNT_CAS_2                2291
CODED_FLAG             **  7       DATA_TYPE                4862
COMMAND_CODE            0  12-17   CONFIG_CHANGE_20         1499
COMMAND_CODE            2  12-17   CONFIG_CHANGE_10          652
COMND_BRNCH            **  12      RMMR2                    4751
CONFIG_RPT_FLAG         0  4       FE_SUB                   3744
CONI                    2  0-35    CSB_TM78                 2126
CONI                   10  0-35    CSB_DX10                 2019
CONI_AT_ERR            14  0-35    TAPE_ERR_10               768
CONI_DTE_LIST          18  0-35    KL_CPU_STATUS_10         1151
CONI_DTE_LIST          18  0-35    KL_CPU_STATUS_20         1667
CONI_FINAL              6  0-35    DX20_ERR_10               566
CONI_FINAL              6  0-35    MASSBUS_ERR_10            505
CONI_FINAL              6  0-35    MASSBUS_ERR_20           1387
CONI_INITIAL            0  0-35    CSB_TM02                 2080
CONI_INITIAL            5  0-35    DX20_ERR_10               565
CONI_INITIAL            5  0-35    MASSBUS_ERR_10            502
CONI_INITIAL            5  0-35    MASSBUS_ERR_20           1385
CONI_RH20_LIST         10  0-35    KL_CPU_STATUS_10         1150
CONI_RH20_LIST         10  0-35    KL_CPU_STATUS_20         1666
CONI_RP10               5  0-35    OLD_DISK_ERR_10           424
CONO_RESET_CLP         **  28      CONO                     4320
CONSOLE                **  0       SINK_FLAGS               4831
CONT                   **  6       RMMR1                    4689
CONTEN                 **  07      CASSTA                   3101
CONTENTS_AND            6  0-35    PAR_SWEEP_DATA           3852
CONTENTS_AND            7  0-35    CPU_PAR_INT_20           1635
CONTENTS_OR             8  0-35    CPU_PAR_INT_20           1636
CONTENTS_OR             8  0-35    PAR_SWEEP_DATA           3854
CONTINUE_COUNT          3  0-35    OLD_CPU_MEM_PAR_ERR_10    254
CONTROLLER_NUMBER       0  18-35   SBDIAG_LIST              3894
CONTROLLER_NUMBER       3  12-14   CONFIG_CHANGE_20         1504
CONTROLLER_NUMBER      16  27-29   OLD_DISK_ERR_10           446
CONTROLLER_TYPE         4  12-14   TAPE_ERR_10               730
CONTROLLER_TYPE        16  21-26   OLD_DISK_ERR_10           443
CONTR_TAG_A            **  13      RMMR2                    4750
CONTR_TAG_B            **  11      RMMR2                    4752
CONT_CLEAR             **  5       RH11_RMCS2               4365
CORRECTED_DATA_P       **  07      RPSTA                    2812
COUNTER_TYPE           **  11-0    DATA_ID                  4856
COUNTER_WIDTH          **  14-13   DATA_ID                  4850
CPU_NAME                0  0-35    CPU_PAR_INT_10           1114
CPU_NAME                0  0-35    KL_OR_KS_PAR_TRAP_10      994
CPU_NAME                0  0-35    KL_PAR_NXM_INT_10         954
CPU_NAME                0  0-35    NXM_MEMORY_SWEEP_10      1025
CPU_NAME                0  0-35    OLD_CPU_MEM_PAR_ERR_10    251
CPU_NAME                0  0-35    OLD_CPU_NXM_ERR_10        270
CPU_NAME                0  0-35    PAR_MEMORY_SWEEP_10      1046
CPU_SERIAL_NUMBER       1  0-35    MONITOR_BUG_DATA_20      1322
CPU_SERIAL_NUMBER       3  0-35    SYSTEM_RELOAD_20         1304
CPU_SERIAL_NUMBER       7  0-35    MONITOR_BUG_DATA_10       230
CPU_SERIAL_NUMBER       9  0-35    SYSTEM_RELOAD_10          209
CRASH_EXTRACT           0  16      HEADER                    139
CRASH_STR               0  0-35    EXTRACTED_CRASH_INFO_10   301
CRCE                   **  07      ECCSTA                   2890
CRCWRD                  3  20-27   TM78_SENSE_BYTES         2451
CRC_0                  **  0       CRCWRD                   2850
CRC_1                  **  1       CRCWRD                   2851
CRC_2                  **  2       CRCWRD                   2852
CRC_3                  **  3       CRCWRD                   2853
CRC_4                  **  4       CRCWRD                   2854
CRC_5                  **  5       CRCWRD                   2855
CRC_6                  **  6       CRCWRD                   2856
CRC_7                  **  7       CRCWRD                   2857
CRC_OUT                **  9       RMMR1                    4686
CRC_WMC_DRBUS          **  03      WMCSTA                   3157
CSB_DX10_AT_END         9  HEAD    TAPE_ERR_10               759
CSB_DX10_AT_ERR         8  HEAD    TAPE_ERR_10               754
CSB_TM02_AT_END         9  HEAD    TAPE_ERR_10               760
CSB_TM02_AT_ERR         8  HEAD    TAPE_ERR_10               755
CSB_TM10_AT_END         9  HEAD    TAPE_ERR_10               757
CSB_TM10_AT_ERR         8  HEAD    TAPE_ERR_10               752
CSB_TM78_AT_END         9  HEAD    TAPE_ERR_10               758
CSB_TM78_AT_ERR         8  HEAD    TAPE_ERR_10               753
CSR_DSR_FLAG           **  33      DX10_CSR                 2066
CSR_IGN_LEN_ERR        **  31      DX10_CSR                 2064
CSR_LEN_ERR            **  30      DX10_CSR                 2063
CSR_OPI                **  35      DX10_CSR                 2068
CSR_PAR_ERR            **  29      DX10_CSR                 2062
CSR_PRG_STAT           **  24      DX10_CSR                 2058
CSR_SBYTE_RD_ERR       **  34      DX10_CSR                 2067
CSR_SEL_ERR            **  27      DX10_CSR                 2060
CSR_SEQ_ERR            **  28      DX10_CSR                 2061
CSR_TYPE               **  25-26   DX10_CSR                 2059
CSR_UNUSED             **  32      DX10_CSR                 2065
CS_PTR                  3  0-35    KS_HALT_STATUS_20        1570
CTRL_ADDR               4  5-11    DX20_ERR_10               561
CTRL_NUMBER             4  15-17   DX20_ERR_10               563
CTRL_NUMBER             4  15-17   MASSBUS_ERR_10            500
CTRL_TYPE               4  12-14   DX20_ERR_10               562
CURRENT_BLOCK          **  6-8     PAGE_DATAI               3979
CYLINDER               23  0-35    MASSBUS_ERR_20           1412
C_SK_UNSF              **  1       ER2                      4565
C_SW_UNSF              **  3       ER2                      4561
DAC                     2  0-35    CSB_DX10                 1995
DAE_VERSION             0  0-35    DAEMON_STARTED_10         405
DAG                    18  0-35    CSB_DX10                 2034
DATA                   **  15-0    RH11_RMDB                4378
DATA_CHECK             **  15      ER1                      4433
DATA_CHECK             **  15      RMER1                    4660
DATA_ECC               **  7-0     RDATA                    2842
DATA_ENV               **  7       MR                       4456
DATA_ERROR             **  3       RMER2                    4765
DATA_LATE              **  15      RH11_RMCS2               4355
DATA_LENGTH            **  3-0     DATA_TYPE                4872
DATA_LOOP              **  27      DCR                      4295
DATA_P                 **  06      RPSTA                    2811
DATA_PE                **  18      CONI_STATUS              4236
DATA_POINTER            5  0-35    SOFTWARE_EVENT_10         620
DATA_READY             **  04      RPATH                    2596
DATE_TIME               1  0-35    CONFIG_CHANGE_10          649
DAT_ERR                 4  2       MASSBUS_ERR_20           1378
DBUSSTA                 8  2-8     TM78_SENSE_BYTES         2469
DC_FAULT               **  7       RMER2                    4764
DC_LOW                 **  5       ER3                      4589
DDR_A                  11  10-17   TM78_SENSE_BYTES         2480
DDR_B                  11  2-9     TM78_SENSE_BYTES         2481
DEBPTR                  0  0-35    SOFTWARE_REQ_DATA_10      685
DEL_SCR                **  29      CONO                     4321
DEPOSIT_PROTECT         5  0-35    DTE_BLOCK                3628
DEPOSIT_RELOC           6  0-35    DTE_BLOCK                3629
DETECTING_DTE           6  0-35    FE_DATA                  3734
DEVICE_DATA             2  0-35    DEVICE_STATUS_10         1175
DEVICE_NAME             0  0-35    CHANNEL_ERROR_REPORT_10   384
DEVICE_NAME             0  0-35    OLD_TAPE_STATS_10         865
DEVICE_NAME             2  0-35    CONFIG_CHANGE_20         1501
DEVICE_NAME_1           0  0-35    CONFIG_CHANGE_10          641
DEVICE_NAME_2           1  0-35    CONFIG_CHANGE_10          646
DEV_ANSWER              3  0-35    ERROR_LOG                3711
DEV_BLK_ID              3  29-30   USAGE_DATA_20            1474
DEV_CODE                4  18-35   FE_DATA                  3728
DEV_ERR                 4  4       MASSBUS_ERR_20           1380
DEV_NAM                 0  0-35    DX20_ERR_10               549
DEV_NAM                 0  0-35    MASSBUS_ERR_10            489
DEV_NAM                 0  0-35    MASSBUS_ERR_20           1365
DEV_NAM                 0  0-35    TAPE_ERR_10               717
DEV_NAM                 1  0-35    DSCSBP                   3580
DEV_NAME                0  0-35    MASSBUS_ERR_20           1366
DEV_NUMBER              4  14-17   FE_DATA                  3727
DEV_PIA                 3  26-28   USAGE_DATA_20            1473
DEV_SEL_CODE           **  15-17   PREP_REG                 4310
DEV_TYPE                2  27-35   DX20_ERR_10               553
DEV_TYPE                3  31-35   USAGE_DATA_20            1475
DG1_CAS_3               3  0-17    TM78_CAS_REGS            2156
DG1_CAS_3               3  18-35   TM78_CAS_REGS            2156
DG2_CAS_11              9  0-17    TM78_CAS_REGS            2183
DG2_CAS_11              9  18-35   TM78_CAS_REGS            2183
DG3_CAS_12             10  0-17    TM78_CAS_REGS            2184
DG3_CAS_12             10  18-35   TM78_CAS_REGS            2184
DIAG_MODE              **  0       MR                       4463
DIAG_MODE              **  0       RMMR1                    4695
DIAG_READ_DATA         **  18-35   WR                       4288
DIAG_WRITE_DATA        **  18-35   RR                       4281
DIRECTORY               1  0-35    FE_DATA                  3723
DIS_RAE                **  9       PREP_REG                 4309
DIS_XFER               **  19      PTCR                     4266
DIS_XFER               **  19      STCR                     4250
DLECN0                  3  0-35    DL_HARDWARE_ERR_10        917
DLECN1                  4  0-35    DL_HARDWARE_ERR_10        918
DLECN2                  5  0-35    DL_HARDWARE_ERR_10        919
DLECN3                  6  0-35    DL_HARDWARE_ERR_10        920
DLECNI                  1  0-35    DL_HARDWARE_ERR_10        915
DLEDT1                  7  0-35    DL_HARDWARE_ERR_10        921
DLEDTI                  2  0-35    DL_HARDWARE_ERR_10        916
DLEPGM                  8  0-35    DL_HARDWARE_ERR_10        922
DLEPRT                  0  0-35    DL_HARDWARE_ERR_10        914
DLESTS                  9  0-35    DL_HARDWARE_ERR_10        923
DM_AL                  16  0-35    DX20_MASSBUS_REG         3659
DM_AS                   4  0-35    DX20_MASSBUS_REG         3647
DM_AY                  11  0-35    DX20_MASSBUS_REG         3654
DM_BW                  19  0-35    DX20_MASSBUS_REG         3662
DM_CR                   0  0-35    DX20_MASSBUS_REG         3643
DM_DN                   8  0-35    DX20_MASSBUS_REG         3651
DM_DT                   6  0-35    DX20_MASSBUS_REG         3649
DM_E0                  12  0-35    DX20_MASSBUS_REG         3655
DM_E1                  13  0-35    DX20_MASSBUS_REG         3656
DM_ER                   2  0-35    DX20_MASSBUS_REG         3645
DM_ES                   9  0-35    DX20_MASSBUS_REG         3652
DM_FP                  18  0-35    DX20_MASSBUS_REG         3661
DM_IB                  20  0-35    DX20_MASSBUS_REG         3663
DM_IR                  14  0-35    DX20_MASSBUS_REG         3657
DM_MA                  21  0-35    DX20_MASSBUS_REG         3664
DM_MR                   3  0-35    DX20_MASSBUS_REG         3646
DM_PC                  15  0-35    DX20_MASSBUS_REG         3658
DM_SB                   5  0-35    DX20_MASSBUS_REG         3648
DM_SD                  17  0-35    DX20_MASSBUS_REG         3660
DM_SI                   7  0-35    DX20_MASSBUS_REG         3650
DM_SR                   1  0-35    DX20_MASSBUS_REG         3644
DM_TE                  10  0-35    DX20_MASSBUS_REG         3653
DRADR                  **  2-0     CASSTA                   3090
DRIVE_AVAIL            **  12      RMCS1                    4634
DRIVE_EXC              **  19      CONI_STATUS              4235
DRIVE_PRES             **  8       DS                       4420
DRIVE_PRES             **  8       RMDS                     4652
DRIVE_READY            **  7       DS                       4421
DRIVE_READY            **  7       RMDS                     4653
DRIVE_REQ              **  11      DT                       4489
DRIVE_REQ              **  11      RMDT                     4719
DRIVE_TYPE             **  8-0     DT                       4491
DRIVE_TYPE             **  8-0     RMDT                     4720
DRMBPE                 **  06      WMCERR                   3333
DRRDPE                 **  03      WMCERR                   3326
DR_NO_WR_CLK           **  07      WMCERR                   3336
DR_REG                 17  0-35    CSB_DX10                 2033
DR_RE_ERROR            **  23      CONI_STATUS              4231
DR_T_ERROR             **  12      ER1                      4436
DR_T_ERROR             **  12      RMER1                    4663
DSCBPT                  0  0-35    DSCSBP                   3578
DSCBRC                  8  0-35    DSCSBP                   3597
DSCBWC                  9  0-35    DSCSBP                   3598
DSCDRC                 10  0-35    DSCSBP                   3599
DSCDWC                 11  0-35    DSCSBP                   3600
DSCHCT                  3  0-35    DSCSBP                   3582
DSCHID                  2  0-35    DSCSBP                   3581
DSCICT                 14  0-35    DSCSBP                   3603
DSCMCT                  7  0-35    DSCSBP                   3593
DSCMRC                 12  0-35    DSCSBP                   3601
DSCMSC                 16  0-35    DSCSBP                   3605
DSCMWC                 13  0-35    DSCSBP                   3602
DSCOCT                 15  0-35    DSCSBP                   3604
DSCPCT                  5  0-35    DSCSBP                   3586
DSCSBP                  0  MAIN    DISK_STATS_10             903
DSCSCT                  4  0-35    DSCSBP                   3584
DSCUSC                 17  0-35    DSCSBP                   3606
DSE_MIA                **  00      MIAA_STAT                3395
DSE_TUX                **  00      TUX                      3509
DSR_ATTN               **  28      DX10_DSR                 2046
DSR_BUSY               **  31      DX10_DSR                 2049
DSR_CHAN_END           **  32      DX10_DSR                 2050
DSR_CU_END             **  30      DX10_DSR                 2048
DSR_DEV_END            **  33      DX10_DSR                 2051
DSR_STAT_MOD           **  29      DX10_DSR                 2047
DSR_UNIT_CHK           **  34      DX10_DSR                 2052
DSR_UNIT_EXCEPT        **  35      DX10_DSR                 2053
DST_CAS_1               1  0-17    TM78_CAS_REGS            2154
DST_CAS_1               1  18-35   TM78_CAS_REGS            2154
DTE_BLOCK_0             0  BODY    DTE_CONTROL_BLOCK        3615
DTE_BLOCK_1             8  BODY    DTE_CONTROL_BLOCK        3616
DTE_BLOCK_2            16  BODY    DTE_CONTROL_BLOCK        3617
DTE_BLOCK_3            24  BODY    DTE_CONTROL_BLOCK        3618
DTE_CONTROL_BLOCK      54  BODY    KL_CPU_STATUS_10         1153
DTE_CONTROL_BLOCK      54  BODY    KL_CPU_STATUS_20         1669
DTE_INT_INSTRUCTION     2  0-35    DTE_BLOCK                3625
DTR_CAS_6               6  0-17    TM78_CAS_REGS            2180
DTR_CAS_6               6  18-35   TM78_CAS_REGS            2180
DT_CB0                 13  0-35    DX20_DEVICE_REG          3688
DT_CB1                 14  0-35    DX20_DEVICE_REG          3689
DT_DP0                 15  0-35    DX20_DEVICE_REG          3690
DT_DP1                 16  0-35    DX20_DEVICE_REG          3691
DT_DP2                 17  0-35    DX20_DEVICE_REG          3692
DT_DP3                 18  0-35    DX20_DEVICE_REG          3693
DT_LAS                 19  0-35    DX20_DEVICE_REG          3694
DT_MCV                  6  0-35    DX20_DEVICE_REG          3681
DT_MRA                  7  0-35    DX20_DEVICE_REG          3682
DT_MRB                  8  0-35    DX20_DEVICE_REG          3683
DT_MRC                  9  0-35    DX20_DEVICE_REG          3684
DT_MRD                 10  0-35    DX20_DEVICE_REG          3685
DT_MRE                 11  0-35    DX20_DEVICE_REG          3686
DT_MRF                 12  0-35    DX20_DEVICE_REG          3687
DT_SBA                  0  0-35    DX20_DEVICE_REG          3675
DT_SBB                  1  0-35    DX20_DEVICE_REG          3676
DT_SBC                  2  0-35    DX20_DEVICE_REG          3677
DT_SBD                  3  0-35    DX20_DEVICE_REG          3678
DT_SBE                  4  0-35    DX20_DEVICE_REG          3679
DT_SBF                  5  0-35    DX20_DEVICE_REG          3680
DX10_BC_OF             12  0       CSB_DX10                 2026
DX10_BYTE_CTR          12  1-13    CSB_DX10                 2027
DX10_CPC               12  14-35   CSB_DX10                 2028
DX10_CSR               11  8-19    CSB_DX10                 2022
DX10_DAR               11  28-35   CSB_DX10                 2024
DX10_DSR               11  0-7     CSB_DX10                 2021
DX10_LAST_REC          13  12-35   CSB_DX10                 2029
DX10_MEM_PAR           **  27      CONI                     2040
DX10_MP_ERR            **  26      CONI                     2039
DX10_NXM               **  28      CONI                     2041
DX10_SEQ_ERR           11  22-27   CSB_DX10                 2023
DX20_DEVICE_REG        36  MAIN    DX20_ERR_10               601
DX20_DEVICE_REG        41  MAIN    MASSBUS_ERR_20           1443
DX20_MASSBUS_REG       35  MAIN    DX20_ERR_10               599
DX20_MASSBUS_REG       40  MAIN    MASSBUS_ERR_20           1441
DX_CBUS_PE             **  3       DM_ER                    4817
DX_DBUF_PE             **  4       DM_ER                    4816
DX_ILL_FUNCT           **  0       DM_ER                    4820
DX_ILL_REG             **  1       DM_ER                    4819
DX_MP_ERROR            **  7       DM_ER                    4813
DX_MP_STOP             **  6       DM_ER                    4814
DX_REG_MOD             **  2       DM_ER                    4818
DX_UBUS_PE             **  5       DM_ER                    4815
DX_VER                 39  18-35   MASSBUS_ERR_20           1440
ECCOR                   4  10-17   TM78_SENSE_BYTES         2452
ECCSTA                  4  2-9     TM78_SENSE_BYTES         2453
ECC_CORR                4  1       MASSBUS_ERR_20           1377
ECC_ENV                **  6       MR                       4457
ECC_ERROR              **  6       ER1                      4442
ECC_ERROR              **  6       RMER1                    4669
ECC_ERR_LOC            **  12-0    ECC1                     4614
ECC_ERR_MASK           **  10-0    ECC2                     4619
ECC_INH                **  11      OF                       4509
ECC_INH                **  11      RMOF                     4736
ECC_PATTERN            **  10-0    RMECC2                   4775
ECC_POSITION           **  12-0    RMECC1                   4770
ECC_WMC_DRBUS          **  04      WMCSTA                   3159
ECODE_2                **  7 -     ERR2_CNT                 3296
ENABLED_COUNT          10  0-35    OLD_CPU_NXM_ERR_10        280
ENABLE_24_31           **  6-13    APR_STATUS               3961
ENAON                  14  20-27   TM78_SENSE_BYTES         2495
ENB_ECC                **  4       RMMR1                    4691
ENB_SERCH              **  11      RMMR1                    4684
END_0                  **  0       REND                     2790
END_1                  **  1       REND                     2791
END_2                  **  2       REND                     2792
END_3                  **  3       REND                     2793
END_4                  **  4       REND                     2794
END_5                  **  5       REND                     2795
END_6                  **  6       REND                     2796
END_7                  **  7       REND                     2797
END_BLOCK              **  13      RMMR1                    4682
END_P                  **  04      RPSTA                    2809
ENTRY_DATE_TIME         1  0-35    HEADER                    148
ENTRY_LENGTH            0  27-35   HEADER                    147
ENTRY_TYPE              0  0-8     HEADER                    136
EOT_DET                **  04      TUDIAG                   3473
EOT_TU                 **  01      TUSTAT                   3376
EPT_PAGE               **  23-35   PAGE_STATUS              4018
ER$DHG                  1  12      FE_RELOAD_20             1549
ER$ENF                  1  13      FE_RELOAD_20             1550
ER$OPE                  1  14      FE_RELOAD_20             1551
ER$OUF                  1  15      FE_RELOAD_20             1552
ER$TT1                  1  16      FE_RELOAD_20             1553
ERR                    **  05      WMCERR                   3331
ERR1_CNT               10  28-35   TM78_SENSE_BYTES         2478
ERR2_CNT               10  20-27   TM78_SENSE_BYTES         2479
ERROR                  **  14      DS                       4414
ERROR                  **  14      RMDS                     4646
ERROR_ADDRESS           5  0-35    MONITOR_BUG_DATA_20      1334
ERROR_LOG               0  BODY    SYS_ERROR_LOG_10          673
ERROR_LOG               0  BODY    SYS_ERROR_LOG_20         1516
ERR_CODE               **  7-0     ERR1_CNT                 3277
ERR_LOCATION            3  0-35    DX20_ERR_10               554
ERR_LOCATION            3  0-35    MASSBUS_ERR_20           1372
ERR_RECORD             22  0-35    DX20_ERR_10               585
ERR_RECORD             24  0-35    MASSBUS_ERR_20           1415
EVENT_CLASS            **  14-6    EVENT_CODE               4837
EVENT_CODE              0  0-35    SOFTWARE_EVENT_10         612
EVENT_TYPE             **  4-0     EVENT_CODE               4838
EVEN_PAR_CHK           **  29      DCR                      4297
EXAMINE_PROTECT         4  0-35    DTE_BLOCK                3627
EXPECTED_TERMINATION   12  0-35    CHANNEL_ERROR_REPORT_10   396
EXT_FIELD              **  5-4     LA                       4497
FAIL_CODE              **  7 -     FALCOD                   2516
FALCOD                  0  28-35   TM78_SENSE_BYTES         2438
FEATURE_REG             3  0-35    CSB_DX10                 1996
FERFNM                  2  MAIN$Z  FE_RELOAD_10              807
FERNUM                  0  0-35    FE_RELOAD_10              787
FERSIZ                  3  0-35    FE_RELOAD_10              808
FERSTS                  1  0-35    FE_RELOAD_10              790
FE_DATA                 0  BODY    FE_DEVICE_ERR_10          778
FE_DATA                 0  BODY    FE_DEVICE_ERR_20         1525
FE_LENGTH               7  0-35    FE_DATA                  3735
FE_OFFSET               5  18-35   FE_DATA                  3732
FE_SUB                  5  MAIN    FE_DATA                  3731
FE_VERSION              2  0-35    FE_DATA                  3724
FIELD_COUNT            **  5-0     DATA_TYPE                4876
FIELD_TYPE             **  6       DATA_TYPE                4865
FILE                   **  1       SINK_FLAGS               4830
FILE_IN_ERROR           2  0-35    TAPE_ERR_10               721
FILE_IN_ERROR           3  0-17    DX20_ERR_10               556
FILE_IN_ERROR           3  0-17    MASSBUS_ERR_20           1373
FILE_NAME               3  MAIN$Z  NODE_DOWN_LINE_DUMP      1741
FILE_NAME               3  MAIN$Z  NODE_DOWN_LINE_LOAD      1706
FILE_NAME              10  0-35    DX20_ERR_10               569
FILE_NAME              10  0-35    MASSBUS_ERR_10            514
FILE_NAME              10  0-35    MASSBUS_ERR_20           1393
FILE_NAME_EXT          11  18-35   MASSBUS_ERR_10            516
FILE_POSITION          21  0-35    DX20_ERR_10               584
FILE_POSITION          23  0-35    MASSBUS_ERR_20           1413
FINAL_ERR_STATE         4  0-35    DX20_ERR_10               558
FINAL_ERR_STATE         4  0-35    MASSBUS_ERR_10            493
FINAL_ERR_STATE         4  0-35    MASSBUS_ERR_20           1375
FINAL_ERR_STATUS        7  0-35    TAPE_ERR_10               750
FIRST_ADDRESS           3  0-35    NXM_MEMORY_SWEEP_10      1028
FIRST_ADDRESS           4  0-35    PAR_MEMORY_SWEEP_10      1050
FIRST_ADDRESS           5  0-35    OLD_CPU_NXM_ERR_10        275
FIRST_ADDRESS           6  0-35    CPU_PAR_INT_10           1120
FIRST_ADDRESS           6  0-35    OLD_CPU_MEM_PAR_ERR_10    257
FIRST_CONTENTS          3  0-35    PAR_MEMORY_SWEEP_10      1049
FIRST_CONTENTS          5  0-35    CPU_PAR_INT_10           1119
FIRST_CONTENTS          5  0-35    OLD_CPU_MEM_PAR_ERR_10    256
FMT22                  **  12      OF                       4508
FMT_16                 **  12      RMOF                     4735
FMT_ERROR              **  4       ER1                      4444
FMT_ERROR              **  4       RMER1                    4671
FORK_NUMBER             0  0-17    FE_DATA                  3721
FORK_NUMBER             4  0-17    CPU_PAR_TRAP_20          1586
FORK_NUMBER             6  0-17    MONITOR_BUG_DATA_20      1335
FORMAT_ERR              4  6       MASSBUS_ERR_20           1383
FPT_TU                 **  00      TUSTAT                   3375
FRAMES_READ             8  0-35    DX20_ERR_10               567
FRAMES_READ             8  0-35    MASSBUS_ERR_20           1390
FRAMES_WRITTEN          9  0-35    DX20_ERR_10               568
FRAMES_WRITTEN          9  0-35    MASSBUS_ERR_20           1392
FRAME_IN_ERR            5  0-35    TAPE_ERR_10               743
FUNCTION               **  5-0     RMCS1                    4639
FUNCTION_CODE          **  30-35   PTCR                     4268
FUNCTION_CODE          **  30-35   STCR                     4252
FUNCTION_WORD           4  0-35    NET_HARDWARE_ERR         1754
FUNCT_CODE              1  0-7     DECNET_PHASE_III         1803
FUNC_CODE1             **  05-01   NC2_CAS_15               2385
FWD                    **  06      MIAA_STAT                3407
GO                     **  0       RMCS1                    4640
GOOD_WORD               2  0-35    CPU_PAR_TRAP_10          1089
GOOD_WORD               2  0-35    CPU_PAR_TRAP_20          1584
GOOD_WORD               8  0-35    KL_OR_KS_PAR_TRAP_10     1002
HARD                    4  0       MASSBUS_ERR_20           1376
HARD                    4  1       MASSBUS_ERR_10            494
HARD                    4  1       TAPE_ERR_10               728
HARD_POS_ERR           31  0-35    DX20_ERR_10               594
HARD_POS_ERR           36  0-35    MASSBUS_ERR_20           1433
HARD_READ              19  0-35    DX20_ERR_10               582
HARD_READ              21  0-35    MASSBUS_ERR_20           1410
HARD_READ_ERRORS        5  0-35    OLD_TAPE_STATS_10         870
HARD_WRITE             20  0-35    DX20_ERR_10               583
HARD_WRITE             22  0-35    MASSBUS_ERR_20           1411
HARD_WRITE_ERRORS       7  0-35    OLD_TAPE_STATS_10         872
HCCCTL                  1  0-5     HARD_COPY_ERR_10         1266
HCCDEV                  1  6-11    HARD_COPY_ERR_10         1272
HCCNAM                  0  0-35    HARD_COPY_ERR_10         1264
HCCPGM                  3  0-35    HARD_COPY_ERR_10         1281
HCCSBP                  4  0-35    HARD_COPY_ERR_10         1282
HCCTYP                  1  0-35    HARD_COPY_ERR_10         1265
HCCUID                  2  0-35    HARD_COPY_ERR_10         1280
HCRC_ERROR             **  8       ER1                      4440
HDECCT                 18  0-35    OLD_DISK_ERR_10           455
HDEDCR                 16  0-35    OLD_DISK_ERR_10           442
HDEECT                  4  0-35    OLD_DISK_ERR_10           419
HDEERR                  6  0-35    OLD_DISK_ERR_10           425
HDEEXT                 20  0-35    OLD_DISK_ERR_10           458
HDEFIL                 19  0-35    OLD_DISK_ERR_10           457
HDEHBN                  9  0-35    OLD_DISK_ERR_10           428
HDEHCT                  2  0-35    OLD_DISK_ERR_10           417
HDEHDI                  8  0-35    OLD_DISK_ERR_10           427
HDEHID                  1  0-35    OLD_DISK_ERR_10           416
HDEHNG                 12  0-35    OLD_DISK_ERR_10           434
HDELOG                 17  0-35    OLD_DISK_ERR_10           454
HDEMCT                 10  0-35    OLD_DISK_ERR_10           429
HDENAM                  0  0-35    OLD_DISK_ERR_10           415
HDEPCT                 11  0-35    OLD_DISK_ERR_10           433
HDEPGM                 22  0-35    OLD_DISK_ERR_10           460
HDESCT                  3  0-35    OLD_DISK_ERR_10           418
HDESDI                  7  0-35    OLD_DISK_ERR_10           426
HDESOF                  5  0-35    OLD_DISK_ERR_10           423
HDETRC                 13  0-35    OLD_DISK_ERR_10           439
HDETSC                 15  0-35    OLD_DISK_ERR_10           441
HDETWC                 14  0-35    OLD_DISK_ERR_10           440
HDEUID                 21  0-35    OLD_DISK_ERR_10           459
HDR_ERR                 4  3       MASSBUS_ERR_20           1379
HDR_FORMAT              0  21-23   HEADER                    143
HDR_LENGTH              0  24-26   HEADER                    145
HDR_WRD_0               0  0-35    HEADER                    135
HDWR_OPTION_TYPE        4  28-35   NET_HARDWARE_ERR         1758
HEAD_TAG               **  10      RMMR2                    4753
HIGH_ADDRESS            0  0-35    PAR_SWEEP_DATA           3846
HI_CT_DET              **  10      MR                       4453
HSBCBP                  3  0-35    KS_HALT_STATUS_10         821
HSBCOD                  0  0-35    KS_HALT_STATUS_10         817
HSBEPC                  1  0-35    KS_HALT_STATUS_10         818
HS_AR                   3  0-35    KS_HS_BLOCK              3761
HS_ARX                  4  0-35    KS_HS_BLOCK              3762
HS_BR                   5  0-35    KS_HS_BLOCK              3763
HS_BRX                  6  0-35    KS_HS_BLOCK              3764
HS_EBR                 10  0-35    KS_HS_BLOCK              3766
HS_FLG                 13  0-35    KS_HS_BLOCK              3769
HS_HPC                  1  0-35    KS_HALT_STATUS_20        1567
HS_HR                   2  0-35    KS_HS_BLOCK              3760
HS_MAG                  0  0-35    KS_HS_BLOCK              3758
HS_MSK                 12  0-35    KS_HS_BLOCK              3768
HS_ONE                  7  0-35    KS_HS_BLOCK              3765
HS_PC                   1  0-35    KS_HS_BLOCK              3759
HS_PI                  14  0-35    KS_HS_BLOCK              3770
HS_T0                  16  0-35    KS_HS_BLOCK              3772
HS_T1                  17  0-35    KS_HS_BLOCK              3773
HS_UBR                 11  0-35    KS_HS_BLOCK              3767
HS_VMA                 20  0-35    KS_HS_BLOCK              3774
HS_X1                  15  0-35    KS_HS_BLOCK              3771
HUNG_DEVICE             4  2       MASSBUS_ERR_10            496
H_COM_ERROR            **  7       ER1                      4441
H_COM_ERROR            **  7       RMER1                    4668
H_COM_INH              **  10      OF                       4510
H_COM_INH              **  10      RMOF                     4737
H_CRC_ERROR            **  8       RMER1                    4667
ICR                    38  0-35    MASSBUS_ERR_20           1435
ILLEGAL_P              **  02      RPSTA                    2807
ILL_0                  **  0       RILL                     2743
ILL_1                  **  1       RILL                     2755
ILL_2                  **  2       RILL                     2756
ILL_3                  **  3       RILL                     2757
ILL_4                  **  4       RILL                     2758
ILL_5                  **  5       RILL                     2759
ILL_6                  **  6       RILL                     2760
ILL_7                  **  7       RILL                     2761
ILL_FUNCT              **  0       ER1                      4448
ILL_FUNCT              **  0       RMER1                    4675
ILL_REG                **  1       ER1                      4447
ILL_REG                **  1       RMER1                    4674
ILR_CAS                **  04      CASSTA                   3095
INDEX_ERROR            **  11      ER2                      4537
INITIAL_CONTROL_WORD    4  0-35    CHANNEL_ERROR_REPORT_10   388
INIT_CHN_COMMAND        0  0-35    CHN_LOGOUT               1951
INIT_CNTRL_REG         33  0-35    DX20_ERR_10               596
INIT_CNTRL_REG         38  0-35    MASSBUS_ERR_20           1436
INTCOD                  0  2-9     TM78_SENSE_BYTES         2437
INTR_ENAB              **  6       RMCS1                    4638
INTSTA                 11  20-27   TM78_SENSE_BYTES         2483
INT_CODE               **  7 -     INTCOD                   2509
INT_REQ                **  32      APR_STATUS               3972
INVLD_CMD              **  12      RMER2                    4761
IN_READY               **  6       RH11_RMCS2               4364
IORB_STATUS            18  0-35    MASSBUS_ERR_20           1406
IO_PAGE_FAIL           **  26      APR_STATUS               3966
I_ADR_ERROR            **  10      ER1                      4438
I_ADR_ERROR            **  10      RMER1                    4665
JOB_AFFECTED_COUNT      4  0-35    OLD_CPU_NXM_ERR_10        274
JOB_NUMBER              0  0-17    ERROR_LOG                3707
JOB_NUMBER              0  18-35   FE_DATA                  3722
JOB_NUMBER              1  0-35    SOFTWARE_EVENT_10         613
JOB_NUMBER              4  18-35   CPU_PAR_TRAP_20          1587
JOB_NUMBER              6  0-35    MONITOR_BUG_DATA_20      1336
JOB_NUMBER             10  0-35    MONITOR_BUG_DATA_10       234
JOB_STOP_TALLY         14  0-35    MONITOR_BUG_DATA_10       238
KAEADR                 17  0-35    KL_ADDRESS_FAIL_10       1234
KAEADR                 17  0-35    OLD_KL_ADDRESS_FAIL_10   1201
KAEAFT                 16  0-35    KL_ADDRESS_FAIL_10       1232
KAEAFT                 16  0-35    OLD_KL_ADDRESS_FAIL_10   1200
KAEBEF                 15  0-35    KL_ADDRESS_FAIL_10       1230
KAEBEF                 15  0-35    OLD_KL_ADDRESS_FAIL_10   1199
KAECNI                 20  0-35    KL_ADDRESS_FAIL_10       1238
KAECNI                 20  0-35    OLD_KL_ADDRESS_FAIL_10   1204
KAEERA                 21  0-35    KL_ADDRESS_FAIL_10       1239
KAEERA                 21  0-35    OLD_KL_ADDRESS_FAIL_10   1205
KAEKPG                 14  0-35    KL_ADDRESS_FAIL_10       1229
KAEKPG                 14  0-35    OLD_KL_ADDRESS_FAIL_10   1198
KAELNA                  6  0-35    KL_ADDRESS_FAIL_10       1221
KAELNA                  6  0-35    OLD_KL_ADDRESS_FAIL_10   1190
KAEMNA                  5  0-35    KL_ADDRESS_FAIL_10       1220
KAEMNA                  5  0-35    OLD_KL_ADDRESS_FAIL_10   1189
KAEMNR                  7  0-35    KL_ADDRESS_FAIL_10       1222
KAEMNR                  7  0-35    OLD_KL_ADDRESS_FAIL_10   1191
KAEMPP                  3  0-35    KL_ADDRESS_FAIL_10       1218
KAEMPP                  3  0-35    OLD_KL_ADDRESS_FAIL_10   1187
KAENAA                 11  0-35    KL_ADDRESS_FAIL_10       1226
KAENAA                 11  0-35    OLD_KL_ADDRESS_FAIL_10   1195
KAENAM                  0  0-35    KL_ADDRESS_FAIL_10       1215
KAENAM                  0  0-35    OLD_KL_ADDRESS_FAIL_10   1184
KAENCS                 13  0-35    KL_ADDRESS_FAIL_10       1228
KAENCS                 13  0-35    OLD_KL_ADDRESS_FAIL_10   1197
KAENJA                  4  0-35    KL_ADDRESS_FAIL_10       1219
KAENJA                  4  0-35    OLD_KL_ADDRESS_FAIL_10   1188
KAENOA                 12  0-35    KL_ADDRESS_FAIL_10       1227
KAENOA                 12  0-35    OLD_KL_ADDRESS_FAIL_10   1196
KAENSC                  9  0-35    KL_ADDRESS_FAIL_10       1224
KAENSC                  9  0-35    OLD_KL_ADDRESS_FAIL_10   1193
KAENTS                  8  0-35    KL_ADDRESS_FAIL_10       1223
KAENTS                  8  0-35    OLD_KL_ADDRESS_FAIL_10   1192
KAEPGM                 19  0-35    KL_ADDRESS_FAIL_10       1237
KAEPGM                 19  0-35    OLD_KL_ADDRESS_FAIL_10   1203
KAEPPN                 18  0-35    KL_ADDRESS_FAIL_10       1236
KAEPPN                 18  0-35    OLD_KL_ADDRESS_FAIL_10   1202
KAESBD                 22  0-35    KL_ADDRESS_FAIL_10       1240
KAESBD                 22  0-35    OLD_KL_ADDRESS_FAIL_10   1206
KAESNE                  2  0-35    KL_ADDRESS_FAIL_10       1217
KAESNE                  2  0-35    OLD_KL_ADDRESS_FAIL_10   1186
KAETNE                  1  0-35    KL_ADDRESS_FAIL_10       1216
KAETNE                  1  0-35    OLD_KL_ADDRESS_FAIL_10   1185
KAEUEN                 10  0-35    KL_ADDRESS_FAIL_10       1225
KAEUEN                 10  0-35    OLD_KL_ADDRESS_FAIL_10   1194
KDICNI                 11  0-35    OLD_CPU_PAR_INT_10       1073
KDIERA                 12  0-35    OLD_CPU_PAR_INT_10       1074
KDIMPA                  6  0-35    OLD_CPU_PAR_INT_10       1068
KDIMPC                  3  0-35    OLD_CPU_PAR_INT_10       1065
KDIMPP                  4  0-35    OLD_CPU_PAR_INT_10       1066
KDIMPT                  8  0-35    OLD_CPU_PAR_INT_10       1070
KDIMPW                  5  0-35    OLD_CPU_PAR_INT_10       1067
KDINAM                  0  0-35    OLD_CPU_PAR_INT_10       1062
KDIPAR                  7  0-35    OLD_CPU_PAR_INT_10       1069
KDIPGM                 10  0-35    OLD_CPU_PAR_INT_10       1072
KDIPPN                  9  0-35    OLD_CPU_PAR_INT_10       1071
KDISBD                 13  0-35    OLD_CPU_PAR_INT_10       1075
KDISPE                  2  0-35    OLD_CPU_PAR_INT_10       1064
KDITPE                  1  0-35    OLD_CPU_PAR_INT_10       1063
KEYPAD_FLAG            **  7 -     ENAON                    3567
KIIAPR                  2  0-35    KI_PAR_NXM_INT_10         939
KIINAM                  0  0-35    KI_PAR_NXM_INT_10         937
KIIPCI                  1  0-35    KI_PAR_NXM_INT_10         938
KIIPGM                  5  0-35    KI_PAR_NXM_INT_10         942
KIIPII                  3  0-35    KI_PAR_NXM_INT_10         940
KIIPPN                  4  0-35    KI_PAR_NXM_INT_10         941
KL10_PAGED             **  21      PAGE_STATUS              4016
KLER_BLOCK              0  16-31   FE_SUB                   3748
KLER_BLOCK_CNT          1  0-15    FE_SUB                   3749
KLER_FIRST_WORD         1  16-31   FE_SUB                   3750
KON_NUMBER              5  0-17    USAGE_DATA_20            1477
KON_NUMBER             34  0-17    MASSBUS_ERR_20           1428
KSNBDW                  4  0-35    KS_NXM_TRAP_10            972
KSNGDW                  8  0-35    KS_NXM_TRAP_10            976
KSNNAM                  0  0-35    KS_NXM_TRAP_10            968
KSNNNT                 11  0-35    KS_NXM_TRAP_10            982
KSNNRT                 10  0-35    KS_NXM_TRAP_10            981
KSNPCT                  1  0-35    KS_NXM_TRAP_10            969
KSNPFW                  2  0-35    KS_NXM_TRAP_10            970
KSNPGM                  7  0-35    KS_NXM_TRAP_10            975
KSNPIT                  5  0-35    KS_NXM_TRAP_10            973
KSNPMA                  3  0-35    KS_NXM_TRAP_10            971
KSNPPN                  6  0-35    KS_NXM_TRAP_10            974
KSNRET                  9  0-35    KS_NXM_TRAP_10            977
KS_HS_BLOCK             2  BODY    KS_HALT_STATUS_10         819
KS_HS_BLOCK             2  BODY    KS_HALT_STATUS_20        1568
LAST_ADDRESS            4  0-35    NXM_MEMORY_SWEEP_10      1029
LAST_ADDRESS            4  0-35    OLD_CPU_NXM_ERR_10        276
LAST_BLOCK             **  10      RMDS                     4650
LAST_CMD               34  18-35   MASSBUS_ERR_10            532
LAST_COMMAND            2  0-35    CHN_LOGOUT               1953
LAST_COMMAND            3  0-35    CSB_TM02                 2094
LAST_COMMAND            5  0-35    CSB_TM78                 2129
LAST_CW                 8  0-35    CHANNEL_ERROR_REPORT_10   392
LAST_CW_MINUS_1         7  0-35    CHANNEL_ERROR_REPORT_10   391
LAST_CW_MINUS_2         6  0-35    CHANNEL_ERROR_REPORT_10   390
LAST_DATA              11  0-35    CHANNEL_ERROR_REPORT_10   395
LAST_DATA_MINUS_1      10  0-35    CHANNEL_ERROR_REPORT_10   394
LAST_DATA_MINUS_2       9  0-35    CHANNEL_ERROR_REPORT_10   393
LAST_MUUO               5  0-35    KL_CPU_STATUS_10         1145
LAST_MUUO               6  0-35    KL_CPU_STATUS_20         1662
LAST_MUUO_PC            6  0-35    KL_CPU_STATUS_10         1146
LAST_MUUO_PC            7  0-35    KL_CPU_STATUS_20         1663
LAST_REL_ADDRESS        1  0-35    PAR_SWEEP_DATA           3847
LAST_SECT              **  10      DS                       4418
LAST_SECTR             **  2       RMMR1                    4693
LAST_SWEEP_COUNT        2  0-35    PAR_SWEEP_DATA           3848
LAST_S_T               **  1       RMMR1                    4694
LBN                     3  0-35    MASSBUS_ERR_10            492
LBN                     3  0-35    MASSBUS_ERR_20           1371
LEFT                   **  02      CBUSSTA                  3117
LINE_NUMBER             4  12-23   SOFTWARE_EVENT_10         618
LOAD_REG               **  6       PREP_REG                 4308
LOG_TEXT                4  0-35    ERROR_LOG                3712
LONG_WCE               **  20      CONI_STATUS              4234
LOOK_SYNC              **  10      RMMR1                    4685
LOSS_CHK               **  10      RMER2                    4763
LOSS_CLK               **  11      RMER2                    4762
LO_RD_TH               **  07      XFRCTL                   3549
LPTCNI                  1  0-35    LP100_ERR_10             1252
LPTNAM                  0  0-35    LP100_ERR_10             1251
LPTTYP                  3  0-35    LP100_ERR_10             1254
LPTWRD                  2  0-35    LP100_ERR_10             1253
LWR                    **  02      MIAA_STAT                3401
MAGFCC                  6  0-35    OLD_TAPE_ERR_10           702
MAGFCS                  7  0-35    OLD_TAPE_ERR_10           703
MAGFFB                  2  0-35    OLD_TAPE_ERR_10           698
MAGICC                  4  0-35    OLD_TAPE_ERR_10           700
MAGICS                  5  0-35    OLD_TAPE_ERR_10           701
MAGMED                  9  0-35    OLD_TAPE_ERR_10           706
MAGNAM                  0  0-35    OLD_TAPE_ERR_10           696
MAGRFF                  3  0-35    OLD_TAPE_ERR_10           699
MAGRID                  1  0-35    OLD_TAPE_ERR_10           697
MAGRTC                  8  0-35    OLD_TAPE_ERR_10           704
MAINT_CLOCK            **  1       MR                       4462
MAINT_INDEX            **  2       MR                       4461
MAINT_READ             **  4       MR                       4459
MAINT_SCLK             **  3       MR                       4460
MAINT_WRITE            **  5       MR                       4458
MAN_TEST               **  07      MIAA_STAT                3411
MASSBUS_DATA           **  7 -     DDR_A                    3304
MASSBUS_DATA_B         **  7 -     DDR_B                    3314
MASTER_OSC             **  22      APR_STATUS               3963
MBATTN                 **  07      CBUSSTA                  3125
MBD                    **  2-0     WMCERR                   3325
MBDEM                  **  05      CBUSSTA                  3123
MBEBL                  **  04      DBUSSTA                  3137
MBEXC                  **  03      DBUSSTA                  3136
MBFAIL                 **  03      CBUSSTA                  3119
MBINIT                 **  04      CBUSSTA                  3122
MBOCC                  **  05      DBUSSTA                  3138
MBRUN                  **  02      DBUSSTA                  3135
MBSCLK                 **  00      DBUSSTA                  3133
MBSEL                  **  07      INTSTA                   3365
MBTRA                  **  06      CBUSSTA                  3124
MBUS_AIE               **  30      CONI_STATUS              4224
MBUS_ATTN              **  28      CONI_STATUS              4226
MBUS_DPE               **  8       RH11_RMCS2               4362
MBUS_ENAB              **  27      CONI_STATUS              4227
MBUS_ENAB              **  27      CONO                     4319
MBWCLK                 **  06      DBUSSTA                  3139
MBWREN                 **  07      DBUSSTA                  3140
MB_AS                   8  18-35   CSB_TM02                 2104
MB_AS_END               4  0-17    MB_DEV                   3795
MB_AS_ERR               4  18-35   MB_DEV                   3796
MB_A_OUT               **  03      INTSTA                   3355
MB_B_OUT               **  02      INTSTA                   3354
MB_CC_END              11  0-17    MB_DEV                   3815
MB_CC_ERR              11  18-35   MB_DEV                   3816
MB_CHK_SUM             11  18-35   CSB_TM02                 2110
MB_CHK_SUM_END          7  0-17    MB_DEV                   3805
MB_CHK_SUM_ERR          7  18-35   MB_DEV                   3806
MB_CR                   4  18-35   CSB_TM02                 2096
MB_CR_END               0  0-17    MB_DEV                   3785
MB_CR_ERR               0  18-35   MB_DEV                   3786
MB_DA_END               5  0-17    MB_DEV                   3797
MB_DA_ERR               5  18-35   MB_DEV                   3798
MB_DC_END              10  0-17    MB_DEV                   3813
MB_DC_ERR              10  18-35   MB_DEV                   3814
MB_DEVICE_REG          18  BODY    MASSBUS_ERR_10            529
MB_DEV_TABLE           39  BODY    MASSBUS_ERR_20           1437
MB_DS                   5  18-35   CSB_TM02                 2098
MB_DS_END               1  0-17    MB_DEV                   3787
MB_DS_ERR               1  18-35   MB_DEV                   3788
MB_DT                  10  18-35   CSB_TM02                 2108
MB_DT_END               6  0-17    MB_DEV                   3801
MB_DT_ERR               6  18-35   MB_DEV                   3802
MB_ECC1_END            14  0-17    MB_DEV                   3821
MB_ECC1_ERR            14  18-35   MB_DEV                   3822
MB_ECC2_END            15  0-17    MB_DEV                   3823
MB_ECC2_ERR            15  18-35   MB_DEV                   3824
MB_ER1_END              2  0-17    MB_DEV                   3789
MB_ER1_ERR              2  18-35   MB_DEV                   3790
MB_ER2_END             12  0-17    MB_DEV                   3817
MB_ER2_ERR             12  18-35   MB_DEV                   3818
MB_ER3_END             13  0-17    MB_DEV                   3819
MB_ER3_ERR             13  18-35   MB_DEV                   3820
MB_ERR                  6  18-35   CSB_TM02                 2100
MB_ERR_END              2  0-17    MB_DEV                   3791
MB_ERR_ERR              2  18-35   MB_DEV                   3792
MB_FR_CNT               9  18-35   CSB_TM02                 2106
MB_FR_CNT_END           5  0-17    MB_DEV                   3799
MB_FR_CNT_ERR           5  18-35   MB_DEV                   3800
MB_LA_END               7  0-17    MB_DEV                   3803
MB_LA_ERR               7  18-35   MB_DEV                   3804
MB_MR                   7  18-35   CSB_TM02                 2102
MB_MR_END               3  0-17    MB_DEV                   3793
MB_MR_ERR               3  18-35   MB_DEV                   3794
MB_OF_END               9  0-17    MB_DEV                   3809
MB_OF_ERR               9  18-35   MB_DEV                   3810
MB_PAR                 **  27      APR_STATUS               3967
MB_SN                  12  18-35   CSB_TM02                 2112
MB_SN_END               8  0-17    MB_DEV                   3807
MB_SN_ERR               8  18-35   MB_DEV                   3808
MB_TC                  13  18-35   CSB_TM02                 2114
MB_TC_END               9  0-17    MB_DEV                   3811
MB_TC_ERR               9  18-35   MB_DEV                   3812
MD                     16  0-35    CSB_DX10                 2032
MEDIAID                 1  0-35    DX20_ERR_10               550
MEDIAID                 1  0-35    MASSBUS_ERR_20           1368
MEDIAID                 1  0-35    OLD_TAPE_STATS_10         866
MEDIAID                 1  0-35    TAPE_ERR_10               718
MEM_PAR_ERRORS          1  0-35    CPU_PAR_INT_10           1115
MEM_PAR_ERRORS          4  0-35    CPU_PAR_INT_20           1632
MF_20_TEXT              0  0-35    MF_20_ERR_20             1686
MIAA_STAT              12  2-9     TM78_SENSE_BYTES         2485
MIAB_STAT              12  28-35   TM78_SENSE_BYTES         2486
MICRO_CODE_VER_NO      34  0-35    DX20_ERR_10               597
MISS_XFER              **  9       RH11_RMCS2               4361
MK2P                   **  03      RPSTA                    2808
MK2_0                  **  0       RMK2                     2769
MK2_1                  **  1       RMK2                     2776
MK2_2                  **  2       RMK2                     2777
MK2_3                  **  3       RMK2                     2778
MK2_4                  **  4       RMK2                     2779
MK2_5                  **  5       RMK2                     2780
MK2_6                  **  6       RMK2                     2781
MK2_7                  **  7       RMK2                     2782
MODE                   **  0       PAGE_FAIL_WORD           3987
MOL                    **  12      DS                       4416
MOL                    **  12      RMDS                     4648
MONITOR                **  2       SINK_FLAGS               4829
MONITOR_VERSION         2  0-35    MONITOR_BUG_DATA_20      1324
MONITOR_VERSION         2  0-35    SYSTEM_RELOAD_20         1302
MONITOR_VERSION         8  0-35    MONITOR_BUG_DATA_10       231
MONITOR_VERSION         8  0-35    SYSTEM_RELOAD_10          207
MOT                    **  01      MIAA_STAT                3400
MOVE_HEAD              **  13      DT                       4488
MOVE_HEAD              **  13      RMDT                     4718
MPA_CAS_20             16  0-17    TM78_CAS_REGS            2194
MPA_CAS_20             16  18-35   TM78_CAS_REGS            2194
MPD_CAS_21             17  0-17    TM78_CAS_REGS            2198
MPD_CAS_21             17  18-35   TM78_CAS_REGS            2198
MPD_CM_PE              **  13      MPD_CAS_21               2408
MPD_CPE                **  11      MPD_CAS_21               2412
MPD_EV_PAR             **  10      MPD_CAS_21               2415
MPD_HLDA               **  09      MPD_CAS_21               2418
MPD_HOLD               **  08      MPD_CAS_21               2421
MPD_ILR                **  12      MPD_CAS_21               2410
MPD_INT_DATA           **  07-00   MPD_CAS_21               2423
MPD_TM_CLR             **  14      MPD_CAS_21               2404
MPD_TM_RDY             **  15      MPD_CAS_21               2401
MPE_CNT                28  0-35    DX20_ERR_10               591
MPE_CNT                30  0-35    MASSBUS_ERR_20           1421
MR1                    19  0-35    CSB_DX10                 2035
MTOPR_FUNCTION          3  0-35    CONFIG_CHANGE_20         1502
MULTIPLE_FIELD         **  6       DATA_TYPE                4874
MULTI_H_SEL            **  9       ER2                      4543
MUST_BE_ONES           **  0-2     PAGE_DATAI               3978
MUUO_CONTEXT_WORD       7  0-35    KL_CPU_STATUS_10         1147
MUUO_CONTEXT_WORD       8  0-35    KL_CPU_STATUS_20         1664
MUUO_RESERVED           5  0-35    KL_CPU_STATUS_20         1661
MUUO_RESERVED           8  0-35    KL_CPU_STATUS_10         1148
NC1_CAS_14             12  0-17    TM78_CAS_REGS            2186
NC1_CAS_14             12  18-35   TM78_CAS_REGS            2186
NC2_CAS_15             13  0-17    TM78_CAS_REGS            2191
NC2_CAS_15             13  18-35   TM78_CAS_REGS            2191
NC2_CMD_CNT1           **  15-08   NC2_CAS_15               2384
NC3_CAS_16             14  0-17    TM78_CAS_REGS            2192
NC3_CAS_16             14  18-35   TM78_CAS_REGS            2192
NC3_FUNC_CODE2         **  05-01   NC3_CAS_16               2390
NC4_CAS_17             15  0-17    TM78_CAS_REGS            2193
NC4_CAS_17             15  18-35   TM78_CAS_REGS            2193
NC4_CMD_CNT3           **  15-08   NC4_CAS_17               2395
NC4_FUNC_CODE3         **  05-01   NC4_CAS_17               2396
NDT                    **  03      TUX                      3512
NEG_BLK_CNT            **  20-29   PTCR                     4267
NEG_BLK_CNT            **  20-29   STCR                     4251
NEG_FUNCTION_COUNT      0  0-17    SBDIAG_LIST              3893
NETCON_VERSION          0  0-35    NETCON_START             1696
NODE_NAME               1  0-35    CONFIG_CHANGE_10          650
NODE_NAME               1  MAIN$Z  NETCON_START             1697
NODE_NUMBER             0  0-35    CONFIG_CHANGE_10          645
NODE_NUMBER             4  0-11    SOFTWARE_EVENT_10         617
NON_RECOVERABLE         4  1       DX20_ERR_10               560
NON_X_DRIVE            **  12      RH11_RMCS2               4358
NOT_DONE_0             **  0       RDON                     2713
NOT_DONE_1             **  1       RDON                     2716
NOT_DONE_2             **  2       RDON                     2719
NOT_DONE_3             **  3       RDON                     2722
NOT_DONE_4             **  4       RDON                     2725
NOT_DONE_5             **  5       RDON                     2728
NOT_DONE_6             **  6       RDON                     2731
NOT_DONE_7             **  7       RDON                     2734
NOT_DONE_P             **  01      RPSTA                    2806
NOT_KL_FLAG             9  0       KL_OR_KS_PAR_TRAP_10     1003
NOT_RECOVERED_COUNT     6  0-35    CPU_PAR_TRAP_10          1101
NOT_RECOVERED_COUNT    11  0-35    KL_OR_KS_PAR_TRAP_10     1013
NOT_RECOVERED_FLAG      4  1       CPU_PAR_TRAP_10          1092
NOT_RECOVERED_FLAG      7  1       CPU_PAR_TRAP_20          1591
NOT_RECOVERED_FLAG      9  1       KL_OR_KS_PAR_TRAP_10     1004
NOT_WR                 **  06      TUDIAG                   3475
NO_BLK_ADR             **  15      DT                       4486
NO_FRAMES_READ          2  0-35    OLD_TAPE_STATS_10         867
NO_FRAMES_WRITTEN       3  0-35    OLD_TAPE_STATS_10         868
NO_H_SEL               **  10      ER2                      4540
NST_CAS_13             11  0-17    TM78_CAS_REGS            2185
NST_CAS_13             11  18-35   TM78_CAS_REGS            2185
NTHUNG_CNT              6  0-8     DSCSBP                   3589
NTHUNG_CNT              9  0-8     MASSBUS_ERR_10            510
NUMBER_IO_INSTR         0  0-17    DEVICE_STATUS_10         1171
NUMBER_OF_RESULTS       1  0-17    DEVICE_STATUS_10         1173
NXM                    **  11      RH11_RMCS2               4359
NXM_CNT                29  0-35    DX20_ERR_10               592
NXM_CNT                31  0-35    MASSBUS_ERR_20           1422
NXM_OVRN_COUNT          1  0-35    CHANNEL_ERROR_REPORT_10   385
NXM_TAB                13  HEAD    SYSTEM_RELOAD_10          217
NXM_TAB_AFTER           1  HEAD    CONFIG_CHANGE_10          647
NXM_TAB_AFTER_ERR      14  HEAD    NXM_MEMORY_SWEEP_10      1040
NXM_TAB_AFTER_ERR      16  HEAD    OLD_CPU_NXM_ERR_10        288
NXM_TAB_BEFORE          0  HEAD    CONFIG_CHANGE_10          642
NXM_TAB_BEFORE_ERR     13  HEAD    NXM_MEMORY_SWEEP_10      1039
NXM_TAB_BEFORE_ERR     15  HEAD    OLD_CPU_NXM_ERR_10        287
NXM_WORD                0  0-35    NXM_TAB                  3833
OCCUP                  **  15      RMMR1                    4680
OFFSET                 **  7-0     OF                       4511
OFFSET_DIRTN           **  7       RMOF                     4738
OFF_CYL                **  15      ER3                      4572
OFSET_MODE             **  0       RMDS                     4655
ONL                    **  05      TUSTAT                   3380
ONLINE                 **  00      CBUSSTA                  3113
OPERATOR_COMMENTS      11  0-35    SYSTEM_RELOAD_10          213
OPER_INC               **  13      ER1                      4435
OPER_INC               **  13      RMER1                    4662
OPER_PLUG              **  13      RMER2                    4760
OPP                    **  07      RET2_CNT                 3501
OUTPUT_FORMAT          **  5-4     DATA_TYPE                4868
OUT_READY              **  7       RH11_RMCS2               4363
OVERRUN_ERR            32  0-35    DX20_ERR_10               595
OVERRUN_ERR            37  0-35    MASSBUS_ERR_20           1434
OVER_RUN               **  26      CONI_STATUS              4228
PACK_DATA              **  8       RMMR1                    4687
PACK_HEADER            **  7       RMMR1                    4688
PAD1_CNT               10  10-17   TM78_SENSE_BYTES         2476
PAD2_CNT               10  2-9     TM78_SENSE_BYTES         2477
PAD_CNT                **  7 -     PAD1_CNT                 3261
PAD_CNT                **  7 -     PAD2_CNT                 3269
PAGE_DATAI              3  0-35    KL_CPU_STATUS_10         1143
PAGE_DATAI              3  0-35    KL_CPU_STATUS_20         1659
PAGE_DATAI             37  0-35    MONITOR_BUG_DATA_20      1353
PAGE_FAIL_FLAGS        87  0-35    KL_CPU_STATUS_20         1671
PAGE_FAIL_NEW_PC       88  0-35    KL_CPU_STATUS_10         1156
PAGE_FAIL_NEW_PC       89  0-35    KL_CPU_STATUS_20         1673
PAGE_FAIL_OLD_PC       87  0-35    KL_CPU_STATUS_10         1155
PAGE_FAIL_OLD_PC       88  0-35    KL_CPU_STATUS_20         1672
PAGE_FAIL_WORD          0  0-35    CPU_PAR_TRAP_10          1087
PAGE_FAIL_WORD          0  0-35    CPU_PAR_TRAP_20          1582
PAGE_FAIL_WORD          2  0-35    KL_OR_KS_PAR_TRAP_10      996
PAGE_FAIL_WORD         86  0-35    KL_CPU_STATUS_10         1154
PAGE_FAIL_WORD         86  0-35    KL_CPU_STATUS_20         1670
PAGE_STATUS             4  0-35    KL_CPU_STATUS_10         1144
PAGE_STATUS             4  0-35    KL_CPU_STATUS_20         1660
PAGE_STATUS            36  0-35    MONITOR_BUG_DATA_20      1352
PARAMETER_COUNTER_FLAG **  15      DATA_ID                  4844
PARAMETER_TYPE         **  11-0    DATA_ID                  4848
PARENT_HDWR_TYPE        4  10-17   NET_HARDWARE_ERR         1756
PARENT_SFWR_TYPE        4  20-27   NET_HARDWARE_ERR         1757
PAR_BIT                **  17      RR                       4280
PAR_BIT                **  17      WR                       4287
PAR_ERROR              **  3       ER1                      4445
PAR_ERROR              **  3       RMER1                    4672
PAR_SWEEP_DATA          5  HEAD    PAR_MEMORY_SWEEP_10      1051
PAR_SWEEP_DATA          7  HEAD    CPU_PAR_INT_10           1121
PAR_SWEEP_DATA          7  HEAD    OLD_CPU_MEM_PAR_ERR_10    258
PAR_TEST               **  4       RH11_RMCS2               4366
PBAR                    2  0-35    CSB_TM02                 2091
PBAR                    4  0-35    CSB_TM78                 2128
PC_FLAGS                2  0-35    CPU_PAR_INT_20           1630
PEC                    **  6       MIAB_STAT                3435
PEGCRTK                **  03      CH0TIE                   2904
PEGCRTK                **  03      CH1TIE                   2918
PEGCRTK                **  03      CH2TIE                   2933
PEGCRTK                **  03      CH3TIE                   2949
PEGCRTK                **  03      CH4TIE                   2965
PEGCRTK                **  03      CH5TIE                   2981
PEGCRTK                **  03      CH6TIE                   2996
PEGCRTK                **  03      CH7TIE                   3012
PEGCRTK                **  03      CHPTIE                   3027
PES                    **  03      TUSTAT                   3378
PE_WR_PE               **  01      INTSTA                   3351
PF_CODE                **  1-5     PAGE_FAIL_WORD           3999
PHTIE0                 **  01      CH0TIE                   2902
PHTIE1                 **  01      CH1TIE                   2916
PHTIE2                 **  01      CH2TIE                   2931
PHTIE3                 **  01      CH3TIE                   2947
PHTIE4                 **  01      CH4TIE                   2963
PHTIE5                 **  01      CH5TIE                   2979
PHTIE6                 **  01      CH6TIE                   2994
PHTIE7                 **  01      CH7TIE                   3010
PHTIEP                 **  01      CHPTIE                   3025
PHUNG_CNT               5  18-26   OLD_DISK_STATS_10         839
PHUNG_CNT               6  18-26   DSCSBP                   3591
PHUNG_CNT               9  18-26   MASSBUS_ERR_10            512
PHYS_ADDRESS            3  0-35    CPU_PAR_TRAP_10          1090
PHYS_ADDRESS            3  0-35    KL_OR_KS_PAR_TRAP_10      997
PHYS_ADDRESS            6  0-35    CPU_PAR_TRAP_20          1589
PIA                    **  33-35   CONI_STATUS              4221
PIA                    **  33-35   CONO                     4325
PIP                    **  13      DS                       4415
PIP                    **  13      RMDS                     4647
PI_AAD                  4  0-35    OLD_CPU_PAR_INT_20       1610
PI_ADA                  6  0-35    OLD_CPU_PAR_INT_20       1612
PI_ADD                 22  0-35    OLD_CPU_PAR_INT_20       1615
PI_CDA                 46  0-35    OLD_CPU_PAR_INT_20       1617
PI_CHANNELS_ON         **  29-35   PI_STATUS                4029
PI_CNI                  0  0-35    OLD_CPU_PAR_INT_20       1606
PI_DAT                 34  0-35    OLD_CPU_PAR_INT_20       1616
PI_ERA                  1  0-35    OLD_CPU_PAR_INT_20       1607
PI_FPC                  2  0-35    OLD_CPU_PAR_INT_20       1608
PI_IN_PROGRESS         **  21-27   PI_STATUS                4027
PI_LEVEL               **  33-35   APR_STATUS               3973
PI_OAD                  5  0-35    OLD_CPU_PAR_INT_20       1611
PI_ODA                  7  0-35    OLD_CPU_PAR_INT_20       1613
PI_REQUESTS            **  11-17   PI_STATUS                4023
PI_SBD                 10  0-35    OLD_CPU_PAR_INT_20       1614
PI_STATUS               2  0-35    KL_CPU_STATUS_10         1142
PI_STATUS               2  0-35    KL_CPU_STATUS_20         1658
PI_STATUS               3  0-35    KL_PAR_NXM_INT_10         957
PI_STATUS               5  0-35    KL_OR_KS_PAR_TRAP_10      999
PI_STATUS              26  0-35    MONITOR_BUG_DATA_20      1342
PI_STATUS              32  0-35    MONITOR_BUG_DATA_10       242
PI_SWP                  3  0-35    OLD_CPU_PAR_INT_20       1609
PI_SYS_ON              **  28      PI_STATUS                4028
PLO_BP                 **  06      XFRCTL                   3546
PLO_UNS                **  13      ER2                      4531
PM                     **  03      ECCSTA                   2884
PORT                   **  07      TUX                      3520
PORTSEL_MIA            **  2-0     MIAB_STAT                3419
PORT_SEL               **  10      RMCS1                    4635
POSITION_ERR            4  5       MASSBUS_ERR_20           1382
POST_0                 **  0       RPOSTN                   2822
POST_1                 **  1       RPOSTN                   2828
POST_2                 **  2       RPOSTN                   2829
POST_3                 **  3       RPOSTN                   2830
POST_4                 **  4       RPOSTN                   2831
POST_5                 **  5       RPOSTN                   2832
POST_6                 **  6       RPOSTN                   2833
POST_7                 **  7       RPOSTN                   2834
POST_P                 **  05      RPSTA                    2810
PPN                     8  0-35    OLD_TAPE_STATS_10         873
PPN                    10  0-35    TAPE_ERR_10               762
PRDD                    7  28-35   TM78_SENSE_BYTES         2466
PREAMBLE_ERR           **  05      RPATH                    2598
PRES_TUX               **  02      TUX                      3511
PREV_BLOCK             **  9-11    PAGE_DATAI               3980
PREV_CONTEXT           **  13-17   PAGE_DATAI               3981
PRI_CFL                **  31      CONI_STATUS              4223
PROGRAM_COUNTER         1  0-35    KL_OR_KS_PAR_TRAP_10      995
PROGRAM_COUNTER         1  0-35    KL_PAR_NXM_INT_10         955
PROGRAM_COUNTER         3  0-35    CPU_PAR_INT_20           1631
PROGRAM_COUNTER         3  0-35    OLD_CPU_NXM_ERR_10        273
PROGRAM_COUNTER         4  0-35    CPU_PAR_INT_10           1118
PROGRAM_COUNTER         4  0-35    OLD_CPU_MEM_PAR_ERR_10    255
PROGRAM_COUNTER         7  0-35    CPU_PAR_TRAP_10          1102
PROGRAM_NAME            2  MAIN$Z  NETCON_START             1698
PROGRAM_NAME            3  0-35    FE_DATA                  3725
PROGRAM_NAME            3  0-35    SOFTWARE_EVENT_10         615
PROGRAM_NAME            5  0-35    CPU_PAR_TRAP_20          1588
PROGRAM_NAME            5  MAIN$Z  NODE_DOWN_LINE_DUMP      1743
PROGRAM_NAME            5  MAIN$Z  NODE_DOWN_LINE_LOAD      1708
PROGRAM_NAME            7  0-35    KL_OR_KS_PAR_TRAP_10     1001
PROGRAM_NAME            8  0-35    MONITOR_BUG_DATA_20      1338
PROGRAM_NAME           10  0-35    CPU_PAR_INT_10           1124
PROGRAM_NAME           10  0-35    OLD_CPU_MEM_PAR_ERR_10    261
PROGRAM_NAME           11  0-35    TAPE_ERR_10               763
PROGRAM_NAME           12  0-35    MONITOR_BUG_DATA_10       236
PROGRAM_NAME           19  0-35    OLD_CPU_NXM_ERR_10        291
PROGRAM_RUN            12  0-35    DX20_ERR_10               571
PROGRAM_RUN            12  0-35    MASSBUS_ERR_20           1395
PROGRAM_RUN            13  0-35    MASSBUS_ERR_10            519
PROG_ABLE              **  9       DS                       4419
PROG_ABLE              **  9       RMDS                     4651
PROG_ERROR             **  10      RH11_RMCS2               4360
PROJ_PROG_NO           12  0-35    MASSBUS_ERR_10            517
PROM_STROB             **  5       RMMR1                    4690
PSTAT                   7  2-9     TM78_SENSE_BYTES         2465
PTCR                    1  0-35    CSB_TM02                 2087
PTCR                    3  0-35    CSB_TM78                 2127
PUBLIC_MODE            **  6       PAGE_FAIL_WORD           3996
PWR_FAIL               **  30      APR_STATUS               3970
PWR_OK                 **  05      INTSTA                   3360
R1_ERW                  3  0-35    FE_RELOAD_20             1556
R1_FNM                  2  0-35    FE_RELOAD_20             1555
R1_NUM                  0  0-35    FE_RELOAD_20             1534
R1_STS                  1  0-35    FE_RELOAD_20             1535
RAMT                    1  20-27   TM78_SENSE_BYTES         2443
RBC                     0  0-35    CSB_DX10                 1993
RCMLP                   1  28-35   TM78_SENSE_BYTES         2442
RD                     **  06      RET2_CNT                 3500
RDATA                   3  28-35   TM78_SENSE_BYTES         2450
RDC_SEL                **  5-3     XFRCTL                   3538
RDERA_PHYS_ADDRESS     **  14-35   RDERA_STATUS             4046
RDERA_STATUS            1  0-35    CPU_PAR_INT_20           1629
RDERA_STATUS            4  0-35    KL_PAR_NXM_INT_10         958
RDERA_STATUS            9  0-35    KL_CPU_STATUS_10         1149
RDERA_STATUS            9  0-35    KL_CPU_STATUS_20         1665
RDERA_STATUS           12  0-35    CPU_PAR_INT_10           1126
RDERA_STATUS           38  0-35    MONITOR_BUG_DATA_20      1354
RDFILE_SEQNUM           4  0       HEADER                    156
RDON                    2  10-17   TM78_SENSE_BYTES         2444
RDP                    **  01      PSTAT                    3062
RDY_ON                 **  06      TUSTAT                   3382
RD_EN                  **  05      TUDIAG                   3474
RD_GCR                 11  0-35    USAGE_DATA_20            1486
RD_NRZI                 9  0-35    USAGE_DATA_20            1484
RD_PE                  10  0-35    USAGE_DATA_20            1485
RD_WR_UNSF             **  4       ER2                      4558
READY                  **  7       RMCS1                    4637
READ_DATA              **  7-0     PRDD                     3082
READ_WRITE             **  30      DCR                      4298
RECORD_IN_ERROR         3  0-35    TAPE_ERR_10               722
RECORD_IN_ERROR         3  18-35   DX20_ERR_10               557
RECORD_IN_ERROR         3  18-35   MASSBUS_ERR_20           1374
RECOVERED_COUNT         5  0-35    CPU_PAR_TRAP_10          1100
RECOVERED_COUNT        10  0-35    KL_OR_KS_PAR_TRAP_10     1012
RECV_NODE_ID            0  18-35   NET_HARDWARE_ERR         1750
RECV_NODE_NAME          2  MAIN$Z  NET_HARDWARE_ERR         1752
REC_NOMOTION_ERR        4  17      MASSBUS_ERR_20           1384
REDY                   **  07      TUSTAT                   3385
REF_DATA               **  4-6     RDERA_STATUS             4037
REGISTER_COUNT         27  0-35    MONITOR_BUG_DATA_20      1343
REGISTER_FOUR          31  0-35    MONITOR_BUG_DATA_20      1347
REGISTER_ONE           28  0-35    MONITOR_BUG_DATA_20      1344
REGISTER_THREE         30  0-35    MONITOR_BUG_DATA_20      1346
REGISTER_TWO           29  0-35    MONITOR_BUG_DATA_20      1345
REG_A_ERROR            **  24      CONI_STATUS              4230
REG_BEFORE_ERR          6  0-35    TAPE_ERR_10               745
REG_SEL_CODE           **  0-5     PREP_REG                 4307
RELATIVE_ADDRESS        7  0-35    OLD_CPU_NXM_ERR_10        277
RELOAD_FLAGS            6  0-35    SYSTEM_RELOAD_20         1309
REND                    2  20-27   TM78_SENSE_BYTES         2447
REQ_A                  **  15      RMMR2                    4748
REQ_B                  **  14      RMMR2                    4749
RESERVED_WORD           3  0-35    CHN_LOGOUT               1954
RESET_CLP              **  7       PTCR                     4264
RESET_CLP              **  7       STCR                     4248
RES_WMC_DRBUS          **  01      WMCSTA                   3151
RET1_CNT               13  28-35   TM78_SENSE_BYTES         2490
RET2_CNT               13  20-27   TM78_SENSE_BYTES         2491
RETRIEVE_EXTRACT        0  15      HEADER                    138
RETRY_CNT               4  18-35   DX20_ERR_10               564
RETRY_CNT               4  18-35   MASSBUS_ERR_10            501
RETRY_CNT              32  18-35   MASSBUS_ERR_20           1423
RETRY_COUNT             7  18-35   CPU_PAR_TRAP_20          1596
RETURN_CODE             4  28-35   NODE_DOWN_LINE_DUMP      1742
RETURN_CODE             4  28-35   NODE_DOWN_LINE_LOAD      1707
RET_CNT                **  7 -     RET1_CNT                 3484
REV                    **  04      TUX                      3515
REVERSE                **  05      MIAA_STAT                3405
REV_CMD                **  05      RET2_CNT                 3497
REV_LEVEL_0_3          12  0-35    TAPE_ERR_10               766
REV_LEVEL_4_7          13  0-35    TAPE_ERR_10               767
REW                    **  01      TUX                      3510
REW_TU                 **  04      TUSTAT                   3379
RH10_AR_FULL           **  0       CONI_RH10                4188
RH10_ATTN              **  30      CONI_RH10                4209
RH10_BUSY              **  31      CONI_RH10                4210
RH10_CBUS_OVRUN        **  28      CONI_RH10                4207
RH10_CB_FULL           **  1       CONI_RH10                4189
RH10_CC_INH            **  3       CONI_RH10                4190
RH10_CDATA_PE          **  15      CONI_RH10                4196
RH10_CHAN_ACT          **  4       CONI_RH10                4191
RH10_CHAN_ERROR        **  20      CONI_RH10                4201
RH10_CHAN_PLS          **  5       CONI_RH10                4192
RH10_CW_PE             **  16      CONI_RH10                4197
RH10_CW_WRITE          **  21      CONI_RH10                4202
RH10_DBUS_PE           **  18      CONI_RH10                4199
RH10_DF22              **  6       CONI_RH10                4193
RH10_DONE              **  32      CONI_RH10                4211
RH10_DREXC_ERROR       **  19      CONI_RH10                4200
RH10_DR_RE_ERROR       **  23      CONI_RH10                4204
RH10_ILL_CMD           **  24      CONI_RH10                4205
RH10_ILL_FUNCT         **  9       CONI_RH10                4194
RH10_NXM               **  17      CONI_RH10                4198
RH10_OVER_RUN          **  22      CONI_RH10                4203
RH10_POWER_FAIL        **  25      CONI_RH10                4206
RH10_RAE               **  29      CONI_RH10                4208
RH10_SELDR_ADR_E       **  10      CONI_RH10                4195
RH11_MBUS_CPE          **  13      RMCS1                    4632
RH11_SPEC_COND         **  15      RMCS1                    4630
RH11_XFER_ERROR        **  14      RMCS1                    4631
RH20_FLAG               4  11      TAPE_ERR_10               729
RHCS1_ERR               0  2-17    CSB_TM02                 2082
RHCS1_ERR               5  20-35   MASSBUS_ERR_10            504
RHCS1_ERR               5  20-35   MASSBUS_ERR_20           1386
RHCS2_ERR               0  20-35   CSB_TM02                 2083
RHCS2_ERR               5  2-17    MASSBUS_ERR_10            503
RHCS2_ERR              13  20-35   MASSBUS_ERR_20           1397
RH_CHAN_TYPE            2  15-17   MASSBUS_ERR_20           1369
RH_CHAN_TYPE            4  12-14   MASSBUS_ERR_10            499
RH_DATI_BAR_END        16  0-35    DX20_ERR_10               578
RH_DATI_BAR_END        16  0-35    MASSBUS_ERR_20           1402
RH_DATI_BAR_END        17  0-35    MASSBUS_ERR_10            527
RH_DATI_BAR_ERR        15  0-35    DX20_ERR_10               576
RH_DATI_BAR_ERR        15  0-35    MASSBUS_ERR_20           1399
RH_DATI_BAR_ERR        16  0-35    MASSBUS_ERR_10            525
RH_DATI_TCR_END        14  0-35    DX20_ERR_10               574
RH_DATI_TCR_END        14  0-35    MASSBUS_ERR_20           1398
RH_DATI_TCR_END        15  0-35    MASSBUS_ERR_10            523
RH_DATI_TCR_ERR        13  0-35    DX20_ERR_10               572
RH_DATI_TCR_ERR        13  0-35    MASSBUS_ERR_20           1396
RH_DATI_TCR_ERR        14  0-35    MASSBUS_ERR_10            520
RH_DEV_TYPE             2  31-35   MASSBUS_ERR_20           1370
RIB_ERRORS              6  12-23   OLD_DISK_STATS_10         843
RIB_ERRORS              7  12-23   DSCSBP                   3595
RIB_ERRORS              7  12-23   MASSBUS_ERR_10            507
RILL                    2  2-9     TM78_SENSE_BYTES         2445
RMC_CMD                **  7-0     RCMLP                    2674
RMC_STATUS             **  7-0     RSTAT                    2610
RMK2                    2  28-35   TM78_SENSE_BYTES         2446
RMR                    **  2       ER1                      4446
RMR                    **  2       RMER1                    4673
RM_DCYL_NO             **  9-0     RMDC                     4743
RM_TRACK               **  10-8    RMDA                     4712
ROMPE                  **  04      WMCERR                   3328
ROM_PE                 **  06      INTSTA                   3363
RP10_CTL_PAR           **  14      CONI_RP10                 465
RP10_ILL_DTO           **  27      CONI_RP10                 475
RP10_ILL_WRT           **  26      CONI_RP10                 474
RP10_MEM_PAR           **  16      CONI_RP10                 467
RP10_NOT_RDY           **  25      CONI_RP10                 473
RP10_NXM               **  23      CONI_RP10                 472
RP10_OVR_RUN           **  22      CONI_RP10                 471
RP10_PWR_FAL           **  20      CONI_RP10                 469
RP10_SEC_ADD           **  28      CONI_RP10                 476
RP10_SEC_PAR           **  15      CONI_RP10                 466
RP10_SRH_ERR           **  21      CONI_RP10                 470
RP10_SUR_ADD           **  29      CONI_RP10                 477
RP10_WRD_PAR           **  17      CONI_RP10                 468
RP4_30VU               **  12      ER2                      4534
RP4_ACUN               **  15      ER2                      4528
RP4_CCYL_NO            **  8-0     CC                       4522
RP4_DCYL_NO            **  8-0     DC                       4516
RP4_DEQ1               **  5       DS                       4423
RP4_DF20               **  1       DS                       4427
RP4_DF5                **  0       DS                       4428
RP4_DIGB               **  2       DS                       4426
RP4_DLT64              **  4       DS                       4424
RP4_FA_EN              **  7       ER2                      4549
RP4_FA_EN_6_AB_ST      **  7       ER2                      4551
RP4_GOREV              **  3       DS                       4425
RP4_MSE_6_RD_WR_UNSF   **  4       ER2                      4559
RP4_NOT_6_35V          **  4       ER3                      4593
RP4_PS_UN              **  0       ER3                      4606
RP4_PS_UN_6_DC_UN      **  0       ER3                      4608
RP4_UNSF               **  3       ER3                      4596
RP4_VE_US              **  1       ER3                      4601
RP4_VE_US_6_WR_OS      **  1       ER3                      4603
RP6_35_VF              **  4       ER3                      4592
RP6_AB_ST              **  7       ER2                      4550
RP6_CCYL_NO            **  9-0     CC                       4523
RP6_DCYL_NO            **  9-0     DC                       4517
RP6_DC_UN              **  0       ER3                      4607
RP6_OPER               **  13      ER3                      4577
RP6_RP4_MSE            **  4       ER2                      4557
RP6_WR_OS              **  1       ER3                      4602
RP7_BSE                **  15      ER3                      4573
RP7_CLF                **  11      ER3                      4580
RP7_CPU                **  13      ER2                      4532
RP7_DCU                **  5       ER3                      4590
RP7_DPE                **  3       ER3                      4597
RP7_DSE                **  13      ER3                      4578
RP7_DVC                **  7       ER3                      4584
RP7_ERR_CODE           **  7-0     ER2                      4548
RP7_IXU                **  6       ER3                      4587
RP7_LBC                **  10      ER3                      4581
RP7_LCE                **  9       ER3                      4582
RP7_PGE                **  15      ER2                      4529
RP7_PHF                **  8       ER3                      4583
RP7_RTO                **  0       ER3                      4609
RP7_RWU1               **  10      ER2                      4541
RP7_RWU2               **  11      ER2                      4538
RP7_RWU3               **  12      ER2                      4535
RP7_SBE                **  2       ER3                      4599
RP7_SCF                **  1       ER3                      4604
RP7_SDF                **  4       ER3                      4594
RP7_WOR                **  9       ER2                      4544
RPATH                   1  10-17   TM78_SENSE_BYTES         2440
RPE                    **  06      ECCSTA                   2889
RPFAIL                  0  20-27   TM78_SENSE_BYTES         2439
RPOSTN                  3  2-9     TM78_SENSE_BYTES         2449
RPSTA                   3  10-17   TM78_SENSE_BYTES         2448
RS04_AO                **  9       RSER                     4398
RS04_DCK               **  15      RSER                     4392
RS04_DTE               **  12      RSER                     4395
RS04_IAE               **  10      RSER                     4397
RS04_ILF               **  0       RSER                     4402
RS04_ILR               **  1       RSER                     4401
RS04_OPI               **  13      RSER                     4394
RS04_PAR               **  3       RSER                     4399
RS04_RMR               **  2       RSER                     4400
RS04_UNS               **  14      RSER                     4393
RS04_WLE               **  11      RSER                     4396
RSTAT                   1  2-9     TM78_SENSE_BYTES         2441
RTIER                   6  20-27   TM78_SENSE_BYTES         2463
RUN_GO                 **  14      RMMR1                    4681
RX_EXCPT               **  12      RMMR1                    4683
SAT_ERRORS              6  0-11    OLD_DISK_STATS_10         842
SAT_ERRORS              7  0-11    DSCSBP                   3594
SAT_ERRORS              7  0-11    MASSBUS_ERR_10            506
SAVED_ACS              10  BODY    MONITOR_BUG_DATA_20      1340
SAVED_ACS              16  BODY    MONITOR_BUG_DATA_10       240
SBD0_ADD_PAR_ERROR     **  5       SBD0_DMA                 4063
SBD0_BUS_MODE          **  6-7     SBD0_DMA                 4064
SBD0_FIRST_ADDRESS     **  14-35   SBD0_DMA                 4068
SBD0_LAST_REQ_BITS     **  8-11    SBD0_DMA                 4065
SBD0_LAST_REQ_READ     **  12      SBD0_DMA                 4066
SBD0_LAST_REQ_WRITE    **  13      SBD0_DMA                 4067
SBD0_NXM               **  2       SBD0_DMA                 4060
SBD0_READ_PAR_ERR      **  3       SBD0_DMA                 4061
SBD0_WRITE_PAR_ERR     **  4       SBD0_DMA                 4062
SBD1_CONTR_TYPE        **  8-11    SBDIAG_FUNCTION_1        4085
SBD1_HI_ADR_BOUND      **  22-25   SBD1_MA_MB               4095
SBD1_LOW_ADR_BOUND     **  18-21   SBD1_MA_MB               4094
SBD1_MARGINS_ON        **  30      SBD1_MA_MB               4096
SBD1_REQ_ENABLED       **  32-35   SBD1_MA_MB               4097
SBD1_SBUS_ADDRESS      **  14-17   SBD1_MA_MB               4093
SBDIAG_FUNCTION_0       1  0-35    SBDIAG_LIST              3895
SBDIAG_FUNCTION_1       2  0-35    SBDIAG_LIST              3896
SBDIAG_LIST             5  HEAD    KL_PAR_NXM_INT_10         959
SBDIAG_LIST             9  HEAD    CPU_PAR_INT_20           1637
SBDIAG_LIST            13  HEAD    CPU_PAR_INT_10           1127
SBDIAG_LIST            98  HEAD    KL_CPU_STATUS_10         1160
SBDIAG_LIST            98  HEAD    KL_CPU_STATUS_20         1676
SBYTE_DET              **  9       MR                       4454
SECTOR                 **  4-0     DA                       4481
SECTOR                 **  4-0     RMDA                     4713
SECTOR_COUNT           **  10-6    LA                       4496
SECT_CNT               **  10-6    RMLA                     4725
SEC_CFL                **  29      CONI_STATUS              4225
SEEK_CNT                7  0-35    MASSBUS_ERR_20           1388
SEEK_INC               **  14      ER3                      4575
SEEK_INC               **  14      RMER2                    4759
SEEK_INC_CNT            4  0-35    OLD_DISK_STATS_10         836
SEEK_INC_CNT            5  18-35   DSCSBP                   3588
SEEK_INC_CNT            8  18-35   MASSBUS_ERR_10            509
SEEN_BY_CHANNEL        11  0-35    NXM_MEMORY_SWEEP_10      1036
SEEN_BY_CHANNEL        13  0-35    OLD_CPU_NXM_ERR_10        283
SENSE_BYTES_A           4  0-35    CSB_DX10                 2013
SENSE_BYTES_B           5  0-35    CSB_DX10                 2014
SENSE_BYTES_C           6  0-35    CSB_DX10                 2015
SENSE_BYTES_D           7  0-35    CSB_DX10                 2016
SENSE_BYTES_E           8  0-35    CSB_DX10                 2017
SENSE_BYTES_F           9  0-35    CSB_DX10                 2018
SEQUENCE_NUMBER         4  9-35    HEADER                    158
SERIAL_NO              **  15-0    SN                       4502
SERIAL_NUMBER           3  20-35   CONFIG_CHANGE_20         1506
SERVER_LINE             2  MAIN$Z  NODE_DOWN_LINE_DUMP      1740
SERVER_LINE             2  MAIN$Z  NODE_DOWN_LINE_LOAD      1705
SERVER_NODE             1  MAIN$Z  NODE_DOWN_LINE_DUMP      1739
SERVER_NODE             1  MAIN$Z  NODE_DOWN_LINE_LOAD      1704
SER_ANR                **  7-0     SERA_NR                  3450
SER_A_NR               12  20-27   TM78_SENSE_BYTES         2487
SER_BNR                **  7-0     SERB_NR                  3458
SER_B_NR               13  10-17   TM78_SENSE_BYTES         2488
SER_CAS_10              8  0-17    TM78_CAS_REGS            2182
SER_CAS_10              8  18-35   TM78_CAS_REGS            2182
SER_NUM                **  15-0    RMSN                     4730
SHORT_WCE              **  21      CONI_STATUS              4233
SHUNG_CNT               5  27-35   OLD_DISK_STATS_10         840
SHUNG_CNT               6  27-35   DSCSBP                   3592
SHUNG_CNT               9  27-35   MASSBUS_ERR_10            513
SIGN_CNG               **  15      OF                       4507
SIM_ATTN               **  34      DCR                      4301
SIM_D_EXC              **  31      DCR                      4299
SIM_EOB                **  32      DCR                      4300
SIM_SCLK               **  35      DCR                      4302
SOFTWARE               **  4       PAGE_FAIL_WORD           3994
SOFT_POS_ERR           30  0-35    DX20_ERR_10               593
SOFT_POS_ERR           35  0-35    MASSBUS_ERR_20           1432
SOFT_READ              17  0-35    DX20_ERR_10               580
SOFT_READ              19  0-35    MASSBUS_ERR_20           1408
SOFT_READ_ERRORS        4  0-35    OLD_TAPE_STATS_10         869
SOFT_WRITE             18  0-35    DX20_ERR_10               581
SOFT_WRITE             20  0-35    MASSBUS_ERR_20           1409
SOFT_WRITE_ERRORS       6  0-35    OLD_TAPE_STATS_10         871
SPEED                  **  4-3     MIAB_STAT                3424
SPURIOUS_ERRORS         2  0-35    CPU_PAR_INT_10           1116
SPUR_SINCE_RELOAD       2  0-35    NXM_MEMORY_SWEEP_10      1027
SPUR_SINCE_RELOAD       2  0-35    OLD_CPU_MEM_PAR_ERR_10    253
SPUR_SINCE_RELOAD       2  0-35    OLD_CPU_NXM_ERR_10        272
SPUR_SINCE_RELOAD       2  0-35    PAR_MEMORY_SWEEP_10      1048
START_OF_INSTR          0  18-35   DEVICE_STATUS_10         1172
START_OF_RESULTS        1  18-35   DEVICE_STATUS_10         1174
STAT                   **  00      CH0TIE                   2898
STAT                   **  00      CH1TIE                   2912
STAT                   **  00      CH2TIE                   2927
STAT                   **  00      CH3TIE                   2943
STAT                   **  00      CH4TIE                   2959
STAT                   **  00      CH5TIE                   2975
STAT                   **  00      CH6TIE                   2990
STAT                   **  00      CH7TIE                   3006
STAT                   **  00      CHPTIE                   3021
STATUS_CODE             0  0-35    KS_HALT_STATUS_20        1566
STATUS_VALID           **  06      RPATH                    2599
STATUS_WORD_1          11  0-35    CSB_DX10                 2020
STATUS_WORD_2          12  0-35    CSB_DX10                 2025
STAT_PE                **  07      PSTAT                    3072
STAT_SELECT            **  01      RPATH                    2590
STA_AVAIL              **  07      STA_CAS_7                2353
STA_BOT                **  10      STA_CAS_7                2349
STA_CAS_7               7  0-17    TM78_CAS_REGS            2181
STA_CAS_7               7  18-35   TM78_CAS_REGS            2181
STA_DSE                **  04      STA_CAS_7                2359
STA_EOT                **  09      STA_CAS_7                2350
STA_FPT                **  08      STA_CAS_7                2352
STA_MAINT              **  05      STA_CAS_7                2357
STA_ON_L               **  13      STA_CAS_7                2342
STA_PE                 **  11      STA_CAS_7                2345
STA_PRES               **  14      STA_CAS_7                2341
STA_RDY                **  15      STA_CAS_7                2338
STA_REWIND             **  12      STA_CAS_7                2344
STA_SHR                **  06      STA_CAS_7                2355
STD_STATUS              0  0-15    FE_SUB                   3743
STEC                   **  00      ECCSTA                   2880
STOP                   **  31      CONO                     4323
STOP_BUG_NAME           9  0-35    MONITOR_BUG_DATA_10       233
STOP_BUG_NAME          32  0-35    MONITOR_BUG_DATA_20      1348
STORE_STAT             **  10      PTCR                     4265
STORE_STAT             **  10      STCR                     4249
STR_NAME                2  0-35    MASSBUS_ERR_10            491
SUM_HARD                4  1       DX20_ERR_10               559
SUM_HARD                4  1       MASSBUS_ERR_10            495
SUM_HARD                4  1       TAPE_ERR_10               727
SUM_HARD               18  2       MASSBUS_ERR_20           1407
SURF_SECT              24  0-35    MASSBUS_ERR_20           1414
SWEEP_BUSY             **  19      APR_STATUS               3962
SWEEP_DONE             **  31      APR_STATUS               3971
SWEEP_FLAG              4  4       CPU_PAR_TRAP_10          1095
SWEEP_FLAG              7  4       CPU_PAR_TRAP_20          1594
SWEEP_FLAG              9  4       KL_OR_KS_PAR_TRAP_10     1007
SWEEP_REF              **  2       RDERA_STATUS             4035
SYS_BUILD_DATE          1  0-35    SYSTEM_RELOAD_20         1301
SYS_BUILD_DATE          3  0-35    MONITOR_BUG_DATA_20      1326
SYS_BUILD_DATE          5  0-35    MONITOR_BUG_DATA_10       229
SYS_BUILD_DATE          5  0-35    SYSTEM_RELOAD_10          205
SYS_NAME                0  0-35    MONITOR_BUG_DATA_10       228
SYS_NAME                0  0-35    SYSTEM_RELOAD_10          204
SYS_NAME                0  MAIN$Z  MONITOR_BUG_DATA_20      1321
SYS_NAME                0  MAIN$Z  SYSTEM_RELOAD_20         1300
SYS_SER_NUM             3  0-35    HEADER                    155
SYS_STATES_WORD         7  0-35    SYSTEM_RELOAD_10          206
SYS_UPTIME              2  0-35    HEADER                    153
S_BUS_ERROR            **  24      APR_STATUS               3964
TACH                   **  03      TUDIAG                   3472
TACK                   **  03      PSTAT                    3064
TAG                     1  0-35    CSB_DX10                 1994
TAMT                    7  10-17   TM78_SENSE_BYTES         2464
TAPE_DRIVE             **  14      DT                       4487
TAPE_UNIT               1  0-35    USAGE_DATA_20            1468
TARGET_NODE             0  MAIN$Z  NODE_DOWN_LINE_DUMP      1738
TARGET_NODE             0  MAIN$Z  NODE_DOWN_LINE_LOAD      1703
TERMINAL_LOC            4  0-35    SOFTWARE_EVENT_10         616
TERMINAL_NUMBER         0  18-35   ERROR_LOG                3708
TERMINAL_NUMBER         4  24-35   SOFTWARE_EVENT_10         619
TERMINAL_NUMBER        11  0-35    MONITOR_BUG_DATA_10       235
TERMINATION_WORD        5  0-35    CHANNEL_ERROR_REPORT_10   389
TEST_SBAR              **  28      DCR                      4296
THUNG_CNT               5  9-17    OLD_DISK_STATS_10         838
THUNG_CNT               6  9-17    DSCSBP                   3590
THUNG_CNT               9  9-17    MASSBUS_ERR_10            511
TIE_BUS_0              **  0       RTIER                    3036
TIE_BUS_1              **  1       RTIER                    3041
TIE_BUS_2              **  2       RTIER                    3042
TIE_BUS_3              **  3       RTIER                    3043
TIME_CHANGE             0  0-35    CONFIG_CHANGE_10          644
TM                     **  06      TUX                      3518
TM10_BAD_TAP           **  28      TM10_TMS                 1981
TM10_CMP_ERR           **  25      TM10_TMS                 1978
TM10_CTL_PAR           **  11      TM10_TMS                 1972
TM10_DAT_LAT           **  27      TM10_TMS                 1980
TM10_ILL_OP            **  21      TM10_TMS                 1976
TM10_LEN_ERR           **  26      TM10_TMS                 1979
TM10_MEM_PAR           **  13      TM10_TMS                 1974
TM10_NXM               **  12      TM10_TMS                 1973
TM10_PAR_ERR           **  22      TM10_TMS                 1977
TM10_TMC                0  0-35    CSB_TM10                 1967
TM10_TMS                1  0-35    CSB_TM10                 1968
TM10_UNI_HNG           **  18      TM10_TMS                 1975
TM78_CAS_REGS_10        6  BODY    CSB_TM78                 2130
TM78_CAS_REGS_END_20   39  BODY    MASSBUS_ERR_20           1450
TM78_CAS_REGS_ERR_20   39  BODY    MASSBUS_ERR_20           1451
TM78_SENSE_BYTES_10    24  BODY    CSB_TM78                 2131
TM78_SENSE_BYTES_20    59  BODY    MASSBUS_ERR_20           1453
TM78_U_CODE_REVS_10     0  BODY    CSB_TM78                 2125
TM78_U_CODE_REVS_20    57  BODY    MASSBUS_ERR_20           1452
TMRDY                  **  06      CASSTA                   3098
TM_CBUS_PE             **  3       MB_ERR                   4805
TM_DBUS_PE             **  5       MB_ERR                   4803
TM_DR_T_ERROR          **  12      MB_ERR                   4790
TM_FMT_ERROR           **  4       MB_ERR                   4804
TM_F_C_ERR             **  9       MB_ERR                   4795
TM_ILL_FUNC            **  0       MB_ERR                   4808
TM_ILL_REG             **  1       MB_ERR                   4807
TM_NRZI_CRC            **  15      MB_ERR                   4786
TM_NRZI_ITM            **  10      MB_ERR                   4793
TM_NRZI_LRC            **  7       MB_ERR                   4798
TM_NRZI_VPE            **  6       MB_ERR                   4801
TM_NXF                 **  11      MB_ERR                   4791
TM_N_STD_GAP           **  8       MB_ERR                   4796
TM_OPER_INC            **  13      MB_ERR                   4789
TM_PE_CORR             **  15      MB_ERR                   4785
TM_PE_CORR_NRZI_CRC    **  15      MB_ERR                   4787
TM_PE_CS               **  10      MB_ERR                   4792
TM_PE_CS_NRZI_ITM      **  10      MB_ERR                   4794
TM_PE_FE_NRZI_LRC      **  7       MB_ERR                   4799
TM_PE_NDE              **  6       MB_ERR                   4800
TM_PE_NDE_NRZI_VPE     **  6       MB_ERR                   4802
TM_PE_PFE              **  7       MB_ERR                   4797
TM_REG_MOD             **  2       MB_ERR                   4806
TM_UNSAFE              **  14      MB_ERR                   4788
TOPS20_REC              0  17      HEADER                    140
TOP_TEN_BAD_ADD         6  HEAD    PAR_MEMORY_SWEEP_10      1052
TOP_TEN_BAD_ADD         8  HEAD    CPU_PAR_INT_10           1122
TOP_TEN_BAD_ADD         8  HEAD    OLD_CPU_MEM_PAR_ERR_10    259
TOP_TEN_BAD_ADD        10  BODY    CPU_PAR_INT_20           1639
TOP_TEN_BAD_ADD        15  HEAD    NXM_MEMORY_SWEEP_10      1041
TOP_TEN_BAD_ADD        17  HEAD    OLD_CPU_NXM_ERR_10        289
TOP_TEN_BAD_WORDS      20  BODY    CPU_PAR_INT_20           1641
TOP_TEN_GOOD_WORDS     30  BODY    CPU_PAR_INT_20           1643
TOTAL_READS             6  0-35    USAGE_DATA_20            1481
TOTAL_SEEKS             8  0-35    USAGE_DATA_20            1483
TOTAL_SINCE_RELOAD      1  0-35    NXM_MEMORY_SWEEP_10      1026
TOTAL_SINCE_RELOAD      1  0-35    OLD_CPU_MEM_PAR_ERR_10    252
TOTAL_SINCE_RELOAD      1  0-35    OLD_CPU_NXM_ERR_10        271
TOTAL_SINCE_RELOAD      1  0-35    PAR_MEMORY_SWEEP_10      1047
TOTAL_SWEEPS            3  0-35    PAR_SWEEP_DATA           3849
TOTAL_SWEEPS            9  0-35    OLD_CPU_NXM_ERR_10        279
TOTAL_THIS_SWEEP        6  0-35    NXM_MEMORY_SWEEP_10      1031
TOTAL_THIS_SWEEP        8  0-35    OLD_CPU_NXM_ERR_10        278
TOTAL_WRITES            7  0-35    USAGE_DATA_20            1482
TO_10_POINTER           1  0-35    DTE_BLOCK                3624
TO_11_POINTER           0  0-35    DTE_BLOCK                3623
TPORT2_RD_EN           **  5       TUSEL1                   3223
TPORT2_WR_EN           **  3       TUSEL1                   3217
TPORT3_RD_EN           **  4       TUSEL1                   3220
TPORT3_WR_EN           **  2       TUSEL1                   3214
TPSHRE                  5  0-35    TAPE_STATS_10             888
TPSHWE                  7  0-35    TAPE_STATS_10             890
TPSLAB                  9  0-35    TAPE_STATS_10             892
TPSNAM                  0  0-35    TAPE_STATS_10             883
TPSPPN                  8  0-35    TAPE_STATS_10             891
TPSRID                  1  0-35    TAPE_STATS_10             884
TPSSRE                  4  0-35    TAPE_STATS_10             887
TPSSWE                  6  0-35    TAPE_STATS_10             889
TPSUSN                 10  0-35    TAPE_STATS_10             893
TPSUTP                 11  0-35    TAPE_STATS_10             894
TPSWRC                  2  0-35    TAPE_STATS_10             885
TPSWWC                  3  0-35    TAPE_STATS_10             886
TRACK                  **  12-8    DA                       4480
TRANS                  **  05      WMCSTA                   3161
TRAN_DET_F             **  5       ER2                      4555
TRAN_UNSF              **  6       ER2                      4553
TRAP_ENABLE            **  22      PAGE_STATUS              4017
TTEC                   **  01      ECCSTA                   2881
TUDIAG                 13  2-9     TM78_SENSE_BYTES         2489
TUNIT_SEL1             **  1 -     TUSEL1                   3210
TUPRES                 **  04      PSTAT                    3065
TUSEL0                  8  20-27   TM78_SENSE_BYTES         2471
TUSEL1                  9  10-17   TM78_SENSE_BYTES         2472
TUSTAT                 12  10-17   TM78_SENSE_BYTES         2484
TUX                    14  10-17   TM78_SENSE_BYTES         2492
TU_AMTIE               **  7-0     TAMT                     3051
UBADDR_EXT             **  9-8     RMCS1                    4636
UBA_MAP                 2  0-35    CSB_TM02                 2093
UBA_MAP_END            16  18-35   MASSBUS_ERR_20           1404
UBA_MAP_ERR            16  18-35   MASSBUS_ERR_20           1401
UBA_STATUS              1  0-35    CSB_TM02                 2089
UBA_STATUS_END         16  0-17    MASSBUS_ERR_20           1403
UBA_STATUS_ERR          1  18-35   CSB_TM02                 2090
UBA_STATUS_ERR         14  18-35   MASSBUS_ERR_10            522
UBA_STATUS_ERR         16  0-17    MASSBUS_ERR_20           1400
UBA_STAT_ACDC_LO       **  26      UBA_STATUS               4346
UBA_STAT_BAD_MDATA     **  19      UBA_STATUS               4341
UBA_STAT_BUS_PE        **  20      UBA_STATUS               4342
UBA_STAT_DIS_XFR       **  28      UBA_STATUS               4347
UBA_STAT_HIGH_PI       **  30-32   UBA_STATUS               4349
UBA_STAT_HI_INT        **  24      UBA_STATUS               4344
UBA_STAT_INIT_UBA      **  29      UBA_STATUS               4348
UBA_STAT_LOW_PI        **  33-35   UBA_STATUS               4350
UBA_STAT_LO_INT        **  25      UBA_STATUS               4345
UBA_STAT_NXD           **  21      UBA_STATUS               4343
UBA_STAT_TIME_OUT      **  18      UBA_STATUS               4340
UBUS_PE                **  13      RH11_RMCS2               4357
UCODE_1                 0  0-35    TM78_U_CODE_REVS         2140
UCODE_2                 1  0-35    TM78_U_CODE_REVS         2141
UCODE_EDIT              3  6-17    CSB_DX10                 1998
UCODE_VERSION           3  0-5     CSB_DX10                 1997
UDB_JOB0               17  0-35    MASSBUS_ERR_20           1405
UNC                    **  02      ECCSTA                   2882
UNICER                 10  24-35   OLD_DISK_ERR_10           432
UNINTH                 12  0-8     OLD_DISK_ERR_10           435
UNIPHU                 12  18-26   OLD_DISK_ERR_10           437
UNIRER                 10  12-23   OLD_DISK_ERR_10           431
UNISER                 10  0-11    OLD_DISK_ERR_10           430
UNISHU                 12  27-35   OLD_DISK_ERR_10           438
UNITHU                 12  9-17    OLD_DISK_ERR_10           436
UNIT_ADDR              34  0-35    MASSBUS_ERR_20           1427
UNIT_NUMBER             3  15-17   CONFIG_CHANGE_20         1505
UNIT_NUMBER             5  32-35   USAGE_DATA_20            1479
UNIT_NUMBER            34  32-35   MASSBUS_ERR_20           1430
UNIT_SEL               **  2-0     RH11_RMCS2               4368
UNIT_TYPE               1  31-35   CONFIG_CHANGE_20         1500
UNIT_TYPE              16  30-32   OLD_DISK_ERR_10           447
UNK_DEV_FLAG            4  0       FE_DATA                  3726
UNLIKELY_CODE          12  0-17    SYSTEM_RELOAD_10          214
UNLIKELY_CODE          14  0-17    OLD_CPU_NXM_ERR_10        284
UNSAFE                 **  14      ER1                      4434
UNT_NUMBER              5  32-35   USAGE_DATA_20            1478
UNT_NUMBER             34  32-35   MASSBUS_ERR_20           1429
UN_SAFE                **  14      RMER1                    4661
UPT_503                89  0-35    KL_CPU_STATUS_10         1157
UPT_PAGE               **  23-35   PAGE_DATAI               3982
USAGE_EVENT             0  0-35    USAGE_DATA_20            1464
USCBRC                  7  0-35    OLD_DISK_STATS_10         845
USCBWC                  8  0-35    OLD_DISK_STATS_10         846
USCDRC                  9  0-35    OLD_DISK_STATS_10         847
USCDWC                 10  0-35    OLD_DISK_STATS_10         848
USCHCT                  2  0-35    OLD_DISK_STATS_10         834
USCHID                  1  0-35    OLD_DISK_STATS_10         833
USCHNG                  5  0-35    OLD_DISK_STATS_10         837
USCICT                 13  0-35    OLD_DISK_STATS_10         851
USCMCT                  6  0-35    OLD_DISK_STATS_10         841
USCMRC                 11  0-35    OLD_DISK_STATS_10         849
USCMSC                 15  0-35    OLD_DISK_STATS_10         853
USCMWC                 12  0-35    OLD_DISK_STATS_10         850
USCNAM                  0  0-35    OLD_DISK_STATS_10         832
USCOCT                 14  0-35    OLD_DISK_STATS_10         852
USCSCT                  3  0-35    OLD_DISK_STATS_10         835
USCUSC                 16  0-35    OLD_DISK_STATS_10         854
USER                    9  0-35    OLD_TAPE_STATS_10         874
USER                   11  0-35    DX20_ERR_10               570
USER                   11  0-35    MASSBUS_ERR_20           1394
USER_ENABLED_COUNT      4  0-35    PAR_SWEEP_DATA           3850
USER_ID                 1  0-35    ERROR_LOG                3709
USER_ID                 2  0-35    SOFTWARE_EVENT_10         614
USER_ID                 3  0-35    CPU_PAR_TRAP_20          1585
USER_ID                 6  0-35    KL_OR_KS_PAR_TRAP_10     1000
USER_ID                 7  0-35    MONITOR_BUG_DATA_20      1337
USER_ID                 9  0-35    CPU_PAR_INT_10           1123
USER_ID                 9  0-35    OLD_CPU_MEM_PAR_ERR_10    260
USER_ID                13  0-35    MONITOR_BUG_DATA_10       237
USER_ID                18  0-35    OLD_CPU_NXM_ERR_10        290
V5OK                   **  01      CBUSSTA                  3114
VALID_VOL              **  6       DS                       4422
VALID_VOL              **  6       RMDS                     4654
VECT_INTR_ADDR         **  27-35   IVIR                     4274
VEL_OK                 **  07      RPATH                    2601
VIRTUAL                **  8       PAGE_FAIL_WORD           3998
VIRTUAL_ADDRESS        **  18-35   PAGE_FAIL_WORD           4009
VOLUME_ID               2  0-35    USAGE_DATA_20            1469
VOL_ID                  1  0-35    MASSBUS_ERR_10            490
VOL_ID                  1  0-35    MASSBUS_ERR_20           1367
WCSP                   **  02      PSTAT                    3063
WD_CNT                  5  0-17    FE_DATA                  3730
WFAIL_0                **  00      RPFAIL                   2524
WFAIL_1                **  01      RPFAIL                   2531
WFAIL_2                **  02      RPFAIL                   2538
WFAIL_3                **  03      RPFAIL                   2545
WFAIL_4                **  04      RPFAIL                   2552
WFAIL_5                **  05      RPFAIL                   2559
WFAIL_6                **  06      RPFAIL                   2566
WFAIL_7                **  07      RPFAIL                   2574
WHO_ANSWER              2  0-35    ERROR_LOG                3710
WHY_RELOAD_CODE         4  MAIN$Z  SYSTEM_RELOAD_20         1306
WHY_RELOAD_CODE        10  0-35    SYSTEM_RELOAD_10          211
WMCERR                 11  28-35   TM78_SENSE_BYTES         2482
WMCSCLK                **  01      DBUSSTA                  3134
WMCSTA                  8  28-35   TM78_SENSE_BYTES         2470
WMC_NOT_DONE           **  06      WMCSTA                   3163
WORD1                   0  0-35    TOP_TEN                  3916
WORD10                  9  0-35    TOP_TEN                  3925
WORD2                   1  0-35    TOP_TEN                  3917
WORD3                   2  0-35    TOP_TEN                  3918
WORD4                   3  0-35    TOP_TEN                  3919
WORD5                   4  0-35    TOP_TEN                  3920
WORD6                   5  0-35    TOP_TEN                  3921
WORD7                   6  0-35    TOP_TEN                  3922
WORD8                   7  0-35    TOP_TEN                  3923
WORD9                   8  0-35    TOP_TEN                  3924
WORD_COUNT             **  15-0    RH11_RMWC                4383
WORD_NUMBER            **  0-1     RDERA_STATUS             4034
WRB4                   **  07      TUDIAG                   3476
WRC_SEL                **  2-0     XFRCTL                   3530
WRITEABLE              **  3       PAGE_FAIL_WORD           3993
WRITE_DATA             **  3       RMMR1                    4692
WRITE_EVEN_ADR_PAR     **  18      PI_STATUS                4024
WRITE_EVEN_DATA_PAR    **  19      PI_STATUS                4025
WRITE_EVEN_DIR_PAR     **  20      PI_STATUS                4026
WRITE_FAIL_P           **  00      RPATH                    2588
WRITE_LOCK             **  11      DS                       4417
WRITE_LOCK             **  11      RMDS                     4649
WRITE_REF              **  5       PAGE_FAIL_WORD           3995
WRITE_UNS              **  8       ER2                      4546
WRT                    **  04      MIAA_STAT                3403
WRTDAT                  9  2-9     TM78_SENSE_BYTES         2473
WRT_TAPE               **  05      TUX                      3516
WR_CK_ERROR            **  14      RH11_RMCS2               4356
WR_CK_FAIL             **  5       ER1                      4443
WR_CK_FAIL             **  5       RMER1                    4670
WR_C_UNSF              **  0       ER2                      4567
WR_DATA                **  7-0     WRTDAT                   3234
WR_DATA_REG_P          **  04      INTSTA                   3356
WR_DATA_STROBE         **  06      PSTAT                    3071
WR_GCR                 14  0-35    USAGE_DATA_20            1489
WR_INH                 **  03      MIAA_STAT                3402
WR_LK_ERROR            **  11      ER1                      4437
WR_LK_ERROR            **  11      RMER1                    4664
WR_NRZI                12  0-35    USAGE_DATA_20            1487
WR_PE                  13  0-35    USAGE_DATA_20            1488
W_SEL_UNSF             **  2       ER2                      4563
XFER_SIG               **  26      DCR                      4294
XFRCTL                 14  2-9     TM78_SENSE_BYTES         2493
XMC_NOT_DONE           **  07      WMCSTA                   3170
XMC_WCLK               **  00      WMCSTA                   3148
XMIT_NODE_ID            0  0-17    NET_HARDWARE_ERR         1749
XMIT_NODE_NAME          1  MAIN$Z  NET_HARDWARE_ERR         1751
XRETRY                 14  28-35   TM78_SENSE_BYTES         2494
X_RETRY                **  7 -     XRETRY                   3556
X_ROMPE                **  00      INTSTA                   3347
ZERO_DET               **  8       MR                       4455
_BODY_FORMAT            0  18-20   _HEADER                   169
_CRASH_EXTRACT          0  16      _HEADER                   167
_ENTRY_DATE_TIME        1  0-35    _HEADER                   176
_ENTRY_LENGTH           0  27-35   _HEADER                   175
_ENTRY_TYPE             0  0-8     _HEADER                   164
_HDR_FORMAT             0  21-23   _HEADER                   171
_HDR_LENGTH             0  24-26   _HEADER                   173
_HDR_WRD_0              0  0-35    _HEADER                   163
_RDFILE_SEQNUM          4  0       _HEADER                   184
_RETRIEVE_EXTRACT       0  15      _HEADER                   166
_SEQUENCE_NUMBER        4  9-35    _HEADER                   186
_SYS_SER_NUM            3  0-35    _HEADER                   183
_SYS_UPTIME             2  0-35    _HEADER                   181
_TOPS20_REC             0  17      _HEADER                   168
daemon_version          0  0-35    avail_bof                1906
daemon_version          0  0-35    avail_eof                1911
daemon_wakeup           3  0-35    avail_reload             1898
lgr_address             3  0-35    logger                   1848
lgr_block_id            4  0-8     logger                   1849
lgr_channel             4  9-17    logger                   1850
lgr_count               0  0-17    logger                   1845
lgr_cr_msec             1  0-35    logger                   1846
lgr_data_block          0  MAIN    logger                   1844
lgr_kontroller          4  18-26   logger                   1851
lgr_sched_down         34  0-35    lgr_data_block           1879
lgr_sched_up           35  0-35    lgr_data_block           1880
lgr_start_msec          8  0-35    lgr_data_block           1874
lgr_start_udt           7  0-35    lgr_data_block           1873
lgr_table               1  MAIN    lgr_data_block           1862
lgr_table_count         0  0-35    lgr_data_block           1860
lgr_table_data          1  0-35    lgr_table                1887
lgr_table_gtb           0  18-35   lgr_table                1886
lgr_table_id            1  0-17    lgr_data_block           1861
lgr_table_size          0  0-17    lgr_table                1885
lgr_time_change_udt    16  0-35    lgr_data_block           1877
lgr_unit                4  27-35   logger                   1852
lgr_version             0  0-35    lgr_data_block           1871
lgr_wakeup_counter      6  0-35    lgr_data_block           1872
lgr_wakeup_msec        10  0-35    lgr_data_block           1876
lgr_wakeup_udt          9  0-35    lgr_data_block           1875
lgr_wr_msec             2  0-35    logger                   1847
monitor_runtime         2  0-35    avail_reload             1897
monitor_version         1  0-35    avail_reload             1896
monitor_version        17  0-35    lgr_data_block           1878
reload_date_time        4  0-35    avail_reload             1899
reload_why_sixbit       5  0-35    avail_reload             1900
sys_build_date          0  0-35    lgr_data_block           1868
sys_name                0  MAIN$Z  avail_reload             1895
sys_name                1  0-35    lgr_data_block           1869
time_change             6  0-35    avail_reload             1901