1 /***************************************************************************
2                             dma.h  -  description
3                              -------------------
4     begin                : Wed May 15 2002
5     copyright            : (C) 2002 by Pete Bernert
6     email                : BlackDove@addcom.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version. See also the license.txt file for *
15  *   additional informations.                                              *
16  *                                                                         *
17  ***************************************************************************/
18 
19 //*************************************************************************//
20 // History of changes:
21 //
22 // 2002/05/15 - Pete
23 // - generic cleanup for the Peops release
24 //
25 //*************************************************************************//
26 
27 #include <stdint.h>
28 
29 void InterruptDMA4(void);
30 void InterruptDMA7(void);
31 
32 void SPU2readDMA4Mem(uint32_t usPSXMem,int iSize);
33 void SPU2writeDMA4Mem(uint32_t usPSXMem,int iSize);
34 void SPU2readDMA7Mem(uint32_t usPSXMem,int iSize);
35 void SPU2writeDMA7Mem(uint32_t usPSXMem,int iSize);
36 void SPU2interruptDMA4(void);
37 void SPU2interruptDMA7(void);
38