Trailing-Edge
-
PDP-10 Archives
-
BB-P363B-SM_1985
-
mcb/drivers/crdat.r16
There are no other files named crdat.r16 in the archive.
! [Beginning of CRDAT]
!
! 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: MCB CR11 driver Process
!
! ABSTRACT:
! This contains the data structure definitions for the NURD CR11 driver
!
! ENVIRONMENT: MCB V3.0
!
! AUTHOR: Alan D. Peckham CREATION DATE: 7-Jul-81
!
! MODIFIED BY:
! Alan D. Peckham, 7-Jul-81: Version 1
! 01 - New for initialization module
!--
%if not %declared (XPO$K_VERSION) %then library 'BLI:XPORT'; %fi
%if not %declared (MCB$K_VERSION) %then library 'MCB:MCBLIB'; %fi
macro
$SKIP_FIELD [] =
%bliss36 [%bliss32 [%remaining]] %;
!
! CR data base
!
$FIELD
D_FIELDS =
set
$SKIP_FIELD ($BYTE) ! (C.TIMC) TIMER ENTRY
$SKIP_FIELD ($BYTE) ! (C.NRD) NRD's PIX
D_REGISTER = [$ADDRESS], ! (C.CSR) ONE WORD CSR POINTER
D_VECTOR = [$ADDRESS], ! (C.DTXT) CONTEXT BLOCK (DTXTSZ)
D_PRIORITY = [$INTEGER] ! We just use two words temporarily
tes;
!
! [End of CRDAT]