/**/ /***************************************************************************/ /** **/ /** © Copyright 2010, Hewlett-Packard Development Company, L.P. **/ /** **/ /** Confidential computer software. Valid license from HP and/or **/ /** its subsidiaries required for possession, use, or copying. **/ /** **/ /** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, **/ /** Computer Software Documentation, and Technical Data for Commercial **/ /** Items are licensed to the U.S. Government under vendor's standard **/ /** commercial license. **/ /** **/ /** Neither HP nor any of its subsidiaries shall be liable for technical **/ /** or editorial errors or omissions contained herein. The information **/ /** in this document is provided "as is" without warranty of any kind and **/ /** is subject to change without notice. The warranties for HP products **/ /** are set forth in the express limited warranty statements accompanying **/ /** such products. Nothing herein should be construed as constituting an **/ /** additional warranty. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:26:57 by OpenVMS SDL EV3-3 */ /* Source: 19-APR-1993 14:56:58 $1$DGA7274:[LIB_H.SRC]UASDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $UASDEF ***/ #ifndef __UASDEF_LOADED #define __UASDEF_LOADED 1 #pragma __nostandard /* This file uses non-ANSI-Standard features */ #pragma __member_alignment __save #pragma __nomember_alignment #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __save /* Save the previously-defined required ptr size */ #pragma __required_pointer_size __short /* And set ptr size default to 32-bit pointers */ #endif #ifdef __cplusplus extern "C" { #define __unknown_params ... #define __optional_params ... #else #define __unknown_params #define __optional_params ... #endif #ifndef __struct #if !defined(__VAXC) #define __struct struct #else #define __struct variant_struct #endif #endif #ifndef __union #if !defined(__VAXC) #define __union union #else #define __union variant_union #endif #endif /*+ */ /* UNIBUS ADDRESS SPACE REGISTER DEFINITIONS FOR DW750 */ /* (SECOND UNIBUS ADAPTER ON 11/750) */ /*- */ #define UAS$M_IP_CR1_PIE 0x1000 #define UAS$M_IP_CR1_PDN 0x2000 #define UAS$S_UASDEF 5222 typedef struct _uas { char uasdef$$_fill_1 [5216]; __struct { /* INTER-PROCESSOR EXERCISER COMMUNICATOR */ short int uasdef$$_fill_2 [2]; /* ADDRESS AND DATA REGISTERS NOT CURRENTLY USED */ __union { unsigned short int uas$w_ip_cr1; /* THE THIRD IPEC REGISTER, CR1 */ __struct { unsigned uasdef$$_fill_3 : 12; /* SKIP BITS OF NO INTEREST */ unsigned uas$v_ip_cr1_pie : 1; /* POWERFAIL INTERRUPT ENABLE */ unsigned uas$v_ip_cr1_pdn : 1; /* POWER DOWN STATUS BIT */ unsigned uas$v_fill_0_ : 2; } uas$r_cr1_bits; } uas$r_cr1_overlay; } uas$r_ip; } UAS; #if !defined(__VAXC) #define uas$w_ip_cr1 uas$r_ip.uas$r_cr1_overlay.uas$w_ip_cr1 #define uas$v_ip_cr1_pie uas$r_ip.uas$r_cr1_overlay.uas$r_cr1_bits.uas$v_ip_cr1_pie #define uas$v_ip_cr1_pdn uas$r_ip.uas$r_cr1_overlay.uas$r_cr1_bits.uas$v_ip_cr1_pdn #endif /* #if !defined(__VAXC) */ #pragma __member_alignment __restore #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __restore /* Restore the previously-defined required ptr size */ #endif #ifdef __cplusplus } #endif #pragma __standard #endif /* __UASDEF_LOADED */