forked from OpenEmu/Mednafen-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MednafenGameCore.mm
3984 lines (3783 loc) · 229 KB
/
MednafenGameCore.mm
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (c) 2020, OpenEmu Team
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the OpenEmu Team nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY OpenEmu Team ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL OpenEmu Team BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "mednafen.h"
#include "settings-driver.h"
#include "state-driver.h"
#include "mednafen-driver.h"
#include "MemoryStream.h"
#import "MednafenGameCore.h"
#import <OpenEmuBase/OERingBuffer.h>
#import <OpenGL/gl.h>
#import "OELynxSystemResponderClient.h"
#import "OENGPSystemResponderClient.h"
#import "OEPCESystemResponderClient.h"
#import "OEPCECDSystemResponderClient.h"
#import "OEPCFXSystemResponderClient.h"
#import "OEPSXSystemResponderClient.h"
#import "OESaturnSystemResponderClient.h"
#import "OEVBSystemResponderClient.h"
#import "OEWSSystemResponderClient.h"
#ifdef DEBUG
#error "Cores should not be compiled in DEBUG! Follow the guide https://github.com/OpenEmu/OpenEmu/wiki/Compiling-From-Source-Guide"
#endif
#define OptionDefault(_NAME_, _PREFKEY_) @{ OEGameCoreDisplayModeNameKey : _NAME_, OEGameCoreDisplayModePrefKeyNameKey : _PREFKEY_, OEGameCoreDisplayModeStateKey : @YES, }
#define Option(_NAME_, _PREFKEY_) @{ OEGameCoreDisplayModeNameKey : _NAME_, OEGameCoreDisplayModePrefKeyNameKey : _PREFKEY_, OEGameCoreDisplayModeStateKey : @NO, }
#define OptionIndented(_NAME_, _PREFKEY_) @{ OEGameCoreDisplayModeNameKey : _NAME_, OEGameCoreDisplayModePrefKeyNameKey : _PREFKEY_, OEGameCoreDisplayModeStateKey : @NO, OEGameCoreDisplayModeIndentationLevelKey : @(1), }
#define OptionToggleable(_NAME_, _PREFKEY_) @{ OEGameCoreDisplayModeNameKey : _NAME_, OEGameCoreDisplayModePrefKeyNameKey : _PREFKEY_, OEGameCoreDisplayModeStateKey : @NO, OEGameCoreDisplayModeAllowsToggleKey : @YES, }
#define OptionToggleableNoSave(_NAME_, _PREFKEY_) @{ OEGameCoreDisplayModeNameKey : _NAME_, OEGameCoreDisplayModePrefKeyNameKey : _PREFKEY_, OEGameCoreDisplayModeStateKey : @NO, OEGameCoreDisplayModeAllowsToggleKey : @YES, OEGameCoreDisplayModeDisallowPrefSaveKey : @YES, }
#define Label(_NAME_) @{ OEGameCoreDisplayModeLabelKey : _NAME_, }
#define SeparatorItem() @{ OEGameCoreDisplayModeSeparatorItemKey : @"",}
using namespace Mednafen;
static MDFNGI *game;
static MDFN_Surface *surf;
namespace MDFN_IEN_VB
{
extern void VIP_SetParallaxDisable(bool disabled);
extern void VIP_SetAnaglyphColors(uint32 lcolor, uint32 rcolor);
}
@interface MednafenGameCore () <OELynxSystemResponderClient, OENGPSystemResponderClient, OEPCESystemResponderClient, OEPCECDSystemResponderClient, OEPCFXSystemResponderClient, OEPSXSystemResponderClient, OESaturnSystemResponderClient, OEVBSystemResponderClient, OEWSSystemResponderClient>
{
uint32_t *_inputBuffer[13];
int _videoWidth, _videoHeight;
int _videoOffsetX, _videoOffsetY;
int _mouseScaledX, _mouseScaledY;
int _multiTapPlayerCount;
double _sampleRate;
double _masterClock;
NSString *_mednafenCoreModule;
NSTimeInterval _mednafenCoreTiming;
OEIntSize _mednafenCoreAspect;
NSUInteger _maxDiscs;
NSUInteger _multiDiscTotal;
BOOL _isSBIRequired;
BOOL _isMultiDiscGame;
BOOL _isSS3DControlPadSupportedGame;
BOOL _isSSVirtuaGunSupportedGame;
BOOL _isPCE6ButtonPadSupportedGame;
BOOL _isPSXJustifierSupportedGame;
BOOL _isPSXGunConSupportedGame;
NSMutableArray *_allCueSheetFiles;
NSMutableArray <NSMutableDictionary <NSString *, id> *> *_availableDisplayModes;
}
- (void)initializeMednafen;
- (void)loadDisplayModeOptions;
@end
static __weak MednafenGameCore *_current;
@implementation MednafenGameCore
- (void)initializeMednafen
{
MDFNI_InitializeModules();
std::vector<MDFNSetting> settings;
NSString *batterySavesDirectory = self.batterySavesDirectoryPath;
NSString *biosPath = self.biosDirectoryPath;
MDFNI_Initialize(biosPath.fileSystemRepresentation, settings);
// Set bios/system file and memcard save paths
MDFNI_SetSetting("pce.cdbios", [[biosPath stringByAppendingPathComponent:@"syscard3"] stringByAppendingPathExtension:@"pce"].fileSystemRepresentation); // PCE CD BIOS
MDFNI_SetSetting("pcfx.bios", [[biosPath stringByAppendingPathComponent:@"pcfx"] stringByAppendingPathExtension:@"rom"].fileSystemRepresentation); // PCFX BIOS
MDFNI_SetSetting("psx.bios_jp", [[biosPath stringByAppendingPathComponent:@"scph5500"] stringByAppendingPathExtension:@"bin"].fileSystemRepresentation); // JP SCPH-5500 BIOS
MDFNI_SetSetting("psx.bios_na", [[biosPath stringByAppendingPathComponent:@"scph5501"] stringByAppendingPathExtension:@"bin"].fileSystemRepresentation); // NA SCPH-5501 BIOS
MDFNI_SetSetting("psx.bios_eu", [[biosPath stringByAppendingPathComponent:@"scph5502"] stringByAppendingPathExtension:@"bin"].fileSystemRepresentation); // EU SCPH-5502 BIOS
MDFNI_SetSetting("ss.bios_jp", [[biosPath stringByAppendingPathComponent:@"sega_101"] stringByAppendingPathExtension:@"bin"].fileSystemRepresentation); // JP SS BIOS
MDFNI_SetSetting("ss.bios_na_eu", [[biosPath stringByAppendingPathComponent:@"mpr-17933"] stringByAppendingPathExtension:@"bin"].fileSystemRepresentation); // NA/EU SS BIOS
MDFNI_SetSetting("filesys.path_sav", batterySavesDirectory.fileSystemRepresentation); // Memcards
// VB defaults. dox http://mednafen.sourceforge.net/documentation/09x/vb.html
MDFNI_SetSetting("vb.disable_parallax", "1"); // Disable parallax for BG and OBJ rendering
MDFNI_SetSetting("vb.anaglyph.preset", "disabled"); // Disable anaglyph preset
MDFNI_SetSetting("vb.anaglyph.lcolor", "0xFF0000"); // Anaglyph l color
MDFNI_SetSetting("vb.anaglyph.rcolor", "0x000000"); // Anaglyph r color
//MDFNI_SetSetting("vb.allow_draw_skip", "1"); // Allow draw skipping
//MDFNI_SetSetting("vb.instant_display_hack", "1"); // Display latency reduction hack
//MDFNI_SetSetting("vb.ledonscale", "1.9921875"); // Old brightness level before 0.9.44 update
MDFNI_SetSetting("pce.slstart", "0"); // PCE: First rendered scanline
MDFNI_SetSetting("pce.slend", "239"); // PCE: Last rendered scanline
MDFNI_SetSetting("psx.h_overscan", "0"); // Remove PSX overscan
//MDFNI_SetSetting("ss.input.port1.gun_chairs", "0x1000000"); // SS: Disable crosshair drawing
// PlayStation SBI required games (LibCrypt)
NSDictionary<NSString *, NSNumber *> *sbiRequiredGames =
@{
@"SLES-01226" : @1, // Actua Ice Hockey 2 (Europe)
@"SLES-02563" : @1, // Anstoss - Premier Manager (Germany)
@"SCES-01564" : @1, // Ape Escape (Europe)
@"SCES-02028" : @1, // Ape Escape (France)
@"SCES-02029" : @1, // Ape Escape (Germany)
@"SCES-02030" : @1, // Ape Escape (Italy)
@"SCES-02031" : @1, // Ape Escape - La Invasión de los Monos (Spain)
@"SLES-03324" : @1, // Astérix - Mega Madness (Europe) (En,Fr,De,Es,It,Nl)
@"SCES-02366" : @1, // Barbie - Aventure Equestre (France)
@"SCES-02365" : @1, // Barbie - Race & Ride (Europe)
@"SCES-02367" : @1, // Barbie - Race & Ride (Germany)
@"SCES-02368" : @1, // Barbie - Race & Ride (Italy)
@"SCES-02369" : @1, // Barbie - Race & Ride (Spain)
@"SCES-02488" : @1, // Barbie - Sports Extrême (France)
@"SCES-02489" : @1, // Barbie - Super Sport (Germany)
@"SCES-02487" : @1, // Barbie - Super Sports (Europe)
@"SCES-02490" : @1, // Barbie - Super Sports (Italy)
@"SCES-02491" : @1, // Barbie - Super Sports (Spain)
@"SLES-02977" : @1, // BDFL Manager 2001 (Germany)
@"SLES-03605" : @1, // BDFL Manager 2002 (Germany)
@"SLES-02293" : @1, // Canal+ Premier Manager (Europe) (Fr,Es,It)
@"SCES-02834" : @1, // Crash Bash (Europe) (En,Fr,De,Es,It)
@"SCES-02105" : @1, // CTR - Crash Team Racing (Europe) (En,Fr,De,Es,It,Nl) (EDC) / (No EDC)
@"SLES-02207" : @1, // Dino Crisis (Europe)
@"SLES-02208" : @1, // Dino Crisis (France)
@"SLES-02209" : @1, // Dino Crisis (Germany)
@"SLES-02210" : @1, // Dino Crisis (Italy)
@"SLES-02211" : @1, // Dino Crisis (Spain)
@"SCES-02004" : @1, // Disney Fais Ton Histoire! - Mulan (France)
@"SCES-02006" : @1, // Disney Libro Animato Creativo - Mulan (Italy)
@"SCES-01516" : @1, // Disney Tarzan (France)
@"SCES-01519" : @1, // Disney Tarzan (Spain)
@"SLES-03191" : @1, // Disney's 102 Dalmatians - Puppies to the Rescue (Europe) (Fr,De,Es,It,Nl)
@"SLES-03189" : @1, // Disney's 102 Dalmatians - Puppies to the Rescue (Europe)
@"SCES-02007" : @1, // Disney's Aventura Interactiva - Mulan (Spain)
@"SCES-01695" : @1, // Disney's Story Studio - Mulan (Europe)
@"SCES-01431" : @1, // Disney's Tarzan (Europe)
@"SCES-02185" : @1, // Disney's Tarzan (Netherlands)
@"SCES-02182" : @1, // Disney's Tarzan (Sweden)
@"SCES-02264" : @1, // Disney's Verhalenstudio - Mulan (Netherlands)
@"SCES-02005" : @1, // Disneys Interaktive Abenteuer - Mulan (Germany)
@"SCES-01517" : @1, // Disneys Tarzan (Germany)
@"SCES-01518" : @1, // Disneys Tarzan (Italy)
@"SLES-02538" : @1, // EA Sports Superbike 2000 (Europe) (En,Fr,De,Es,It,Sv)
@"SLES-01715" : @1, // Eagle One - Harrier Attack (Europe) (En,Fr,De,Es,It)
@"SCES-01704" : @1, // Esto es Futbol (Spain)
@"SLES-03061" : @1, // F.A. Premier League Football Manager 2001, The (Europe)
@"SLES-02722" : @1, // F1 2000 (Europe) (En,Fr,De,Nl)
@"SLES-02724" : @1, // F1 2000 (Italy)
@"SLES-02965" : @1, // Final Fantasy IX (Europe) (Disc 1)
@"SLES-12965" : @1, // Final Fantasy IX (Europe) (Disc 2)
@"SLES-22965" : @1, // Final Fantasy IX (Europe) (Disc 3)
@"SLES-32965" : @1, // Final Fantasy IX (Europe) (Disc 4)
@"SLES-02966" : @1, // Final Fantasy IX (France) (Disc 1)
@"SLES-12966" : @1, // Final Fantasy IX (France) (Disc 2)
@"SLES-22966" : @1, // Final Fantasy IX (France) (Disc 3)
@"SLES-32966" : @1, // Final Fantasy IX (France) (Disc 4)
@"SLES-02967" : @1, // Final Fantasy IX (Germany) (Disc 1)
@"SLES-12967" : @1, // Final Fantasy IX (Germany) (Disc 2)
@"SLES-22967" : @1, // Final Fantasy IX (Germany) (Disc 3)
@"SLES-32967" : @1, // Final Fantasy IX (Germany) (Disc 4)
@"SLES-02968" : @1, // Final Fantasy IX (Italy) (Disc 1)
@"SLES-12968" : @1, // Final Fantasy IX (Italy) (Disc 2)
@"SLES-22968" : @1, // Final Fantasy IX (Italy) (Disc 3)
@"SLES-32968" : @1, // Final Fantasy IX (Italy) (Disc 4)
@"SLES-02969" : @1, // Final Fantasy IX (Spain) (Disc 1)
@"SLES-12969" : @1, // Final Fantasy IX (Spain) (Disc 2)
@"SLES-22969" : @1, // Final Fantasy IX (Spain) (Disc 3)
@"SLES-32969" : @1, // Final Fantasy IX (Spain) (Disc 4)
@"SLES-02080" : @1, // Final Fantasy VIII (Europe, Australia) (Disc 1)
@"SLES-12080" : @1, // Final Fantasy VIII (Europe, Australia) (Disc 2)
@"SLES-22080" : @1, // Final Fantasy VIII (Europe, Australia) (Disc 3)
@"SLES-32080" : @1, // Final Fantasy VIII (Europe, Australia) (Disc 4)
@"SLES-02081" : @1, // Final Fantasy VIII (France) (Disc 1)
@"SLES-12081" : @1, // Final Fantasy VIII (France) (Disc 2)
@"SLES-22081" : @1, // Final Fantasy VIII (France) (Disc 3)
@"SLES-32081" : @1, // Final Fantasy VIII (France) (Disc 4)
@"SLES-02082" : @1, // Final Fantasy VIII (Germany) (Disc 1)
@"SLES-12082" : @1, // Final Fantasy VIII (Germany) (Disc 2)
@"SLES-22082" : @1, // Final Fantasy VIII (Germany) (Disc 3)
@"SLES-32082" : @1, // Final Fantasy VIII (Germany) (Disc 4)
@"SLES-02083" : @1, // Final Fantasy VIII (Italy) (Disc 1)
@"SLES-12083" : @1, // Final Fantasy VIII (Italy) (Disc 2)
@"SLES-22083" : @1, // Final Fantasy VIII (Italy) (Disc 3)
@"SLES-32083" : @1, // Final Fantasy VIII (Italy) (Disc 4)
@"SLES-02084" : @1, // Final Fantasy VIII (Spain) (Disc 1)
@"SLES-12084" : @1, // Final Fantasy VIII (Spain) (Disc 2)
@"SLES-22084" : @1, // Final Fantasy VIII (Spain) (Disc 3)
@"SLES-32084" : @1, // Final Fantasy VIII (Spain) (Disc 4)
@"SLES-02978" : @1, // Football Manager Campionato 2001 (Italy)
@"SCES-02222" : @1, // Formula One 99 (Europe) (En,Es,Fi)
@"SCES-01979" : @1, // Formula One 99 (Europe) (En,Fr,De,It)
@"SLES-02767" : @1, // Frontschweine (Germany)
@"SCES-01702" : @1, // Fussball Live (Germany)
@"SLES-03062" : @1, // Fussball Manager 2001 (Germany)
@"SLES-02328" : @1, // Galerians (Europe) (Disc 1)
@"SLES-12328" : @1, // Galerians (Europe) (Disc 2)
@"SLES-22328" : @1, // Galerians (Europe) (Disc 3)
@"SLES-02329" : @1, // Galerians (France) (Disc 1)
@"SLES-12329" : @1, // Galerians (France) (Disc 2)
@"SLES-22329" : @1, // Galerians (France) (Disc 3)
@"SLES-02330" : @1, // Galerians (Germany) (Disc 1)
@"SLES-12330" : @1, // Galerians (Germany) (Disc 2)
@"SLES-22330" : @1, // Galerians (Germany) (Disc 3)
@"SLES-01241" : @1, // Gekido - Urban Fighters (Europe) (En,Fr,De,Es,It)
@"SLES-01041" : @1, // Hogs of War (Europe)
@"SLES-03489" : @1, // Italian Job, The (Europe)
@"SLES-03626" : @1, // Italian Job, The (Europe) (Fr,De,Es)
@"SCES-01444" : @1, // Jackie Chan Stuntmaster (Europe)
@"SLES-01362" : @1, // Le Mans 24 Hours (Europe) (En,Fr,De,Es,It,Pt)
@"SLES-01301" : @1, // Legacy of Kain - Soul Reaver (Europe)
@"SLES-02024" : @1, // Legacy of Kain - Soul Reaver (France)
@"SLES-02025" : @1, // Legacy of Kain - Soul Reaver (Germany)
@"SLES-02027" : @1, // Legacy of Kain - Soul Reaver (Italy)
@"SLES-02026" : @1, // Legacy of Kain - Soul Reaver (Spain)
@"SLES-02766" : @1, // Les Cochons de Guerre (France)
@"SLES-02975" : @1, // LMA Manager 2001 (Europe)
@"SLES-03603" : @1, // LMA Manager 2002 (Europe)
@"SLES-03530" : @1, // Lucky Luke - Western Fever (Europe) (En,Fr,De,Es,It,Nl)
@"SCES-00311" : @1, // MediEvil (Europe)
@"SCES-01492" : @1, // MediEvil (France)
@"SCES-01493" : @1, // MediEvil (Germany)
@"SCES-01494" : @1, // MediEvil (Italy)
@"SCES-01495" : @1, // MediEvil (Spain)
@"SCES-02544" : @1, // MediEvil 2 (Europe) (En,Fr,De)
@"SCES-02545" : @1, // MediEvil 2 (Europe) (Es,It,Pt)
@"SCES-02546" : @1, // MediEvil 2 (Russia)
@"SLES-03519" : @1, // Men in Black - The Series - Crashdown (Europe)
@"SLES-03520" : @1, // Men in Black - The Series - Crashdown (France)
@"SLES-03521" : @1, // Men in Black - The Series - Crashdown (Germany)
@"SLES-03522" : @1, // Men in Black - The Series - Crashdown (Italy)
@"SLES-03523" : @1, // Men in Black - The Series - Crashdown (Spain)
@"SLES-01545" : @1, // Michelin Rally Masters - Race of Champions (Europe) (En,De,Sv)
@"SLES-02395" : @1, // Michelin Rally Masters - Race of Champions (Europe) (Fr,Es,It)
@"SLES-02839" : @1, // Mike Tyson Boxing (Europe) (En,Fr,De,Es,It)
@"SLES-01906" : @1, // Mission - Impossible (Europe) (En,Fr,De,Es,It)
@"SLES-02830" : @1, // MoHo (Europe) (En,Fr,De,Es,It)
@"SCES-01701" : @1, // Monde des Bleus, Le - Le jeu officiel de l'équipe de France (France)
@"SLES-02086" : @1, // N-Gen Racing (Europe) (En,Fr,De,Es,It)
@"SLES-02689" : @1, // Need for Speed - Porsche 2000 (Europe) (En,De,Sv)
@"SLES-02700" : @1, // Need for Speed - Porsche 2000 (Europe) (Fr,Es,It)
@"SLES-02558" : @1, // Parasite Eve II (Europe) (Disc 1)
@"SLES-12558" : @1, // Parasite Eve II (Europe) (Disc 2)
@"SLES-02559" : @1, // Parasite Eve II (France) (Disc 1)
@"SLES-12559" : @1, // Parasite Eve II (France) (Disc 2)
@"SLES-02560" : @1, // Parasite Eve II (Germany) (Disc 1)
@"SLES-12560" : @1, // Parasite Eve II (Germany) (Disc 2)
@"SLES-02562" : @1, // Parasite Eve II (Italy) (Disc 1)
@"SLES-12562" : @1, // Parasite Eve II (Italy) (Disc 2)
@"SLES-02561" : @1, // Parasite Eve II (Spain) (Disc 1)
@"SLES-12561" : @1, // Parasite Eve II (Spain) (Disc 2)
@"SLES-02061" : @1, // PGA European Tour Golf (Europe) (En,De)
@"SLES-02292" : @1, // Premier Manager 2000 (Europe)
@"SLES-00017" : @1, // Prince Naseem Boxing (Europe) (En,Fr,De,Es,It)
@"SLES-01943" : @1, // Radikal Bikers (Europe) (En,Fr,De,Es,It)
@"SLES-02824" : @1, // RC Revenge (Europe) (En,Fr,De,Es)
@"SLES-02529" : @1, // Resident Evil 3 - Nemesis (Europe)
@"SLES-02530" : @1, // Resident Evil 3 - Nemesis (France)
@"SLES-02531" : @1, // Resident Evil 3 - Nemesis (Germany)
@"SLES-02698" : @1, // Resident Evil 3 - Nemesis (Ireland)
@"SLES-02533" : @1, // Resident Evil 3 - Nemesis (Italy)
@"SLES-02532" : @1, // Resident Evil 3 - Nemesis (Spain)
@"SLES-00995" : @1, // Ronaldo V-Football (Europe) (En,Fr,Nl,Sv)
@"SLES-02681" : @1, // Ronaldo V-Football (Europe) (De,Es,It,Pt)
@"SLES-02112" : @1, // SaGa Frontier 2 (Europe)
@"SLES-02113" : @1, // SaGa Frontier 2 (France)
@"SLES-02118" : @1, // SaGa Frontier 2 (Germany)
@"SLES-02763" : @1, // SnoCross Championship Racing (Europe) (En,Fr,De,Es,It)
@"SCES-02290" : @1, // Space Debris (Europe)
@"SCES-02430" : @1, // Space Debris (France)
@"SCES-02431" : @1, // Space Debris (Germany)
@"SCES-02432" : @1, // Space Debris (Italy)
@"SCES-01763" : @1, // Speed Freaks (Europe)
@"SCES-02835" : @1, // Spyro - Year of the Dragon (Europe) (En,Fr,De,Es,It) (v1.0) / (v1.1)
@"SCES-02104" : @1, // Spyro 2 - Gateway to Glimmer (Europe) (En,Fr,De,Es,It)
@"SLES-02857" : @1, // Sydney 2000 (Europe)
@"SLES-02858" : @1, // Sydney 2000 (France)
@"SLES-02859" : @1, // Sydney 2000 (Germany)
@"SLES-02861" : @1, // Sydney 2000 (Spain)
@"SLES-03245" : @1, // TechnoMage - De Terugkeer der Eeuwigheid (Netherlands)
@"SLES-02831" : @1, // TechnoMage - Die Rückkehr der Ewigkeit (Germany)
@"SLES-03242" : @1, // TechnoMage - En Quête de L'Eternité (France)
@"SLES-03241" : @1, // TechnoMage - Return of Eternity (Europe)
@"SLES-02688" : @1, // Theme Park World (Europe) (En,Fr,De,Es,It,Nl,Sv)
@"SCES-01882" : @1, // This Is Football (Europe) (Fr,Nl)
@"SCES-01700" : @1, // This Is Football (Europe)
@"SCES-01703" : @1, // This Is Football (Italy)
@"SLES-02572" : @1, // TOCA World Touring Cars (Europe) (En,Fr,De)
@"SLES-02573" : @1, // TOCA World Touring Cars (Europe) (Es,It)
@"SLES-02704" : @1, // UEFA Euro 2000 (Europe)
@"SLES-02705" : @1, // UEFA Euro 2000 (France)
@"SLES-02706" : @1, // UEFA Euro 2000 (Germany)
@"SLES-02707" : @1, // UEFA Euro 2000 (Italy)
@"SLES-01733" : @1, // UEFA Striker (Europe) (En,Fr,De,Es,It,Nl)
@"SLES-02071" : @1, // Urban Chaos (Europe) (En,Es,It)
@"SLES-02355" : @1, // Urban Chaos (Germany)
@"SLES-01907" : @1, // V-Rally - Championship Edition 2 (Europe) (En,Fr,De)
@"SLES-02754" : @1, // Vagrant Story (Europe)
@"SLES-02755" : @1, // Vagrant Story (France)
@"SLES-02756" : @1, // Vagrant Story (Germany)
@"SLES-02733" : @1, // Walt Disney World Quest - Magical Racing Tour (Europe) (En,Fr,De,Es,It,Nl,Sv,No,Da)
@"SCES-01909" : @1, // Wip3out (Europe) (En,Fr,De,Es,It)
};
// PlayStation Multitap supported games (incomplete list)
NSDictionary<NSString *, NSNumber *> *psxMultiTapGames =
@{
@"SLES-02339" : @3, // Arcade Party Pak (Europe, Australia)
@"SLUS-00952" : @3, // Arcade Party Pak (USA)
@"SLES-02537" : @3, // Bishi Bashi Special (Europe)
@"SLPM-86123" : @3, // Bishi Bashi Special (Japan)
@"SLPM-86539" : @3, // Bishi Bashi Special 3: Step Champ (Japan)
@"SLPS-01701" : @3, // Capcom Generation - Dai 4 Shuu Kokou no Eiyuu (Japan)
@"SLPS-01567" : @3, // Captain Commando (Japan)
@"SLUS-00682" : @3, // Jeopardy! (USA)
@"SLUS-01173" : @3, // Jeopardy! 2nd Edition (USA)
@"SLES-03752" : @3, // Quiz Show (Italy) (Disc 1)
@"SLES-13752" : @3, // Quiz Show (Italy) (Disc 2)
@"SLES-02849" : @3, // Rampage - Through Time (Europe) (En,Fr,De)
@"SLUS-01065" : @3, // Rampage - Through Time (USA)
@"SLES-02021" : @3, // Rampage 2 - Universal Tour (Europe)
@"SLUS-00742" : @3, // Rampage 2 - Universal Tour (USA)
@"SLUS-01174" : @3, // Wheel of Fortune - 2nd Edition (USA)
@"SLES-03499" : @3, // You Don't Know Jack (Germany)
@"SLUS-00716" : @3, // You Don't Know Jack (USA) (Disc 1)
@"SLUS-00762" : @3, // You Don't Know Jack (USA) (Disc 2)
@"SLUS-01194" : @3, // You Don't Know Jack - Mock 2 (USA)
@"SLES-00015" : @4, // Actua Golf (Europe) (En,Fr,De)
@"SLPS-00298" : @4, // Actua Golf (Japan)
@"SLUS-00198" : @4, // VR Golf '97 (USA) (En,Fr)
@"SLES-00044" : @4, // Actua Golf 2 (Europe)
@"SLUS-00636" : @4, // FOX Sports Golf '99 (USA)
@"SLES-01042" : @4, // Actua Golf 3 (Europe)
@"SLES-00188" : @4, // Actua Ice Hockey (Europe) (En,Fr,De,Sv,Fi)
@"SLPM-86078" : @4, // Actua Ice Hockey (Japan)
@"SLES-01226" : @4, // Actua Ice Hockey 2 (Europe)
@"SLES-00021" : @4, // Actua Soccer 2 (Europe) (En,Fr)
@"SLES-01029" : @4, // Actua Soccer 2 (Germany) (En,De)
@"SLES-01028" : @4, // Actua Soccer 2 (Italy)
@"SLES-00265" : @4, // Actua Tennis (Europe)
@"SLES-01396" : @4, // Actua Tennis (Europe) (Fr,De)
@"SLES-00189" : @4, // Adidas Power Soccer (Europe) (En,Fr,De,Es,It)
@"SCUS-94502" : @4, // Adidas Power Soccer (USA)
@"SLES-00857" : @4, // Adidas Power Soccer 2 (Europe) (En,Fr,De,Es,It,Nl)
@"SLES-00270" : @4, // Adidas Power Soccer International '97 (Europe) (En,Fr,De,Es,It,Nl)
@"SLES-01239" : @4, // Adidas Power Soccer 98 (Europe) (En,Fr,De,Es,It,Nl)
@"SLUS-00547" : @4, // Adidas Power Soccer 98 (USA)
@"SLES-03963" : @4, // All Star Tennis (Europe)
@"SLPS-02228" : @4, // Simple 1500 Series Vol. 26 - The Tennis (Japan)
@"SLUS-01348" : @4, // Tennis (USA)
@"SLES-01433" : @4, // All Star Tennis '99 (Europe) (En,Fr,De,Es,It)
@"SLES-02764" : @4, // All Star Tennis 2000 (Europe) (En,De,Es,It)
@"SLES-02765" : @4, // All Star Tennis 2000 (France)
@"SCES-00263" : @4, // Namco Tennis Smash Court (Europe)
@"SLPS-00450" : @4, // Smash Court (Japan)
@"SCES-01833" : @4, // Anna Kournikova's Smash Court Tennis (Europe)
@"SLPS-01693" : @4, // Smash Court 2 (Japan)
@"SLPS-03001" : @4, // Smash Court 3 (Japan)
@"SLES-00712" : @4, // Arcade's Greatest Hits - The Atari Collection 2 (Europe)
@"SLUS-00449" : @4, // Arcade's Greatest Hits - The Atari Collection 2 (USA)
@"SLES-03808" : @4, // Atari Anniversary Edition Redux (Europe)
@"SLUS-01427" : @4, // Atari Anniversary Edition Redux (USA)
@"SLPS-01486" : @4, // Carom Shot 2 (Japan)
@"SLUS-00659" : @4, // Backstreet Billiards (USA)
@"SLES-03579" : @4, // Junior Sports Football (Europe)
@"SLES-03581" : @4, // Junior Sports Fussball (Germany)
@"SLUS-01094" : @4, // Backyard Soccer (USA)
@"SLES-03210" : @4, // Hunter, The (Europe)
@"SLPM-86400" : @4, // SuperLite 1500 Series - Battle Sugoroku the Hunter - A.R.0062 (Japan)
@"SLUS-01335" : @4, // Battle Hunter (USA)
@"SLES-00476" : @4, // Blast Chamber (Europe) (En,Fr,De,Es,It)
@"SLPS-00622" : @4, // Kyuu Bakukku (Japan)
@"SLUS-00219" : @4, // Blast Chamber (USA)
@"SLES-00845" : @4, // Blaze & Blade - Eternal Quest (Europe)
@"SLES-01274" : @4, // Blaze & Blade - Eternal Quest (Germany)
@"SLPS-01209" : @4, // Blaze & Blade - Eternal Quest (Japan)
@"SLPS-01576" : @4, // Blaze & Blade Busters (Japan)
@"SCES-01443" : @4, // Blood Lines (Europe) (En,Fr,De,Es,It)
@"SLPS-03002" : @4, // Bomberman Land (Japan) (v1.0) / (v1.1) / (v1.2)
@"SLES-00258" : @4, // Break Point (Europe) (En,Fr)
@"SLES-02854" : @4, // Break Out (Europe) (En,Fr,De,It)
@"SLUS-01170" : @4, // Break Out (USA)
@"SLES-00759" : @4, // Brian Lara Cricket (Europe)
@"SLES-01486" : @4, // Caesars Palace II (Europe)
@"SLES-02476" : @4, // Caesars Palace 2000 - Millennium Gold Edition (Europe)
@"SLUS-01089" : @4, // Caesars Palace 2000 - Millennium Gold Edition (USA)
@"SLES-03206" : @4, // Card Shark (Europe)
@"SLPS-02225" : @4, // Trump Shiyouyo! (Japan) (v1.0)
@"SLPS-02612" : @4, // Trump Shiyouyo! (Japan) (v1.1)
@"SLUS-01454" : @4, // Family Card Games Fun Pack (USA)
@"SLES-02825" : @4, // Catan - Die erste Insel (Germany)
@"SLUS-00886" : @4, // Chessmaster II (USA)
@"SLES-00753" : @4, // Circuit Breakers (Europe) (En,Fr,De,Es,It)
@"SLUS-00697" : @4, // Circuit Breakers (USA)
@"SLUS-00196" : @4, // College Slam (USA)
@"SCES-02834" : @4, // Crash Bash (Europe) (En,Fr,De,Es,It)
@"SCPS-10140" : @4, // Crash Bandicoot Carnival (Japan)
@"SCUS-94570" : @4, // Crash Bash (USA)
@"SCES-02105" : @4, // CTR - Crash Team Racing (Europe) (En,Fr,De,Es,It,Nl) (EDC) / (No EDC)
@"SCPS-10118" : @4, // Crash Bandicoot Racing (Japan)
@"SCUS-94426" : @4, // CTR - Crash Team Racing (USA)
@"SLES-03729" : @4, // Cubix Robots for Everyone - Race 'n Robots (Europe)
@"SLUS-01422" : @4, // Cubix Robots for Everyone - Race 'n Robots (USA)
@"SLES-02371" : @4, // CyberTiger (Australia)
@"SLES-02370" : @4, // CyberTiger (Europe) (En,Fr,De,Es,Sv)
@"SLUS-01004" : @4, // CyberTiger (USA)
@"SLES-03488" : @4, // David Beckham Soccer (Europe)
@"SLES-03682" : @4, // David Beckham Soccer (Europe) (Fr,De,Es,It)
@"SLUS-01455" : @4, // David Beckham Soccer (USA)
@"SLES-00096" : @4, // Davis Cup Complete Tennis (Europe)
@"SCES-02060" : @4, // Destruction Derby Raw (Europe)
@"SLUS-00912" : @4, // Destruction Derby Raw (USA)
@"SCES-03705" : @4, // Disney's Party Time with Winnie the Pooh (Europe)
@"SCES-03744" : @4, // Disney's Winnie l'Ourson - C'est la récré! (France)
@"SCES-03745" : @4, // Disney's Party mit Winnie Puuh (Germany)
@"SCES-03749" : @4, // Disney Pooh e Tigro! E Qui la Festa (Italy)
@"SLPS-03460" : @4, // Pooh-San no Minna de Mori no Daikyosou! (Japan)
@"SCES-03746" : @4, // Disney's Spelen met Winnie de Poeh en zijn Vriendjes! (Netherlands)
@"SCES-03748" : @4, // Disney Ven a la Fiesta! con Winnie the Pooh (Spain)
@"SLUS-01437" : @4, // Disney's Pooh's Party Game - In Search of the Treasure (USA)
@"SLPS-00155" : @4, // DX Jinsei Game (Japan)
@"SLPS-00918" : @4, // DX Jinsei Game II (Japan) (v1.0) / (v1.1)
@"SLPS-02469" : @4, // DX Jinsei Game III (Japan)
@"SLPM-86963" : @4, // DX Jinsei Game IV (Japan)
@"SLPM-87187" : @4, // DX Jinsei Game V (Japan)
@"SLES-02823" : @4, // ECW Anarchy Rulz (Europe)
@"SLES-03069" : @4, // ECW Anarchy Rulz (Germany)
@"SLUS-01169" : @4, // ECW Anarchy Rulz (USA)
@"SLES-02535" : @4, // ECW Hardcore Revolution (Europe) (v1.0) / (v1.1)
@"SLES-02536" : @4, // ECW Hardcore Revolution (Germany) (v1.0) / (v1.1)
@"SLUS-01045" : @4, // ECW Hardcore Revolution (USA)
@"SLUS-01186" : @4, // ESPN MLS Gamenight (USA)
@"SLES-03082" : @4, // European Super League (Europe) (En,Fr,De,Es,It,Pt)
@"SLES-02142" : @4, // F.A. Premier League Stars, The (Europe)
@"SLES-02143" : @4, // Bundesliga Stars 2000 (Germany)
@"SLES-02702" : @4, // Primera Division Stars (Spain)
@"SLES-03063" : @4, // F.A. Premier League Stars 2001, The (Europe)
@"SLES-03064" : @4, // LNF Stars 2001 (France)
@"SLES-03065" : @4, // Bundesliga Stars 2001 (Germany)
@"SLES-00548" : @4, // Fantastic Four (Europe) (En,Fr,De,Es,It)
@"SLPS-01034" : @4, // Fantastic Four (Japan)
@"SLUS-00395" : @4, // Fantastic Four (USA)
@"SLPS-02065" : @4, // Fire Pro Wrestling G (Japan) (v1.0)
@"SLPS-02817" : @4, // Fire Pro Wrestling G (Japan) (v1.1)
@"SLUS-00635" : @4, // FOX Sports Soccer '99 (USA) (En,Es)
@"SLES-00704" : @4, // Frogger (Europe) (En,Fr,De,Es,It)
@"SLPS-01399" : @4, // Frogger (Japan)
@"SLUS-00506" : @4, // Frogger (USA)
@"SLES-02853" : @4, // Frogger 2 - Swampy's Revenge (Europe) (En,Fr,De,It)
@"SLUS-01172" : @4, // Frogger 2 - Swampy's Revenge (USA)
@"SCES-00269" : @4, // Galaxian^3 (Europe)
@"SLPS-00270" : @4, // Galaxian^3 (Japan)
@"SLES-01241" : @4, // Gekido - Urban Fighters (Europe) (En,Fr,De,Es,It)
@"SLUS-00970" : @4, // Gekido - Urban Fighters (USA)
@"SLPM-86761" : @4, // Simple 1500 Series Vol. 60 - The Table Hockey (Japan)
@"SLPS-03362" : @4, // Simple Character 2000 Series Vol. 05 - High School Kimengumi - The Table Hockey (Japan)
@"SLES-01041" : @4, // Hogs of War (Europe)
@"SLUS-01195" : @4, // Hogs of War (USA)
@"SCES-00983" : @4, // Everybody's Golf (Europe) (En,Fr,De,Es,It)
@"SCPS-10042" : @4, // Minna no Golf (Japan)
@"SCUS-94188" : @4, // Hot Shots Golf (USA)
@"SCES-02146" : @4, // Everybody's Golf 2 (Europe)
@"SCPS-10093" : @4, // Minna no Golf 2 (Japan) (v1.0)
@"SCUS-94476" : @4, // Hot Shots Golf 2 (USA)
@"SLES-03595" : @4, // Hot Wheels - Extreme Racing (Europe)
@"SLUS-01293" : @4, // Hot Wheels - Extreme Racing (USA)
@"SLPM-86651" : @4, // Hunter X Hunter - Maboroshi no Greed Island (Japan)
@"SLES-00309" : @4, // Hyper Tennis - Final Match (Europe)
@"SLES-00309" : @4, // Hyper Final Match Tennis (Japan)
@"SLES-02550" : @4, // International Superstar Soccer (Europe) (En,De)
@"SLES-03149" : @4, // International Superstar Soccer (Europe) (Fr,Es,It)
@"SLPM-86317" : @4, // Jikkyou J. League 1999 - Perfect Striker (Japan)
@"SLES-00511" : @4, // International Superstar Soccer Deluxe (Europe)
@"SLPM-86538" : @4, // J. League Jikkyou Winning Eleven 2000 (Japan)
@"SLPM-86668" : @4, // J. League Jikkyou Winning Eleven 2000 2nd (Japan)
@"SLPM-86835" : @4, // J. League Jikkyou Winning Eleven 2001 (Japan)
@"SLES-00333" : @4, // International Track & Field (Europe)
@"SLPM-86002" : @4, // Hyper Olympic in Atlanta (Japan)
@"SLUS-00238" : @4, // International Track & Field (USA)
@"SLES-02448" : @4, // International Track & Field 2 (Europe)
@"SLPM-86482" : @4, // Ganbare! Nippon! Olympic 2000 (Japan)
@"SLUS-00987" : @4, // International Track & Field 2000 (USA)
@"SLES-02424" : @4, // ISS Pro Evolution (Europe) (Es,It)
@"SLES-02095" : @4, // ISS Pro Evolution (Europe) (En,Fr,De) (EDC) / (No EDC)
@"SLPM-86291" : @4, // World Soccer Jikkyou Winning Eleven 4 (Japan) (v1.0) / (v1.1)
@"SLUS-01014" : @4, // ISS Pro Evolution (USA)
@"SLES-03321" : @4, // ISS Pro Evolution 2 (Europe) (En,Fr,De)
@"SLPM-86600" : @4, // World Soccer Jikkyou Winning Eleven 2000 - U-23 Medal e no Chousen (Japan)
@"SLPS-00832" : @4, // Iwatobi Penguin Rocky x Hopper (Japan)
@"SLPS-01283" : @4, // Iwatobi Penguin Rocky x Hopper 2 - Tantei Monogatari (Japan)
@"SLES-02572" : @4, // TOCA World Touring Cars (Europe) (En,Fr,De)
@"SLES-02573" : @4, // TOCA World Touring Cars (Europe) (Es,It)
@"SLPS-02852" : @4, // WTC World Touring Car Championship (Japan)
@"SLUS-01139" : @4, // Jarrett & Labonte Stock Car Racing (USA)
@"SLES-03328" : @4, // Jetracer (Europe) (En,Fr,De)
@"SLPS-00473" : @4, // Jigsaw Island - Japan Graffiti (Japan)
@"SLPM-86918" : @4, // Jigsaw Island - Japan Graffiti (Japan) (Major Wave Series)
@"SLES-04089" : @4, // Jigsaw Madness (Europe) (En,Fr,De,Es,It)
@"SLUS-01509" : @4, // Jigsaw Madness (USA)
@"SLES-00377" : @4, // Jonah Lomu Rugby (Europe) (En,De,Es,It)
@"SLES-00611" : @4, // Jonah Lomu Rugby (France)
@"SLPS-01268" : @4, // Great Rugby Jikkyou '98 - World Cup e no Michi (Japan)
@"SLES-01061" : @4, // Kick Off World (Europe) (En,Fr)
@"SLES-01327" : @4, // Kick Off World (Europe) (Es,Nl)
@"SLES-01062" : @4, // Kick Off World (Germany)
@"SLES-01328" : @4, // Kick Off World (Greece)
@"SLES-01063" : @4, // Kick Off World Manager (Italy)
@"SCES-03922" : @4, // Klonoa - Beach Volleyball (Europe) (En,Fr,De,Es,It)
@"SLPS-03433" : @4, // Klonoa Beach Volley - Saikyou Team Ketteisen! (Japan)
@"SLUS-01125" : @4, // Kurt Warner's Arena Football Unleashed (USA)
@"SLPS-00686" : @4, // Love Game's - Wai Wai Tennis (Japan)
@"SLES-02272" : @4, // Yeh Yeh Tennis (Europe) (En,Fr,De)
@"SLPS-02983" : @4, // Love Game's - Wai Wai Tennis 2 (Japan)
@"SLPM-86899" : @4, // Love Game's - Wai Wai Tennis Plus (Japan)
@"SLES-01594" : @4, // Michael Owen's World League Soccer 99 (Europe) (En,Fr,It)
@"SLES-02499" : @4, // Midnight in Vegas (Europe) (En,Fr,De) (v1.0) / (v1.1)
@"SLUS-00836" : @4, // Vegas Games 2000 (USA)
@"SLES-03246" : @4, // Monster Racer (Europe) (En,Fr,De,Es,It,Pt)
@"SLES-03813" : @4, // Monte Carlo Games Compendium (Europe) (Disc 1)
@"SLES-13813" : @4, // Monte Carlo Games Compendium (Europe) (Disc 2)
@"SLES-00945" : @4, // Monopoly (Europe) (En,Fr,De,Es,Nl) (v1.0) / (v1.1)
@"SLPS-00741" : @4, // Monopoly (Japan)
@"SLES-00310" : @4, // Motor Mash (Europe) (En,Fr,De)
@"SCES-03085" : @4, // Ms. Pac-Man Maze Madness (Europe) (En,Fr,De,Es,It)
@"SLPS-03000" : @4, // Ms. Pac-Man Maze Madness (Japan)
@"SLUS-01018" : @4, // Ms. Pac-Man Maze Madness (USA) (v1.0) / (v1.1)
@"SLES-02224" : @4, // Music 2000 (Europe) (En,Fr,De,Es,It)
@"SLUS-01006" : @4, // MTV Music Generator (USA)
@"SLES-00999" : @4, // Nagano Winter Olympics '98 (Europe)
@"SLPM-86056" : @4, // Hyper Olympic in Nagano (Japan)
@"SLUS-00591" : @4, // Nagano Winter Olympics '98 (USA)
@"SLUS-00329" : @4, // NBA Hangtime (USA)
@"SLES-00529" : @4, // NBA Jam Extreme (Europe)
@"SLPS-00699" : @4, // NBA Jam Extreme (Japan)
@"SLUS-00388" : @4, // NBA Jam Extreme (USA)
@"SLES-00068" : @4, // NBA Jam - Tournament Edition (Europe)
@"SLPS-00199" : @4, // NBA Jam - Tournament Edition (Japan)
@"SLUS-00002" : @4, // NBA Jam - Tournament Edition (USA)
@"SLES-02336" : @4, // NBA Showtime - NBA on NBC (Europe)
@"SLUS-00948" : @4, // NBA Showtime - NBA on NBC (USA)
@"SLES-02689" : @4, // Need for Speed - Porsche 2000 (Europe) (En,De,Sv)
@"SLES-02700" : @4, // Need for Speed - Porsche 2000 (Europe) (Fr,Es,It)
@"SLUS-01104" : @4, // Need for Speed - Porsche Unleashed (USA)
@"SLES-01907" : @4, // V-Rally - Championship Edition 2 (Europe) (En,Fr,De)
@"SLPS-02516" : @4, // V-Rally - Championship Edition 2 (Japan)
@"SLUS-01003" : @4, // Need for Speed - V-Rally 2 (USA)
@"SLES-02335" : @4, // NFL Blitz 2000 (Europe)
@"SLUS-00861" : @4, // NFL Blitz 2000 (USA)
@"SLUS-01146" : @4, // NFL Blitz 2001 (USA)
@"SLUS-00327" : @4, // NHL Open Ice - 2 on 2 Challenge (USA)
@"SLES-00113" : @4, // Olympic Soccer (Europe) (En,Fr,De,Es,It)
@"SLPS-00523" : @4, // Olympic Soccer (Japan)
@"SLUS-00156" : @4, // Olympic Soccer (USA)
@"SLPS-03056" : @4, // Oshigoto-shiki Jinsei Game - Mezase Shokugyou King (Japan)
@"SLPS-00899" : @4, // Panzer Bandit (Japan)
@"SLPM-86016" : @4, // Paro Wars (Japan)
@"SLUS-01130" : @4, // Peter Jacobsen's Golden Tee Golf (USA)
@"SLES-00201" : @4, // Pitball (Europe) (En,Fr,De,Es,It)
@"SLPS-00607" : @4, // Pitball (Japan)
@"SLUS-00146" : @4, // Pitball (USA)
@"SLUS-01033" : @4, // Polaris SnoCross (USA)
@"SLES-02020" : @4, // Pong (Europe) (En,Fr,De,Es,It,Nl)
@"SLUS-00889" : @4, // Pong - The Next Level (USA)
@"SLUS-01445" : @4, // Power Play - Sports Trivia (USA)
@"SLES-02808" : @4, // Beach Volleyball (Europe) (En,Fr,De,Es,It)
@"SLUS-01196" : @4, // Power Spike - Pro Beach Volleyball (USA)
@"SLES-00785" : @4, // Poy Poy (Europe)
@"SLPM-86034" : @4, // Poitters' Point (Japan)
@"SLUS-00486" : @4, // Poy Poy (USA)
@"SLES-01536" : @4, // Poy Poy 2 (Europe)
@"SLPM-86061" : @4, // Poitters' Point 2 - Sodom no Inbou
@"SLES-01544" : @4, // Premier Manager Ninety Nine (Europe)
@"SLES-01864" : @4, // Premier Manager Novanta Nove (Italy)
@"SLES-02292" : @4, // Premier Manager 2000 (Europe)
@"SLES-02293" : @4, // Canal+ Premier Manager (Europe) (Fr,Es,It)
@"SLES-02563" : @4, // Anstoss - Premier Manager (Germany)
@"SLES-00738" : @4, // Premier Manager 98 (Europe)
@"SLES-01284" : @4, // Premier Manager 98 (Italy)
@"SLES-03795" : @4, // Pro Evolution Soccer (Europe) (En,Fr,De)
@"SLES-03796" : @4, // Pro Evolution Soccer (Europe) (Es,It)
@"SLES-03946" : @4, // Pro Evolution Soccer 2 (Europe) (En,Fr,De)
@"SLES-03957" : @4, // Pro Evolution Soccer 2 (Europe) (Es,It)
@"SLPM-87056" : @4, // World Soccer Winning Eleven 2002 (Japan)
@"SLPS-01006" : @4, // Pro Wres Sengokuden - Hyper Tag Match (Japan)
@"SLPM-86868" : @4, // Simple 1500 Series Vol. 69 - The Putter Golf (Japan)
@"SLUS-01371" : @4, // Putter Golf (USA)
@"SLPS-03114" : @4, // Puyo Puyo Box (Japan)
@"SLUS-00757" : @4, // Quake II (USA)
@"SLPS-02909" : @4, // Simple 1500 Series Vol. 34 - The Quiz Bangumi (Japan)
@"SLPS-03384" : @4, // Nice Price Series Vol. 06 - Quiz de Battle (Japan)
@"SLES-03511" : @4, // Rageball (Europe)
@"SLUS-01461" : @4, // Rageball (USA)
@"SLPM-86272" : @4, // Rakugaki Showtime
@"SCES-00408" : @4, // Rally Cross (Europe)
@"SIPS-60022" : @4, // Rally Cross (Japan)
@"SCUS-94308" : @4, // Rally Cross (USA)
@"SLES-01103" : @4, // Rat Attack (Europe) (En,Fr,De,Es,It,Nl)
@"SLUS-00656" : @4, // Rat Attack! (USA)
@"SLES-00707" : @4, // Risk (Europe) (En,Fr,De,Es)
@"SLUS-00616" : @4, // Risk - The Game of Global Domination (USA)
@"SLES-02552" : @4, // Road Rash - Jailbreak (Europe) (En,Fr,De)
@"SLUS-01053" : @4, // Road Rash - Jailbreak (USA)
@"SCES-01630" : @4, // Running Wild (Europe)
@"SCUS-94272" : @4, // Running Wild (USA)
@"SLES-00217" : @4, // Sampras Extreme Tennis (Europe) (En,Fr,De,Es,It)
@"SLPS-00594" : @4, // Sampras Extreme Tennis (Japan)
@"SLES-01286" : @4, // S.C.A.R.S. (Europe) (En,Fr,De,Es,It)
@"SLUS-00692" : @4, // S.C.A.R.S. (USA)
@"SLES-03642" : @4, // Scrabble (Europe) (En,De,Es)
@"SLUS-00903" : @4, // Scrabble (USA)
@"SLPS-02912" : @4, // SD Gundam - G Generation-F (Japan) (Disc 1)
@"SLPS-02913" : @4, // SD Gundam - G Generation-F (Japan) (Disc 2)
@"SLPS-02914" : @4, // SD Gundam - G Generation-F (Japan) (Disc 3)
@"SLPS-02915" : @4, // SD Gundam - G Generation-F (Japan) (Premium Disc)
@"SLPS-03195" : @4, // SD Gundam - G Generation-F.I.F (Japan)
@"SLPS-00785" : @4, // SD Gundam - GCentury (Japan) (v1.0) / (v1.1)
@"SLPS-01560" : @4, // SD Gundam - GGeneration (Japan) (v1.0) / (v1.1)
@"SLPS-01561" : @4, // SD Gundam - GGeneration (Premium Disc) (Japan)
@"SLPS-02200" : @4, // SD Gundam - GGeneration-0 (Japan) (Disc 1) (v1.0)
@"SLPS-02201" : @4, // SD Gundam - GGeneration-0 (Japan) (Disc 2) (v1.0)
@"SLPS-00637" : @4, // Shin Nihon Pro Wrestling - Toukon Retsuden 2 (Japan)
@"SLPS-01366" : @4, // Shin Nihon Pro Wrestling - Toukon Retsuden 3 (Japan)
@"SLPS-01314" : @4, // Shin Nihon Pro Wrestling - Toukon Retsuden 3 (Japan) (Antonio Inoki Intai Kinen Genteiban)
@"SLES-03776" : @4, // Sky Sports Football Quiz (Europe)
@"SLES-03856" : @4, // Sky Sports Football Quiz - Season 02 (Europe)
@"SLES-00076" : @4, // Slam 'n Jam '96 featuring Magic & Kareem (Europe)
@"SLPS-00426" : @4, // Magic Johnson to Kareem Abdul-Jabbar no Slam 'n Jam '96 (Japan)
@"SLUS-00022" : @4, // Slam 'n Jam '96 featuring Magic & Kareem (USA)
@"SLES-02194" : @4, // Sled Storm (Europe) (En,Fr,De,Es)
@"SLUS-00955" : @4, // Sled Storm (USA)
@"SLES-01972" : @4, // South Park - Chef's Luv Shack (Europe)
@"SLUS-00997" : @4, // South Park - Chef's Luv Shack (USA)
@"SCES-01763" : @4, // Speed Freaks (Europe)
@"SCUS-94563" : @4, // Speed Punks (USA)
@"SLES-00023" : @4, // Striker 96 (Europe) (v1.0)
@"SLPS-00127" : @4, // Striker - World Cup Premiere Stage (Japan)
@"SLUS-00210" : @4, // Striker 96 (USA)
@"SLES-01733" : @4, // UEFA Striker (Europe) (En,Fr,De,Es,It,Nl)
@"SLUS-01078" : @4, // Striker Pro 2000 (USA)
@"SLPS-01264" : @4, // Suchie-Pai Adventure - Doki Doki Nightmare (Japan) (Disc 1)
@"SLPS-01265" : @4, // Suchie-Pai Adventure - Doki Doki Nightmare (Japan) (Disc 2)
@"SLES-00213" : @4, // Syndicate Wars (Europe) (En,Fr,Es,It,Sv)
@"SLES-00212" : @4, // Syndicate Wars (Germany)
@"SLUS-00262" : @4, // Syndicate Wars (USA)
@"SLPS-01100" : @4, // Tales of Destiny (Japan) (v1.0) / (v1.1)
@"SLUS-00626" : @4, // Tales of Destiny (USA)
@"SLPS-03050" : @4, // Tales of Eternia (Japan) (Disc 1)
@"SLPS-03051" : @4, // Tales of Eternia (Japan) (Disc 2)
@"SLPS-03052" : @4, // Tales of Eternia (Japan) (Disc 3)
@"SLUS-01355" : @4, // Tales of Destiny II (USA) (Disc 1)
@"SLUS-01367" : @4, // Tales of Destiny II (USA) (Disc 2)
@"SLUS-01368" : @4, // Tales of Destiny II (USA) (Disc 3)
@"SLPS-01770" : @4, // Tales of Phantasia (Japan)
@"SCES-01923" : @4, // Team Buddies (Europe) (En,Fr,De)
@"SLUS-00869" : @4, // Team Buddies (USA)
@"SLES-00935" : @4, // Tennis Arena (Europe) (En,Fr,De,Es,It)
@"SLPS-01303" : @4, // Tennis Arena (Japan)
@"SLUS-00596" : @4, // Tennis Arena (USA)
@"SLPS-00321" : @4, // Tetris X (Japan)
@"SLES-01675" : @4, // Tiger Woods 99 USA Tour Golf (Australia)
@"SLES-01674" : @4, // Tiger Woods 99 PGA Tour Golf (Europe) (En,Fr,De,Es,Sv)
@"SLPS-02012" : @4, // Tiger Woods 99 PGA Tour Golf (Japan)
@"SLUS-00785" : @4, // Tiger Woods 99 PGA Tour Golf (USA) (v1.0) / (v1.1)
@"SLES-03337" : @4, // Tiger Woods USA Tour 2001 (Australia)
@"SLES-03148" : @4, // Tiger Woods PGA Tour Golf (Europe)
@"SLUS-01273" : @4, // Tiger Woods PGA Tour Golf (USA)
@"SLES-02595" : @4, // Tiger Woods USA Tour 2000 (Australia)
@"SLES-02551" : @4, // Tiger Woods PGA Tour 2000 (Europe) (En,Fr,De,Es,Sv)
@"SLUS-01054" : @4, // Tiger Woods PGA Tour 2000 (USA)
@"SLUS-00752" : @4, // Thrill Kill (USA) (Unreleased)
@"SLPS-01113" : @4, // Toshinden Card Quest (Japan)
@"SLES-00256" : @4, // Trash It (Europe) (En,Fr,De,Es,It)
@"SCUS-94249" : @4, // Twisted Metal III (USA) (v1.0) / (v1.1)
@"SCUS-94560" : @4, // Twisted Metal 4 (USA)
@"SLES-02806" : @4, // UEFA Challenge (Europe) (En,Fr,De,Nl)
@"SLES-02807" : @4, // UEFA Challenge (Europe) (Fr,Es,It,Pt)
@"SLES-01622" : @4, // UEFA Champions League - Season 1998-99 (Europe)
@"SLES-01745" : @4, // UEFA Champions League - Saison 1998-99 (Germany)
@"SLES-01746" : @4, // UEFA Champions League - Stagione 1998-99 (Italy)
@"SLES-02918" : @4, // Vegas Casino (Europe)
@"SLPS-00467" : @4, // Super Casino Special (Japan)
@"SLES-00761" : @4, // Viva Football (Europe) (En,Fr,De,Es,It,Pt)
@"SLES-01341" : @4, // Absolute Football (France) (En,Fr,De,Es,It,Pt)
@"SLUS-00953" : @4, // Viva Soccer (USA) (En,Fr,De,Es,It,Pt)
@"SLES-02193" : @4, // WCW Mayhem (Europe)
@"SLUS-00963" : @4, // WCW Mayhem (USA)
@"SLES-03806" : @4, // Westlife - Fan-O-Mania (Europe)
@"SLES-03779" : @4, // Westlife - Fan-O-Mania (Europe) (Fr,De)
@"SLES-00717" : @4, // World League Soccer '98 (Europe) (En,Es,It)
@"SLES-01166" : @4, // World League Soccer '98 (France)
@"SLES-01167" : @4, // World League Soccer '98 (Germany)
@"SLPS-01389" : @4, // World League Soccer (Japan)
@"SLES-02170" : @4, // Wu-Tang - Taste the Pain (Europe)
@"SLES-02171" : @4, // Wu-Tang - Shaolin Style (France)
@"SLES-02172" : @4, // Wu-Tang - Shaolin Style (Germany)
@"SLUS-00929" : @4, // Wu-Tang - Shaolin Style (USA)
@"SLES-01980" : @4, // WWF Attitude (Europe)
@"SLES-02255" : @4, // WWF Attitude (Germany)
@"SLUS-00831" : @4, // WWF Attitude (USA)
@"SLES-00286" : @4, // WWF In Your House (Europe)
@"SLPS-00695" : @4, // WWF In Your House (Japan)
@"SLUS-00246" : @4, // WWF In Your House (USA) (v1.0) / (v1.1)
@"SLES-02619" : @4, // WWF SmackDown! (Europe)
@"SLPS-02885" : @4, // Exciting Pro Wres (Japan)
@"SLUS-00927" : @4, // WWF SmackDown! (USA)
@"SLES-03251" : @4, // WWF SmackDown! 2 - Know Your Role (Europe)
@"SLPS-03122" : @4, // Exciting Pro Wres 2 (Japan)
@"SLUS-01234" : @4, // WWF SmackDown! 2 - Know Your Role (USA)
@"SLES-00804" : @4, // WWF War Zone (Europe)
@"SLUS-00495" : @4, // WWF War Zone (USA) (v1.0) / (v1.1)
@"SLPS-01849" : @4, // Zen Nihon Pro Wres - Ouja no Tamashii (Japan)
@"SLPS-02934" : @4, // Zen Nihon Pro Wres - Ouja no Tamashii (Japan) (Reprint)
@"SLES-01893" : @5, // Bomberman (Europe)
@"SLPS-01717" : @5, // Bomberman (Japan)
@"SLUS-01189" : @5, // Bomberman - Party Edition (USA)
@"SCES-01078" : @5, // Bomberman World (Europe) (En,Fr,De,Es,It)
@"SLPS-01155" : @5, // Bomberman World (Japan)
@"SLUS-00680" : @5, // Bomberman World (USA)
@"SCES-01312" : @5, // Devil Dice (Europe) (En,Fr,De,Es,It)
@"SCPS-10051" : @5, // XI [sai] (Japan) (En,Ja)
@"SLUS-00672" : @5, // Devil Dice (USA)
@"SLPS-02943" : @5, // DX Monopoly (Japan)
@"SLES-00865" : @5, // Overboard! (Europe)
@"SLUS-00558" : @5, // Shipwreckers! (USA)
@"SLES-01376" : @6, // Brunswick Circuit Pro Bowling (Europe)
@"SLUS-00571" : @6, // Brunswick Circuit Pro Bowling (USA)
@"SLUS-00769" : @6, // Game of Life, The (USA)
@"SLES-03362" : @6, // NBA Hoopz (Europe) (En,Fr,De)
@"SLUS-01331" : @6, // NBA Hoopz (USA)
@"SLES-00313" : @6, // NHL Powerplay (Europe)
@"SLPS-00595" : @6, // NHL Powerplay '96 (Japan)
@"SLUS-00227" : @6, // NHL Powerplay '96 (USA)
@"SLES-00284" : @6, // Space Jam (Europe)
@"SLPS-00697" : @6, // Space Jam (Japan)
@"SLUS-00243" : @6, // Space Jam (USA)
@"SLES-00534" : @6, // Ten Pin Alley (Europe)
@"SLUS-00377" : @6, // Ten Pin Alley (USA)
@"SLPS-01243" : @6, // Tenant Wars (Japan)
@"SLPM-86240" : @6, // SuperLite 1500 Series - Tenant Wars Alpha - SuperLite 1500 Version (Japan)
@"SLUS-01333" : @6, // Board Game - Top Shop (USA)
@"SLES-03830" : @8, // 2002 FIFA World Cup Korea Japan (Europe) (En,Sv)
@"SLES-03831" : @8, // Coupe du Monde FIFA 2002 (France)
@"SLES-03832" : @8, // 2002 FIFA World Cup Korea Japan (Germany)
@"SLES-03833" : @8, // 2002 FIFA World Cup Korea Japan (Italy)
@"SLES-03834" : @8, // 2002 FIFA World Cup Korea Japan (Spain)
@"SLUS-01449" : @8, // 2002 FIFA World Cup (USA) (En,Es)
@"SLES-01210" : @8, // Actua Soccer 3 (Europe)
@"SLES-01644" : @8, // Actua Soccer 3 (France)
@"SLES-01645" : @8, // Actua Soccer 3 (Germany)
@"SLES-01646" : @8, // Actua Soccer 3 (Italy)
@"SLPM-86044" : @8, // Break Point (Japan)
@"SLES-02618" : @8, // Brunswick Circuit Pro Bowling 2 (Europe)
@"SLUS-00856" : @8, // Brunswick Circuit Pro Bowling 2 (USA)
@"SCUS-94156" : @8, // Cardinal Syn (USA)
@"SLES-02948" : @8, // Chris Kamara's Street Soccer (Europe)
@"SLES-00080" : @8, // Supersonic Racers (Europe) (En,Fr,De,Es,It)
@"SLPS-01025" : @8, // Dare Devil Derby 3D (Japan)
@"SLUS-00300" : @8, // Dare Devil Derby 3D (USA)
@"SLES-00116" : @8, // FIFA Soccer 96 (Europe) (En,Fr,De,Es,It,Sv)
@"SLUS-00038" : @8, // FIFA Soccer 96 (USA)
@"SLES-00504" : @8, // FIFA 97 (Europe) (En,Fr,De,Es,It,Sv)
@"SLES-00505" : @8, // FIFA 97 (France) (En,Fr,De,Es,It,Sv)
@"SLES-00506" : @8, // FIFA 97 (Germany) (En,Fr,De,Es,It,Sv)
@"SLPS-00878" : @8, // FIFA Soccer 97 (Japan)
@"SLUS-00269" : @8, // FIFA Soccer 97 (USA)
@"SLES-00914" : @8, // FIFA - Road to World Cup 98 (Europe) (En,Fr,De,Es,Nl,Sv)
@"SLES-00915" : @8, // FIFA - En Route pour la Coupe du Monde 98 (France) (En,Fr,De,Es,Nl,Sv)
@"SLES-00916" : @8, // FIFA - Die WM-Qualifikation 98 (Germany) (En,Fr,De,Es,Nl,Sv)
@"SLES-00917" : @8, // FIFA - Road to World Cup 98 (Italy)
@"SLPS-01383" : @8, // FIFA - Road to World Cup 98 (Japan)
@"SLES-00918" : @8, // FIFA - Rumbo al Mundial 98 (Spain) (En,Fr,De,Es,Nl,Sv)
@"SLUS-00520" : @8, // FIFA - Road to World Cup 98 (USA) (En,Fr,De,Es,Nl,Sv)
@"SLES-01584" : @8, // FIFA 99 (Europe) (En,Fr,De,Es,Nl,Sv)
@"SLES-01585" : @8, // FIFA 99 (France) (En,Fr,De,Es,Nl,Sv)
@"SLES-01586" : @8, // FIFA 99 (Germany) (En,Fr,De,Es,Nl,Sv)
@"SLES-01587" : @8, // FIFA 99 (Italy)
@"SLPS-02309" : @8, // FIFA 99 - Europe League Soccer (Japan)
@"SLES-01588" : @8, // FIFA 99 (Spain) (En,Fr,De,Es,Nl,Sv)
@"SLUS-00782" : @8, // FIFA 99 (USA)
@"SLES-02315" : @8, // FIFA 2000 (Europe) (En,De,Es,Nl,Sv) (v1.0) / (v1.1)
@"SLES-02316" : @8, // FIFA 2000 (France)
@"SLES-02317" : @8, // FIFA 2000 (Germany) (En,De,Es,Nl,Sv)
@"SLES-02320" : @8, // FIFA 2000 (Greece)
@"SLES-02319" : @8, // FIFA 2000 (Italy)
@"SLPS-02675" : @8, // FIFA 2000 - Europe League Soccer (Japan)
@"SLES-02318" : @8, // FIFA 2000 (Spain) (En,De,Es,Nl,Sv)
@"SLUS-00994" : @8, // FIFA 2000 - Major League Soccer (USA) (En,De,Es,Nl,Sv)
@"SLES-03140" : @8, // FIFA 2001 (Europe) (En,De,Es,Nl,Sv)
@"SLES-03141" : @8, // FIFA 2001 (France)
@"SLES-03142" : @8, // FIFA 2001 (Germany) (En,De,Es,Nl,Sv)
@"SLES-03143" : @8, // FIFA 2001 (Greece)
@"SLES-03145" : @8, // FIFA 2001 (Italy)
@"SLES-03146" : @8, // FIFA 2001 (Spain) (En,De,Es,Nl,Sv)
@"SLUS-01262" : @8, // FIFA 2001 (USA)
@"SLES-03666" : @8, // FIFA Football 2002 (Europe) (En,De,Es,Nl,Sv)
@"SLES-03668" : @8, // FIFA Football 2002 (France)
@"SLES-03669" : @8, // FIFA Football 2002 (Germany) (En,De,Es,Nl,Sv)
@"SLES-03671" : @8, // FIFA Football 2002 (Italy)
@"SLES-03672" : @8, // FIFA Football 2002 (Spain) (En,De,Es,Nl,Sv)
@"SLUS-01408" : @8, // FIFA Soccer 2002 (USA) (En,Es)
@"SLES-03977" : @8, // FIFA Football 2003 (Europe) (En,Nl,Sv)
@"SLES-03978" : @8, // FIFA Football 2003 (France)
@"SLES-03979" : @8, // FIFA Football 2003 (Germany)
@"SLES-03980" : @8, // FIFA Football 2003 (Italy)
@"SLES-03981" : @8, // FIFA Football 2003 (Spain)
@"SLUS-01504" : @8, // FIFA Soccer 2003 (USA)
@"SLES-04115" : @8, // FIFA Football 2004 (Europe) (En,Nl,Sv)
@"SLES-04116" : @8, // FIFA Football 2004 (France)
@"SLES-04117" : @8, // FIFA Football 2004 (Germany)
@"SLES-04119" : @8, // FIFA Football 2004 (Italy)
@"SLES-04118" : @8, // FIFA Football 2004 (Spain)
@"SLUS-01578" : @8, // FIFA Soccer 2004 (USA) (En,Es)
@"SLES-04165" : @8, // FIFA Football 2005 (Europe) (En,Nl)
@"SLES-04166" : @8, // FIFA Football 2005 (France)
@"SLES-04168" : @8, // FIFA Football 2005 (Germany)
@"SLES-04167" : @8, // FIFA Football 2005 (Italy)
@"SLES-04169" : @8, // FIFA Football 2005 (Spain)
@"SLUS-01585" : @8, // FIFA Soccer 2005 (USA) (En,Es)
@"SLUS-01129" : @8, // FoxKids.com - Micro Maniacs Racing (USA)
@"SLES-03084" : @8, // Inspector Gadget - Gadget's Crazy Maze (Europe) (En,Fr,De,Es,It,Nl)
@"SLUS-01267" : @8, // Inspector Gadget - Gadget's Crazy Maze (USA) (En,Fr,De,Es,It,Nl)
@"SLUS-00500" : @8, // Jimmy Johnson's VR Football '98 (USA)
@"SLES-00436" : @8, // Madden NFL 97 (Europe)
@"SLUS-00018" : @8, // Madden NFL 97 (USA)
@"SLES-00904" : @8, // Madden NFL 98 (Europe)
@"SLUS-00516" : @8, // Madden NFL 98 (USA) / (Alt)
@"SLES-01427" : @8, // Madden NFL 99 (Europe)
@"SLUS-00729" : @8, // Madden NFL 99 (USA)
@"SLES-02192" : @8, // Madden NFL 2000 (Europe)
@"SLUS-00961" : @8, // Madden NFL 2000 (USA)
@"SLES-03067" : @8, // Madden NFL 2001 (Europe)
@"SLUS-01241" : @8, // Madden NFL 2001 (USA)
@"SLUS-01402" : @8, // Madden NFL 2002 (USA)
@"SLUS-01482" : @8, // Madden NFL 2003 (USA)
@"SLUS-01570" : @8, // Madden NFL 2004 (USA)
@"SLUS-01584" : @8, // Madden NFL 2005 (USA)
@"SLUS-00526" : @8, // March Madness '98 (USA)
@"SLUS-00559" : @8, // Micro Machines V3 (USA)
@"SLUS-00507" : @8, // Monopoly (USA)
@"SLUS-01178" : @8, // Monster Rancher Battle Card - Episode II (USA)
@"SLES-02299" : @8, // NBA Basketball 2000 (Europe) (En,Fr,De,Es,It)
@"SLUS-00926" : @8, // NBA Basketball 2000 (USA)
@"SLES-01003" : @8, // NBA Fastbreak '98 (Europe)
@"SLUS-00492" : @8, // NBA Fastbreak '98 (USA)
@"SLES-00171" : @8, // NBA in the Zone (Europe)
@"SLPS-00188" : @8, // NBA Power Dunkers (Japan)
@"SLUS-00048" : @8, // NBA in the Zone (USA)
@"SLES-00560" : @8, // NBA in the Zone 2 (Europe)
@"SLPM-86011" : @8, // NBA Power Dunkers 2 (Japan)
@"SLUS-00294" : @8, // NBA in the Zone 2 (USA)
@"SLES-00882" : @8, // NBA Pro 98 (Europe)
@"SLPM-86060" : @8, // NBA Power Dunkers 3 (Japan)
@"SLUS-00445" : @8, // NBA in the Zone '98 (USA) (v1.0) / (v1.1)
@"SLES-01970" : @8, // NBA Pro 99 (Europe)
@"SLPM-86176" : @8, // NBA Power Dunkers 4 (Japan)
@"SLUS-00791" : @8, // NBA in the Zone '99 (USA)
@"SLES-02513" : @8, // NBA in the Zone 2000 (Europe)
@"SLPM-86397" : @8, // NBA Power Dunkers 5 (Japan)
@"SLUS-01028" : @8, // NBA in the Zone 2000 (USA)
@"SLES-00225" : @8, // NBA Live 96 (Europe)
@"SLPS-00389" : @8, // NBA Live 96 (Japan)
@"SLUS-00060" : @8, // NBA Live 96 (USA)
@"SLES-00517" : @8, // NBA Live 97 (Europe) (En,Fr,De)
@"SLPS-00736" : @8, // NBA Live 97 (Japan)
@"SLUS-00267" : @8, // NBA Live 97 (USA)
@"SLES-00906" : @8, // NBA Live 98 (Europe) (En,Es,It)
@"SLES-00952" : @8, // NBA Live 98 (Germany)
@"SLPS-01296" : @8, // NBA Live 98 (Japan)
@"SLUS-00523" : @8, // NBA Live 98 (USA)
@"SLES-01446" : @8, // NBA Live 99 (Europe)
@"SLES-01455" : @8, // NBA Live 99 (Germany)
@"SLES-01456" : @8, // NBA Live 99 (Italy)
@"SLPS-02033" : @8, // NBA Live 99 (Japan)
@"SLES-01457" : @8, // NBA Live 99 (Spain)
@"SLUS-00736" : @8, // NBA Live 99 (USA)
@"SLES-02358" : @8, // NBA Live 2000 (Europe)
@"SLES-02360" : @8, // NBA Live 2000 (Germany)
@"SLES-02361" : @8, // NBA Live 2000 (Italy)
@"SLPS-02603" : @8, // NBA Live 2000 (Japan)
@"SLES-02362" : @8, // NBA Live 2000 (Spain)
@"SLUS-00998" : @8, // NBA Live 2000 (USA)
@"SLES-03128" : @8, // NBA Live 2001 (Europe)
@"SLES-03129" : @8, // NBA Live 2001 (France)
@"SLES-03130" : @8, // NBA Live 2001 (Germany)
@"SLES-03131" : @8, // NBA Live 2001 (Italy)
@"SLES-03132" : @8, // NBA Live 2001 (Spain)
@"SLUS-01271" : @8, // NBA Live 2001 (USA)
@"SLES-03718" : @8, // NBA Live 2002 (Europe)
@"SLES-03719" : @8, // NBA Live 2002 (France)
@"SLES-03720" : @8, // NBA Live 2002 (Germany)
@"SLES-03721" : @8, // NBA Live 2002 (Italy)
@"SLES-03722" : @8, // NBA Live 2002 (Spain)
@"SLUS-01416" : @8, // NBA Live 2002 (USA)
@"SLES-03982" : @8, // NBA Live 2003 (Europe)
@"SLES-03969" : @8, // NBA Live 2003 (France)
@"SLES-03968" : @8, // NBA Live 2003 (Germany)
@"SLES-03970" : @8, // NBA Live 2003 (Italy)
@"SLES-03971" : @8, // NBA Live 2003 (Spain)
@"SLUS-01483" : @8, // NBA Live 2003 (USA)
@"SCES-00067" : @8, // Total NBA '96 (Europe)
@"SIPS-60008" : @8, // Total NBA '96 (Japan)
@"SCUS-94500" : @8, // NBA Shoot Out (USA)
@"SCES-00623" : @8, // Total NBA '97 (Europe)
@"SIPS-60015" : @8, // Total NBA '97 (Japan)
@"SCUS-94552" : @8, // NBA Shoot Out '97 (USA)
@"SCES-01079" : @8, // Total NBA 98 (Europe)
@"SCUS-94171" : @8, // NBA ShootOut 98 (USA)
@"SCUS-94561" : @8, // NBA ShootOut 2000 (USA)
@"SCUS-94581" : @8, // NBA ShootOut 2001 (USA)
@"SCUS-94641" : @8, // NBA ShootOut 2002 (USA)
@"SCUS-94673" : @8, // NBA ShootOut 2003 (USA)
@"SCUS-94691" : @8, // NBA ShootOut 2004 (USA)
@"SLUS-00142" : @8, // NCAA Basketball Final Four 97 (USA)
@"SCUS-94264" : @8, // NCAA Final Four 99 (USA)
@"SCUS-94562" : @8, // NCAA Final Four 2000 (USA)
@"SCUS-94579" : @8, // NCAA Final Four 2001 (USA)
@"SLUS-00514" : @8, // NCAA Football 98 (USA)
@"SLUS-00688" : @8, // NCAA Football 99 (USA)
@"SLUS-00932" : @8, // NCAA Football 2000 (USA) (v1.0) / (v1.1)
@"SLUS-01219" : @8, // NCAA Football 2001 (USA)
@"SCUS-94509" : @8, // NCAA Football GameBreaker (USA)
@"SCUS-94172" : @8, // NCAA GameBreaker 98 (USA)
@"SCUS-94246" : @8, // NCAA GameBreaker 99 (USA)
@"SCUS-94557" : @8, // NCAA GameBreaker 2000 (USA)
@"SCUS-94573" : @8, // NCAA GameBreaker 2001 (USA)
@"SLUS-00805" : @8, // NCAA March Madness 99 (USA)
@"SLUS-01023" : @8, // NCAA March Madness 2000 (USA)
@"SLUS-01320" : @8, // NCAA March Madness 2001 (USA)
@"SCES-00219" : @8, // NFL GameDay (Europe)
@"SCUS-94505" : @8, // NFL GameDay (USA)
@"SCUS-94510" : @8, // NFL GameDay 97 (USA)
@"SCUS-94173" : @8, // NFL GameDay 98 (USA)
@"SCUS-94234" : @8, // NFL GameDay 99 (USA) (v1.0) / (v1.1)
@"SCUS-94556" : @8, // NFL GameDay 2000 (USA)
@"SCUS-94575" : @8, // NFL GameDay 2001 (USA)
@"SCUS-94639" : @8, // NFL GameDay 2002 (USA)
@"SCUS-94665" : @8, // NFL GameDay 2003 (USA)
@"SCUS-94690" : @8, // NFL GameDay 2004 (USA)
@"SCUS-94695" : @8, // NFL GameDay 2005 (USA)
@"SLES-00449" : @8, // NFL Quarterback Club 97 (Europe)
@"SLUS-00011" : @8, // NFL Quarterback Club 97 (USA)
@"SCUS-94420" : @8, // NFL Xtreme 2 (USA)
@"SLES-00492" : @8, // NHL 97 (Europe)
@"SLES-00533" : @8, // NHL 97 (Germany)
@"SLPS-00861" : @8, // NHL 97 (Japan)
@"SLUS-00030" : @8, // NHL 97 (USA)
@"SLES-00907" : @8, // NHL 98 (Europe) (En,Sv,Fi)
@"SLES-00512" : @8, // NHL 98 (Germany)
@"SLUS-00519" : @8, // NHL 98 (USA)
@"SLES-01445" : @8, // NHL 99 (Europe) (En,Fr,Sv,Fi)
@"SLES-01458" : @8, // NHL 99 (Germany)
@"SLUS-00735" : @8, // NHL 99 (USA)
@"SLES-02225" : @8, // NHL 2000 (Europe) (En,Sv,Fi)
@"SLES-02227" : @8, // NHL 2000 (Germany)
@"SLUS-00965" : @8, // NHL 2000 (USA)
@"SLES-03139" : @8, // NHL 2001 (Europe) (En,Sv,Fi)