1 |
/* 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 "Pcsx2Defs.h" |
19 |
|
20 |
#include "System.h" |
21 |
#include "Memory.h" |
22 |
#include "Hw.h" |
23 |
#include "Dmac.h" |
24 |
#include "R5900.h" |
25 |
|
26 |
#include "SaveState.h" |
27 |
#include "DebugTools/Debug.h" |
28 |
|
29 |
static const u32 BIAS = 2; // Bus is half of the actual ps2 speed |
30 |
static const u32 PS2CLK = 294912000; //hz /* 294.912 mhz */ |
31 |
|
32 |
static const ConsoleColors ConColor_IOP = Color_Yellow; |
33 |
static const ConsoleColors ConColor_EE = Color_Cyan; |
34 |
|
35 |
extern wxString ShiftJIS_ConvertString( const char* src ); |
36 |
extern wxString ShiftJIS_ConvertString( const char* src, int maxlen ); |
37 |
|
38 |
// Some homeless externs. This is as good a spot as any for now... |
39 |
|
40 |
extern void SetCPUState(SSE_MXCSR sseMXCSR, SSE_MXCSR sseVUMXCSR); |
41 |
extern SSE_MXCSR g_sseVUMXCSR, g_sseMXCSR; |