Windows2000/private/ntos/inc/jnsnint.h
2020-09-30 17:12:32 +02:00

54 lines
901 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++ BUILD Version: 0001 // Increment this if a change has global effects
Copyright (c) 1991 Microsoft Corporation
Module Name:
jensenint.h
Abstract:
This module is the header file that describes hardware structure
for the interrupt source and enable registers on the Alpha/Jensen
Author:
David N. Cutler (davec) 6-May-1991
Miche Baker-Harvey (miche) 18-May-1992
Revision History:
Jeff McLeman (mcleman) 22-Jul-1992
Add intack structure
*/
#ifndef _JNSNINT_
#define _JNSNINT_
/*
// Define Interrupt register structure.
typedef struct _INTERRUPT_REGISTERS {
UCHAR Source;
UCHAR Fill1;
USHORT Enable;
} INTERRUPT_REGISTERS, *PINTERRUPT_REGISTERS;
*/
typedef struct _INTACK_REGISTERS {
union IntAckCycle {
ULONG LowPart;
ULONG HighPart;
} IntAckCycle;
} INTACK_REGISTERS, *PINTACK_REGISTERS;
#endif // _JNSNINT_