reactos/subsystems/mvdm/ntvdm/hardware/ppi.h
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

25 lines
680 B
C

/*
* COPYRIGHT: GPL - See COPYING in the top level directory
* PROJECT: ReactOS Virtual DOS Machine
* FILE: subsystems/mvdm/ntvdm/hardware/ppi.h
* PURPOSE: Programmable Peripheral Interface emulation -
* i8255A-5 compatible
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
*/
#ifndef _PPI_H_
#define _PPI_H_
/* DEFINES ********************************************************************/
#define PPI_PORT_61H 0x61
#define PPI_PORT_62H 0x62
extern BYTE Port61hState;
/* FUNCTIONS ******************************************************************/
VOID PpiInitialize(VOID);
#endif /* _PPI_H_ */