1 |
william |
31 |
/* PCSX2 - PS2 Emulator for PCs |
2 |
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team |
3 |
|
|
* |
4 |
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms |
5 |
|
|
* of the GNU Lesser General Public License as published by the Free Software Found- |
6 |
|
|
* ation, either version 3 of the License, or (at your option) any later version. |
7 |
|
|
* |
8 |
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
9 |
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
10 |
|
|
* PURPOSE. See the GNU General Public License for more details. |
11 |
|
|
* |
12 |
|
|
* You should have received a copy of the GNU General Public License along with PCSX2. |
13 |
|
|
* If not, see <http://www.gnu.org/licenses/>. |
14 |
|
|
*/ |
15 |
|
|
|
16 |
|
|
#pragma once |
17 |
|
|
|
18 |
|
|
#include "R3000A.h" |
19 |
|
|
#include "Common.h" |
20 |
|
|
|
21 |
|
|
#include "CDVD/CDVD.h" |
22 |
|
|
#include "CDVD/CdRom.h" |
23 |
|
|
|
24 |
|
|
#include "IopDma.h" |
25 |
|
|
#include "IopMem.h" |
26 |
|
|
#include "IopHw.h" |
27 |
|
|
#include "IopBios.h" |
28 |
|
|
#include "IopCounters.h" |
29 |
|
|
#include "IopSio2.h" |
30 |
|
|
|
31 |
|
|
static const s64 PSXCLK = 36864000; /* 36.864 Mhz */ |
32 |
|
|
//#define PSXCLK 9216000 /* 36.864 Mhz */ |
33 |
|
|
//#define PSXCLK 186864000 /* 36.864 Mhz */ |
34 |
|
|
|
35 |
|
|
// Uncomment to make pcsx2 print each spu2 interrupt it receives |
36 |
|
|
//#define SPU2IRQTEST |
37 |
|
|
|