2009-09-12 10:09:59 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-09-12 10:09:59 +00:00
|
|
|
#pragma once
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-03-13 04:49:23 +00:00
|
|
|
#include "R3000A.h"
|
|
|
|
#include "Common.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-16 07:24:31 +00:00
|
|
|
#include "CDVD/CDVD.h"
|
2009-11-14 12:02:56 +00:00
|
|
|
#include "CDVD/CdRom.h"
|
2009-03-01 21:49:17 +00:00
|
|
|
|
2009-04-24 01:14:25 +00:00
|
|
|
#include "IopDma.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
#include "IopMem.h"
|
|
|
|
#include "IopHw.h"
|
|
|
|
#include "IopBios.h"
|
|
|
|
#include "IopCounters.h"
|
|
|
|
#include "IopSio2.h"
|
2016-01-20 20:29:18 +00:00
|
|
|
#include "IopGte.h"
|
2009-11-14 12:02:56 +00:00
|
|
|
//#define PSXCLK 9216000 /* 36.864 Mhz */
|
|
|
|
//#define PSXCLK 186864000 /* 36.864 Mhz */
|
|
|
|
|
2010-02-17 17:35:06 +00:00
|
|
|
// Uncomment to make pcsx2 print each spu2 interrupt it receives
|
|
|
|
//#define SPU2IRQTEST
|
|
|
|
|