Google
 

Trailing-Edge - PDP-10 Archives - TOPS-20_V6.1_DECnetSrc_7-23-85 - mcb/utilities/ndtdat.r16
There is 1 other file named ndtdat.r16 in the archive. Click here to see a list.
! [Beginning of NDTDAT]
!
!
!                    COPYRIGHT (c) 1980, 1981, 1982
!                    DIGITAL EQUIPMENT CORPORATION
!                        Maynard, Massachusetts
!
!     This software is furnished under a license and may  be  used
!     and copied only in accordance with the terms of such license
!     and with the inclusion of the above copyright notice.   This
!     software  or any other copies thereof may not be provided or
!     otherwise made available to any other person.  No  title  to
!     and ownership of the software is hereby transferred.
!
!     The information  in  this  software  is  subject  to  change
!     without  notice  and should not be construed as a commitment
!     by DIGITAL EQUIPMENT CORPORATION.
!
!     DIGITAL assumes no responsibility for the use or reliability
!     of  its  software  on  equipment  which  is  not supplied by
!     DIGITAL.
!

!++
!
! FACILITY: Node Debugging Tool
!
! ABSTRACT:
!
!	This contains the data structure definitions for NDT.
!
! ENVIRONMENT: MCB V3.0
!
! AUTHOR: Alan D. Peckham	CREATION DATE: 02-Sep-81
!
! MODIFIED BY:
!
!	Alan Peckham, 02-Sep-81
! 01	- New process for DN20 testing.
!--

%if not %declared (XPO$K_VERSION) %then library 'XPORT'; %fi

%if not %declared (MCB$K_VERSION) %then library 'MCBLIB'; %fi

$SHOW (FIELDS, LITERALS)

!
! INI process data base
!

$FIELD
    D_FIELDS =
	set
	D_BASE = [$SUB_BLOCK (0)],
	D_STATE = [$TINY_INTEGER],
	    $ALIGN (FULLWORD)
	D_SC_PIX = [$BYTE],
	D_LLA = [$BYTE],
	D_ALLOCATED_CCB_COUNT = [$SHORT_INTEGER],
	D_PENDING_DATA_CCB = [$ADDRESS]
	tes;

literal
    D_LENGTH = $FIELD_SET_SIZE,
    DS_ACCEPT = 1,
    DS_RUN = 2,
    DS_ABORT = 3,
    DS_KILL = 4,
    DS_LOW = min (DS_ACCEPT, DS_RUN, DS_ABORT, DS_KILL),
    DS_HIGH = max (DS_ACCEPT, DS_RUN, DS_ABORT, DS_KILL);

!
! [End of NDTDAT]