1 /* This it the best way to allow game specific kludges until the system is fully understood */
2 enum {
3 	/* Early F3 class games, these are not cartridge games and system features may be different */
4 	RINGRAGE=0,	/* D21 */
5 	ARABIANM,	/* D29 */
6 	RIDINGF,	/* D34 */
7 	GSEEKER,	/* D40 */
8 	TRSTAR,		/* D53 */
9 	GUNLOCK,	/* D66 */
10 	TWINQIX,
11 	UNDRFIRE,	/* D67 - Heavily modified F3 hardware (different memory map) */
12 	SCFINALS,
13 	LIGHTBR,	/* D69 */
14 
15 	/* D77 - F3 motherboard proms, all following games are 'F3 package system' */
16 	/* D78 I CUP */
17 	KAISERKN,	/* D84 */
18 	DARIUSG,	/* D87 */
19 	BUBSYMPH,	/* D90 */
20 	SPCINVDX,	/* D93 */
21 	HTHERO95,	/* D94 */
22 	QTHEATER,	/* D95 */
23 	EACTION2,	/* E02 */
24 	SPCINV95,	/* E06 */
25 	QUIZHUHU,	/* E08 */
26 	PBOBBLE2,	/* E10 */
27 	GEKIRIDO,	/* E11 */
28 	KTIGER2,	/* E15 */
29 	BUBBLEM,	/* E21 */
30 	CLEOPATR,	/* E28 */
31 	PBOBBLE3,	/* E29 */
32 	ARKRETRN,	/* E36 */
33 	KIRAMEKI,	/* E44 */
34 	PUCHICAR,	/* E46 */
35 	PBOBBLE4,	/* E49 */
36 	POPNPOP,	/* E51 */
37 	LANDMAKR	/* E61 */
38 };
39