comparison Plugins/Input/sexypsf/PsxCommon.h @ 333:42cdc99e395a trunk

[svn] Now that the build system is ready, upload the plugin code.
author chainsaw
date Sun, 25 Dec 2005 13:11:21 -0800
parents
children f12d7e208b43
comparison
equal deleted inserted replaced
332:07576d3ed844 333:42cdc99e395a
1 /* Pcsx - Pc Psx Emulator
2 * Copyright (C) 1999-2002 Pcsx Team
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #ifndef __PSXCOMMON_H__
20 #define __PSXCOMMON_H__
21
22 #if PSS_STYLE==2
23
24 #define PSS "\\"
25 #define PS '\\'
26
27 #elif PSS_STYLE==1
28
29 #define PSS "/"
30 #define PS '/'
31
32 #elif PSS_STYLE==3
33
34 #define PSS "\\"
35 #define PS '\\'
36 #endif
37
38 #include <zlib.h>
39
40 #include <sys/types.h>
41 #include "types.h"
42
43 void __Log(char *fmt, ...);
44
45 #define BIAS 2
46 #define PSXCLK 33868800 /* 33.8688 Mhz */
47
48 #include "R3000A.h"
49 #include "PsxMem.h"
50 #include "PsxHw.h"
51 #include "PsxBios.h"
52 #include "PsxDma.h"
53 #include "PsxCounters.h"
54 #include "PsxHLE.h"
55 #include "Spu.h"
56 #include "Misc.h"
57 #include "spu/spu.h"
58
59 #endif /* __PSXCOMMON_H__ */