| 1 | /***************************************************************************\r |
| 2 | dma.h - description\r |
| 3 | -------------------\r |
| 4 | begin : Wed May 15 2002\r |
| 5 | copyright : (C) 2002 by Pete Bernert\r |
| 6 | email : BlackDove@addcom.de\r |
| 7 | ***************************************************************************/\r |
| 8 | \r |
| 9 | /***************************************************************************\r |
| 10 | * *\r |
| 11 | * This program is free software; you can redistribute it and/or modify *\r |
| 12 | * it under the terms of the GNU General Public License as published by *\r |
| 13 | * the Free Software Foundation; either version 2 of the License, or *\r |
| 14 | * (at your option) any later version. See also the license.txt file for *\r |
| 15 | * additional informations. *\r |
| 16 | * *\r |
| 17 | ***************************************************************************/\r |
| 18 | \r |
| 19 | //*************************************************************************//\r |
| 20 | // History of changes:\r |
| 21 | //\r |
| 22 | // 2002/05/15 - Pete\r |
| 23 | // - generic cleanup for the Peops release\r |
| 24 | //\r |
| 25 | //*************************************************************************//\r |
| 26 | \r |
| 27 | #ifndef __P_DMA_H__\r |
| 28 | #define __P_DMA_H__\r |
| 29 | \r |
| 30 | unsigned short CALLBACK SPUreadDMA(void);\r |
| 31 | void CALLBACK SPUreadDMAMem(unsigned short * pusPSXMem,int iSize);\r |
| 32 | void CALLBACK SPUwriteDMA(unsigned short val);\r |
| 33 | void CALLBACK SPUwriteDMAMem(unsigned short * pusPSXMem,int iSize);\r |
| 34 | \r |
| 35 | #endif /* __P_DMA_H__ */\r |