NT4/private/ntos/nthals/halsnip/mips/i82c54.h
2020-09-30 17:12:29 +02:00

35 lines
848 B
C

//#pragma comment(exestr, "$Header: /usr4/winnt/SOURCES/halpcims/src/hal/halsnipm/mips/RCS/i82c54.h,v 1.1 1995/07/20 15:55:16 flo Exp $")
/*++
Copyright (c) 1993-1994 Siemens Nixdorf Informationssysteme AG
Module Name:
i82C54.h
Abstract:
This header file defines the private Address structure for
the Intel 82C54 Timer chip found on the SNI Minitower and RM400-10.
--*/
#ifndef _I82C54_
#define _I82C54_
//
// the SNI Clock (i82C54) Structure
//
typedef struct _LOCAL_8254 {
UCHAR counter0; /* counter 0 port */
char fill_1[3];
UCHAR counter1; /* counter 1 port */
char fill_2[3];
UCHAR counter2; /* counter 2 port */
char fill_3[3];
UCHAR control; /* control word */
} LOCAL_8254, *PLOCAL_8254;
#endif