2015-05-14 21:13:07 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
2015-09-18 17:01:49 +00:00
|
|
|
* FILE: subsystems/mvdm/ntvdm/hardware/ppi.h
|
2015-05-14 21:13:07 +00:00
|
|
|
* 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);
|
|
|
|
|
2015-10-03 21:47:46 +00:00
|
|
|
#endif /* _PPI_H_ */
|