-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtinymame.pch
66 lines (58 loc) · 1.45 KB
/
tinymame.pch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* tinymame.pch
* mameosx
*
* Created by Dave Dribin on 10/22/06.
* Copyright 2006 __MyCompanyName__. All rights reserved.
*
*/
#include "config.h"
/*-------------------------------------------------
* You need to define two strings:
*
* TINY_NAME is a comma-separated list of driver
* names that will be referenced.
*
* TINY_DRIVER should be the same list but with
* an & in front of each name.
*-------------------------------------------------*/
#define TINY_NAME \
driver_suprmrio,\
driver_mspacman,\
driver_pacman,\
driver_puckman,\
driver_argus,\
driver_crysbios,\
driver_crysking
#define TINY_POINTER \
&driver_suprmrio,\
&driver_mspacman,\
&driver_pacman,\
&driver_puckman,\
&driver_argus,\
&driver_crysbios,\
&driver_crysking
/*-------------------------------------------------
* Specify all the CPU cores necessary for these
* drivers.
*-------------------------------------------------*/
#define HAS_M6502 1
#define HAS_N2A03 1
#define HAS_Z80 1
// For argus:
#define HAS_S2660 1
// For crysking:
#define HAS_SE3208 1
/*-------------------------------------------------
* Specify all the sound cores necessary for these
* drivers.
*-------------------------------------------------*/
#define HAS_DAC 1
#define HAS_NES 1
#define HAS_NAMCO 1
#define HAS_SN76496 1
#define HAS_AY8910 1
// For argus:
#define HAS_YM2203 1
// For crysking:
#define HAS_VRENDER0 1