-
Notifications
You must be signed in to change notification settings - Fork 839
Expand file tree
/
Copy pathAtari - Jaguar.dat
More file actions
2698 lines (2697 loc) · 144 KB
/
Atari - Jaguar.dat
File metadata and controls
2698 lines (2697 loc) · 144 KB
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
clrmamepro (
name "Atari - Jaguar"
description "Atari - Jaguar"
version "2024.09.27"
homepage "http://github.com/robloach/libretro-dats"
)
game (
name "1943 (World) (Aftermarket) (Unl)"
description "1943 (World) (Aftermarket) (Unl)"
rom ( name "1943 (World) (Aftermarket) (Unl).j64" size 4194304 crc ED88E869 md5 658EFB8C5EC313BEF96CDAED874BFE1F sha1 710D813A581EB07D89E7CB8E1C30CE797747B520 )
)
game (
name "1943 (World) (Aftermarket) (Unl)"
description "1943 (World) (Aftermarket) (Unl)"
rom ( name "1943 (World) (Aftermarket) (Unl).rom" size 4186112 crc 95FD1E88 md5 CB10327E9057903B19C83E2AE62F4EC2 sha1 F2631769E99BCA937EDC34546307D706EC746528 )
)
game (
name "2048 (World) (Aftermarket) (Unl)"
description "2048 (World) (Aftermarket) (Unl)"
rom ( name "2048 (World) (Aftermarket) (Unl).j64" size 1048576 crc ED66D83E md5 0277A480B3C3CFA204D3FE1DEBC450DB sha1 548AD888D2D8B8D50177D67E036436899F667D15 )
)
game (
name "2048 (World) (Aftermarket) (Unl)"
description "2048 (World) (Aftermarket) (Unl)"
rom ( name "2048 (World) (Aftermarket) (Unl).rom" size 1040384 crc 86411EDA md5 08D14CFB678DADFDBEA9E2DC02849F98 sha1 EA555F264471986FCB3B3D5E8AC8C847E6589CA3 )
)
game (
name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
description "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
rom ( name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl).cof" size 1006649 crc 032EDD1D md5 77E9DAA8A4ED1E20ABEAB09F0F5776BC sha1 D03DA34B176583E4DD6BEAB197CD62D539AE9669 )
)
game (
name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
description "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
rom ( name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl).j64" size 1048576 crc 495A2085 md5 78651B554407C9DCE8815B320B202237 sha1 1A889C901642E18FDAEB40D0692C9EE055DA01EB )
)
game (
name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
description "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl)"
rom ( name "Abyss (World) (v0.74) (Proto) (Aftermarket) (Unl).rom" size 1040384 crc 227DE661 md5 4217FC77B12BAE8061F4D617A2ACFBC6 sha1 8829CF673D8C676F0CBCEB4E09B1CE822FE886F1 )
)
game (
name "Action Fighter (World) (Aftermarket) (Unl)"
description "Action Fighter (World) (Aftermarket) (Unl)"
rom ( name "Action Fighter (World) (Aftermarket) (Unl).j64" size 2097152 crc 9203A13D md5 A98F01A1611F066C798C857448BA0ED3 sha1 054FE3556FC2CA4EF1CA0CBAD61C4DBF0176C94E )
)
game (
name "Action Fighter (World) (Aftermarket) (Unl)"
description "Action Fighter (World) (Aftermarket) (Unl)"
rom ( name "Action Fighter (World) (Aftermarket) (Unl).rom" size 2088960 crc 6AB13181 md5 307F78ED01FAD9FFA62464C87624CDBC sha1 0E3DA39AE96EEE62C78DA52D2A825CB9D9C9D0C7 )
)
game (
name "Aircars (USA) (Beta)"
description "Aircars (USA) (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "14"
region "USA"
rom ( name "Aircars (USA) (Beta) (1994-11-14).j64" size 2097152 crc 53E35744 md5 F68516A63647742E94096C128804DF26 sha1 4E55A5991725A4B557F4DAF75A0FA38EC667217A )
)
game (
name "Aircars (USA) (Beta)"
description "Aircars (USA) (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "14"
region "USA"
rom ( name "Aircars (USA) (Beta) (1994-11-14).rom" size 2088960 crc CFDB57C6 md5 1D6942892F80F7C369236E96979CA12A sha1 F5992688C85833FEE82E04BE274143CF0366F428 )
)
game (
name "Aircars (World) (Aftermarket) (Unl)"
description "Aircars (World) (Aftermarket) (Unl)"
rom ( name "Aircars (World) (Aftermarket) (Unl).j64" size 2097152 crc 40E1A1D0 md5 45E12558E1B9EDA1B66B86F68F995F2A sha1 533C497761CC802624708108BC9EF6E7C4F40296 )
)
game (
name "Aircars (World) (Aftermarket) (Unl)"
description "Aircars (World) (Aftermarket) (Unl)"
rom ( name "Aircars (World) (Aftermarket) (Unl).rom" size 2088960 crc 9938A06C md5 0D6A65C6C0D108AFCFDB22BB1D2B55CB sha1 D38590BB9C57032A1CEF08BB9E0D86282D7D0C35 )
)
game (
name "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl)"
description "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl)"
rom ( name "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl).j64" size 6291456 crc 419D26F0 md5 4BA072B0D3A31F7C0D58E8FCF22F6A34 sha1 FD6BC087448A258039AAA0BA556EAFA9931B7983 )
)
game (
name "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl)"
description "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl)"
rom ( name "Alice's Mom's Rescue (World) (En,Fr,De,Es,It) (Aftermarket) (Unl).rom" size 6283264 crc 2FFD99FE md5 F11F06533B17D66F66B59A1D5C01CE51 sha1 B901037DD5AFB7BE656393909B9C6ECBDA64BF2C )
)
game (
name "Alien Syndrome (World) (Aftermarket) (Unl)"
description "Alien Syndrome (World) (Aftermarket) (Unl)"
rom ( name "Alien Syndrome (World) (Aftermarket) (Unl).j64" size 2097152 crc 42B4C7FD md5 3A7E064D7D9FFEC766D41B3FBC583E99 sha1 0ACED9880B4A6D574A5886692201C8022AD0560F )
)
game (
name "Alien Syndrome (World) (Aftermarket) (Unl)"
description "Alien Syndrome (World) (Aftermarket) (Unl)"
rom ( name "Alien Syndrome (World) (Aftermarket) (Unl).rom" size 2088960 crc BA065741 md5 76DD9E477F1C014804E4CAABDEE85426 sha1 C52D800A5CCCC54B264C8073E2B67F5A091C0566 )
)
game (
name "Alien vs Predator (World)"
description "Alien vs Predator (World)"
rom ( name "Alien vs Predator (World).j64" size 4194304 crc DC187F82 md5 96BC77CFD1B2DF85B5E6AE05594E74B0 sha1 FD8C89250EBC1E403838B2E589D1F69E3FE2FE02 )
)
game (
name "Alien vs Predator (World)"
description "Alien vs Predator (World)"
rom ( name "Alien vs Predator (World).rom" size 4186112 crc 3EAECB25 md5 15D9864CE22A8786151928F5BF613B7B sha1 86FD0C17C4F115CF19B96F9986446B9FC0E7DA60 )
)
game (
name "Alien vs Predator (World) (Beta)"
description "Alien vs Predator (World) (Beta)"
releaseyear "1993"
releasemonth "08"
releaseday "18"
rom ( name "Alien vs Predator (World) (Beta) (1993-08-18).j64" size 2097152 crc 3153D470 md5 D126E7FA72C99EF92A132E4E1CE18B6C sha1 80ED1EE5B8ACADDFB64A5C0BBDA2BFC14BDB5DA5 )
)
game (
name "Alien vs Predator (World) (Beta)"
description "Alien vs Predator (World) (Beta)"
releaseyear "1993"
releasemonth "08"
releaseday "18"
rom ( name "Alien vs Predator (World) (Beta) (1993-08-18).rom" size 2088960 crc C9E144CC md5 BBB8EFDD570D268F86A14E0893BA3E5F sha1 5F7EEA52F9204749FBA508EE70349C3F42CD0928 )
)
game (
name "Alien vs Predator (World) (Beta)"
description "Alien vs Predator (World) (Beta)"
releaseyear "1993"
releasemonth "10"
releaseday "13"
rom ( name "Alien vs Predator (World) (Beta) (1993-10-13).j64" size 1048576 crc B4E7BC59 md5 750106D9EC9AA7FEA0326EB3397755DD sha1 261667E4AAB6239ECF3A416F5C2443BF092735CC )
)
game (
name "Alien vs Predator (World) (Beta)"
description "Alien vs Predator (World) (Beta)"
releaseyear "1993"
releasemonth "10"
releaseday "13"
rom ( name "Alien vs Predator (World) (Beta) (1993-10-13).rom" size 1040384 crc DFC07ABD md5 8BDFC02F6542D95E3582DB6757E33474 sha1 A7356D2DC9D235B2A87508B41AEDBD5EACC7399D )
)
game (
name "Alien vs Predator (World) (v0.93) (Beta)"
description "Alien vs Predator (World) (v0.93) (Beta)"
releaseyear "1994"
releasemonth "04"
releaseday "08"
rom ( name "Alien vs Predator (World) (v0.93) (Beta) (1994-04-08).j64" size 2097152 crc E65DA590 md5 51AE6D493492EBF9CA3B3BD919E46FC4 sha1 1189AA22A427D81EA0BD68BF58258C8B1089614B )
)
game (
name "Alien vs Predator (World) (v0.93) (Beta)"
description "Alien vs Predator (World) (v0.93) (Beta)"
releaseyear "1994"
releasemonth "04"
releaseday "08"
rom ( name "Alien vs Predator (World) (v0.93) (Beta) (1994-04-08).rom" size 2088960 crc 1EEF352C md5 2B299E92E82031A31235DA74850670CF sha1 C029A536D6E47E11D107A7213F175382E2ACEBD8 )
)
game (
name "Arena Football '95 (World) (Aftermarket) (Unl)"
description "Arena Football '95 (World) (Aftermarket) (Unl)"
rom ( name "Arena Football '95 (World) (Aftermarket) (Unl).j64" size 4194304 crc 199B9D83 md5 A73C0E4F3A0D3DE6C40688FF66EB4B6E sha1 542063A5B27659781A85821F61E85CD89EA59AB3 )
)
game (
name "Arena Football '95 (World) (Aftermarket) (Unl)"
description "Arena Football '95 (World) (Aftermarket) (Unl)"
rom ( name "Arena Football '95 (World) (Aftermarket) (Unl).rom" size 4186112 crc 61EE6B62 md5 7B9C10DCB2364AD8A11C18FC8BE5C92F sha1 49FCE6385856239E133A66962EA7C8F60ECDD7D6 )
)
game (
name "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl)"
description "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl)"
rom ( name "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl).j64" size 4194304 crc B08D343D md5 5260961F3BE1F7E338353555A38674DD sha1 CE8E9D663F4961B9630EEC91CDE3D68F33F38A60 )
)
game (
name "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl)"
description "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl)"
rom ( name "Arkanoid - Revenge of DoH (World) (Aftermarket) (Unl).rom" size 4186112 crc C8F8C2DC md5 AD54EEF921CD544FF8FA9D304839367E sha1 2C072BC6D530CEB4DDE999188677557877C61A33 )
)
game (
name "Assassin, The (World) (Demo 1) (Aftermarket) (Unl)"
description "Assassin, The (World) (Demo 1) (Aftermarket) (Unl)"
rom ( name "Assassin, The (World) (Demo 1) (Aftermarket) (Unl).j64" size 1048576 crc 33A1CF52 md5 52A8E41F023CCA3651B7AD5977B91510 sha1 8F344BC764849FA2CBF31FD0D0752709F7029698 )
)
game (
name "Assassin, The (World) (Demo 1) (Aftermarket) (Unl)"
description "Assassin, The (World) (Demo 1) (Aftermarket) (Unl)"
rom ( name "Assassin, The (World) (Demo 1) (Aftermarket) (Unl).rom" size 1040384 crc 588609B6 md5 9F196ABED53352905901EF3313968C1A sha1 936AFB5603152CA5D2FE1EB12E51B039438729F6 )
)
game (
name "Assassin, The (World) (Demo 2) (Aftermarket) (Unl)"
description "Assassin, The (World) (Demo 2) (Aftermarket) (Unl)"
rom ( name "Assassin, The (World) (Demo 2) (Aftermarket) (Unl).j64" size 1048576 crc 843F1D84 md5 94BCE0A9674324ED468454792A9FF0AD sha1 6398A8E15992F2511DA995DE3B76BE925C6B6A59 )
)
game (
name "Assassin, The (World) (Demo 2) (Aftermarket) (Unl)"
description "Assassin, The (World) (Demo 2) (Aftermarket) (Unl)"
rom ( name "Assassin, The (World) (Demo 2) (Aftermarket) (Unl).rom" size 1040384 crc EF18DB60 md5 6E671B4C0506CCFF78E7052E503AC715 sha1 88652F77908A6F81B560F060D092A75E36C58690 )
)
game (
name "Asteroids (World) (Aftermarket) (Unl)"
description "Asteroids (World) (Aftermarket) (Unl)"
rom ( name "Asteroids (World) (Aftermarket) (Unl).j64" size 1048576 crc 684E16A1 md5 8BE4D0129D50B53243F2B904D6AACC40 sha1 635F254818D9B382F5FFCD81B4D46D73DDFB5363 )
)
game (
name "Asteroids (World) (Aftermarket) (Unl)"
description "Asteroids (World) (Aftermarket) (Unl)"
rom ( name "Asteroids (World) (Aftermarket) (Unl).rom" size 1040384 crc 0369D045 md5 B6F644876B1EC7453F752918CB6D02DE sha1 98FA69271C86F6B0CA63D80862D761CB8C10DEB4 )
)
game (
name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
description "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
rom ( name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl).abs" size 1832003 crc D49CAD3B md5 3935823C3173D807F5D0A722BAF092A6 sha1 A0E5A35FB485B39DBD6B7AB39C0E94BEE60D2876 )
)
game (
name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
description "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
rom ( name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl).j64" size 2097152 crc E84C8666 md5 1BC4610B8605B38E1BF02D0391148918 sha1 30718D3A45B787620572CD2FE4DAF754BF2ED409 )
)
game (
name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
description "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl)"
rom ( name "AstroStorm (World) (v1.43) (Digital) (Aftermarket) (Unl).rom" size 2088960 crc 10FE16DA md5 045E1655BB3349BC8CD3404ECEA5EB7B sha1 02C3B87D32976119E8FB8047B72D71377D4E4D72 )
)
game (
name "Atari Karts (World)"
description "Atari Karts (World)"
rom ( name "Atari Karts (World).j64" size 4194304 crc E28756DE md5 CB492F093CD9E22A913D158741E8F00A sha1 9C96E6C2195CE56AA930E677A041B35BD9B8BC7E )
)
game (
name "Atari Karts (World)"
description "Atari Karts (World)"
rom ( name "Atari Karts (World).rom" size 4186112 crc F816C3E6 md5 33BB6D4D2AA39989E9AA650E4CBEEE88 sha1 5168453C88617A58BC33CF7C18631108D6376A81 )
)
game (
name "Atari Karts (World) (Beta)"
description "Atari Karts (World) (Beta)"
rom ( name "Atari Karts (World) (Beta).j64" size 4194304 crc 52C996E0 md5 F6AC0FEA7764CF4719005C49F2281024 sha1 1BDAAA42B38F4C93A4ABA34930E3CA406AC976C9 )
)
game (
name "Atari Karts (World) (Beta)"
description "Atari Karts (World) (Beta)"
rom ( name "Atari Karts (World) (Beta).rom" size 4186112 crc 2ABC6001 md5 DEAE794870CB3387FE1511799B3A1FCB sha1 5B61F7CFAF6736DDBD8F6E873D850D96951D34E4 )
)
game (
name "Atomic (World) (Aftermarket) (Unl)"
description "Atomic (World) (Aftermarket) (Unl)"
rom ( name "Atomic (World) (Aftermarket) (Unl).j64" size 1048576 crc F0DA5ECA md5 C8A0D79D77CF00666A9F2AF4AF6C4DB5 sha1 6ECB62FC97A5188958F9CD9BD75E7357519D19D9 )
)
game (
name "Atomic (World) (Aftermarket) (Unl)"
description "Atomic (World) (Aftermarket) (Unl)"
rom ( name "Atomic (World) (Aftermarket) (Unl).rom" size 1040384 crc 9BFD982E md5 42F0819BFF470FA09D6FAEC2E154632B sha1 8F56432DC1869A43839A3B9D4251DC9E7B7B3279 )
)
game (
name "Atomic Reloaded (World) (Aftermarket) (Unl)"
description "Atomic Reloaded (World) (Aftermarket) (Unl)"
rom ( name "Atomic Reloaded (World) (Aftermarket) (Unl).j64" size 2097152 crc FF38C49E md5 4E46BB2A331CF6B574FB0FFA7BF700B3 sha1 992AABF198B924A7746E3BA6BA8DD368452299A7 )
)
game (
name "Atomic Reloaded (World) (Aftermarket) (Unl)"
description "Atomic Reloaded (World) (Aftermarket) (Unl)"
rom ( name "Atomic Reloaded (World) (Aftermarket) (Unl).rom" size 2088960 crc 078A5422 md5 C4EEB2DC08B195F52FFDDB5D6006338A sha1 E820131D81EB54A537BAF9D160FC25FA93B60382 )
)
game (
name "Attack of the Mutant Penguins (World)"
description "Attack of the Mutant Penguins (World)"
rom ( name "Attack of the Mutant Penguins (World).j64" size 2097152 crc CD5BF827 md5 3AB524A6A18F79B5E7FD0BB189FE8170 sha1 01DC37E7A9D03246A93BCB8C6A3116CB6391ED31 )
)
game (
name "Attack of the Mutant Penguins (World)"
description "Attack of the Mutant Penguins (World)"
rom ( name "Attack of the Mutant Penguins (World).rom" size 2088960 crc 66A1567C md5 DBBA0926AA87529BD6007FE8B4A7282A sha1 53F21A5D8B382A9934CB0907A65B28A519DE2C55 )
)
game (
name "Bad Apple (World) (Color Version) (Aftermarket) (Unl)"
description "Bad Apple (World) (Color Version) (Aftermarket) (Unl)"
rom ( name "Bad Apple (World) (Color Version) (Aftermarket) (Unl).j64" size 6291456 crc C7F71D13 md5 612C0D8E5127462A489990D6B0A4A150 sha1 417338E636DBADD22751BD2C895461FCFD41FC12 )
)
game (
name "Bad Apple (World) (Color Version) (Aftermarket) (Unl)"
description "Bad Apple (World) (Color Version) (Aftermarket) (Unl)"
rom ( name "Bad Apple (World) (Color Version) (Aftermarket) (Unl).rom" size 6283264 crc A997A21D md5 6F687120AD0DBA46EFE6BA768BD17212 sha1 2493FFFCDED46757ACEFC9D53099155D7F4469C8 )
)
game (
name "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl)"
description "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl)"
rom ( name "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl).j64" size 6291456 crc 4C668398 md5 BA14DA48F1857181ECD8060A30EE0C1F sha1 A622FEF20C11DC8634623FB77F819A24E245C58E )
)
game (
name "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl)"
description "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl)"
rom ( name "Bad Apple (World) (Monochrome Version) (Aftermarket) (Unl).rom" size 6283264 crc 22063C96 md5 65579D914F04B1A45CEAE8644CB80D07 sha1 757FA88F1894A36CF734E9F8846B1015B6468132 )
)
game (
name "Badlands (World) (Aftermarket) (Unl)"
description "Badlands (World) (Aftermarket) (Unl)"
rom ( name "Badlands (World) (Aftermarket) (Unl).j64" size 4194304 crc F503B4EE md5 4100A7BD877FD4EA3D3070AA17011AE0 sha1 7E3133DC97E740C50241679B52436F33E868578E )
)
game (
name "Badlands (World) (Aftermarket) (Unl)"
description "Badlands (World) (Aftermarket) (Unl)"
rom ( name "Badlands (World) (Aftermarket) (Unl).rom" size 4186112 crc 8D76420F md5 03A867D0DE5D5F8FA689FD0AA16186F1 sha1 E23C943E73DA18C54C0C90266BBE8E0AD6E94A71 )
)
game (
name "Barbarian (World) (AMIGA) (Aftermarket) (Unl)"
description "Barbarian (World) (AMIGA) (Aftermarket) (Unl)"
rom ( name "Barbarian (World) (AMIGA) (Aftermarket) (Unl).j64" size 1048576 crc DEF4B8D3 md5 B77B6518646D2AFD76586F8474739215 sha1 F5CE096A9E748E6F1A1BA13FAC256A0F3CCB0BCE )
)
game (
name "Barbarian (World) (AMIGA) (Aftermarket) (Unl)"
description "Barbarian (World) (AMIGA) (Aftermarket) (Unl)"
rom ( name "Barbarian (World) (AMIGA) (Aftermarket) (Unl).rom" size 1040384 crc B5D37E37 md5 82135FCEE99354973243F9142136D8EC sha1 8AC53807DA9C7560154E741D93FCA237C07B062F )
)
game (
name "Barbarian (World) (Atari ST) (Aftermarket) (Unl)"
description "Barbarian (World) (Atari ST) (Aftermarket) (Unl)"
rom ( name "Barbarian (World) (Atari ST) (Aftermarket) (Unl).j64" size 2097152 crc 2D84A3BF md5 0A1D93E21F8F866E6D04B9CAA6C977DE sha1 0FC2E0A1EA8E839116DA14A7172C5CA07014C8E9 )
)
game (
name "Barbarian (World) (Atari ST) (Aftermarket) (Unl)"
description "Barbarian (World) (Atari ST) (Aftermarket) (Unl)"
rom ( name "Barbarian (World) (Atari ST) (Aftermarket) (Unl).rom" size 2088960 crc D5363303 md5 11B4B631B7D65882E18C0DE3613E1055 sha1 3C013CAFABB8F18754B217C4D519BFC658551B45 )
)
game (
name "Barkley Shut Up and Jam (USA) (Beta)"
description "Barkley Shut Up and Jam (USA) (Beta)"
region "USA"
rom ( name "Barkley Shut Up and Jam (USA) (Beta).j64" size 2097152 crc 3A3B1FD2 md5 A69B7A8A9A7A42B189AB48CE8E8587C1 sha1 988897FD517EBD86742971205F3B29F9D70B5686 )
)
game (
name "Barkley Shut Up and Jam (USA) (Beta)"
description "Barkley Shut Up and Jam (USA) (Beta)"
region "USA"
rom ( name "Barkley Shut Up and Jam (USA) (Beta).rom" size 2088960 crc C2898F6E md5 5F884A5052A4DDE4C896449B392AD4BF sha1 57B0340DD805B240ABCC761E4186AAC1D04C5F6C )
)
game (
name "Barkley Shut Up and Jam (World) (Aftermarket) (Unl)"
description "Barkley Shut Up and Jam (World) (Aftermarket) (Unl)"
rom ( name "Barkley Shut Up and Jam (World) (Aftermarket) (Unl).j64" size 4194304 crc AEA9D831 md5 7E06FE6E441707EBCDBD0DE5EC068C6E sha1 18535F5985C840AEFCE0FA639131CB83A8A647F9 )
)
game (
name "Barkley Shut Up and Jam (World) (Aftermarket) (Unl)"
description "Barkley Shut Up and Jam (World) (Aftermarket) (Unl)"
rom ( name "Barkley Shut Up and Jam (World) (Aftermarket) (Unl).rom" size 4186112 crc 93ECEF15 md5 B5C70890E32375EA7F91CF1DB388D298 sha1 A1667E30FC28E93D63D50050B989DB51D7528E3F )
)
game (
name "Battle Sphere (World) (Aftermarket) (Unl)"
description "Battle Sphere (World) (Aftermarket) (Unl)"
rom ( name "Battle Sphere (World) (Aftermarket) (Unl).j64" size 4194304 crc 5F2C2774 md5 984ED59D91435EC0D8193E168DF31C10 sha1 8F4C964D2411A52C64EEC1D1A3061F77117BB7A6 )
)
game (
name "Battle Sphere (World) (Aftermarket) (Unl)"
description "Battle Sphere (World) (Aftermarket) (Unl)"
rom ( name "Battle Sphere (World) (Aftermarket) (Unl).rom" size 4186112 crc AD6FE9B5 md5 6562144944B6FB86744757A5B99AE506 sha1 51A8269226015A4428F863EC9067D7E69762BFF3 )
)
game (
name "Battle Sphere Gold (World) (Aftermarket) (Unl)"
description "Battle Sphere Gold (World) (Aftermarket) (Unl)"
rom ( name "Battle Sphere Gold (World) (Aftermarket) (Unl).j64" size 4194304 crc 67F9AB3A md5 06F3A61FB712C581AEE3599F3A61FA61 sha1 49716A6A3A4C6ABEEA36040F26C4E8CF2A545DF7 )
)
game (
name "Battle Sphere Gold (World) (Aftermarket) (Unl)"
description "Battle Sphere Gold (World) (Aftermarket) (Unl)"
rom ( name "Battle Sphere Gold (World) (Aftermarket) (Unl).rom" size 4186112 crc D5727F02 md5 5C0B84A1A64DDBB4D3D2083958754CA5 sha1 1724B3163A68EB88D8A80564D58D12BC04AB6CC2 )
)
game (
name "Beach Volley (World) (Aftermarket) (Unl)"
description "Beach Volley (World) (Aftermarket) (Unl)"
rom ( name "Beach Volley (World) (Aftermarket) (Unl).j64" size 2097152 crc 644B64E3 md5 4F3E5E2F579C34E56AEB411DF93F45E0 sha1 E4032FDCC287490E030A0FE13B61B10BA2830AC0 )
)
game (
name "Beach Volley (World) (Aftermarket) (Unl)"
description "Beach Volley (World) (Aftermarket) (Unl)"
rom ( name "Beach Volley (World) (Aftermarket) (Unl).rom" size 2088960 crc 9CF9F45F md5 476C28F1F048F5DADE15682C20499A0C sha1 FEC058583D40ED4A2F29321B3431BFDE954CFE55 )
)
game (
name "Beast Busters (World) (Aftermarket) (Unl)"
description "Beast Busters (World) (Aftermarket) (Unl)"
rom ( name "Beast Busters (World) (Aftermarket) (Unl).j64" size 4194304 crc FE61553E md5 8E0A855C11A23333B7572D9E5EB3BDA7 sha1 ED323AD1993ADACBE1E379CFB549F6E3F50D6AE7 )
)
game (
name "Beast Busters (World) (Aftermarket) (Unl)"
description "Beast Busters (World) (Aftermarket) (Unl)"
rom ( name "Beast Busters (World) (Aftermarket) (Unl).rom" size 4186112 crc 8614A3DF md5 0792CD950DB60B492FBC3D551FF0267D sha1 A795DF35F3B8FB4F366A68E1740704277E43D4C6 )
)
game (
name "Beebris (World) (Aftermarket) (Unl)"
description "Beebris (World) (Aftermarket) (Unl)"
rom ( name "Beebris (World) (Aftermarket) (Unl).j64" size 1048576 crc A84955BA md5 C90B48D51CF9381EF00C24696BCCC1DE sha1 2419909334BCBD2E4F48CCD241D6C96F8462C0E6 )
)
game (
name "Beebris (World) (Aftermarket) (Unl)"
description "Beebris (World) (Aftermarket) (Unl)"
rom ( name "Beebris (World) (Aftermarket) (Unl).rom" size 1040384 crc C36E935E md5 6D5C27068B28B2F75FBD0E41B83475E0 sha1 31F12BF6F1B21FCFA737B7AEFDB2F0340D751C44 )
)
game (
name "Bionic Commando (World) (Aftermarket) (Unl)"
description "Bionic Commando (World) (Aftermarket) (Unl)"
rom ( name "Bionic Commando (World) (Aftermarket) (Unl).j64" size 4194304 crc EB007AD4 md5 7A3B945FF585B75F2DE2DA5F1E0CCD08 sha1 BDB3BBB252F944470AC9371122CAAD809A1E2FA1 )
)
game (
name "Bionic Commando (World) (Aftermarket) (Unl)"
description "Bionic Commando (World) (Aftermarket) (Unl)"
rom ( name "Bionic Commando (World) (Aftermarket) (Unl).rom" size 4186112 crc 93758C35 md5 DE7F43B49C6F0FF4480DCF92CBF2B7E8 sha1 F6F05EA22CE6DADDB3EDC11147506BD97D679BAD )
)
game (
name "Biopede (World) (v1.3) (Aftermarket) (Unl)"
description "Biopede (World) (v1.3) (Aftermarket) (Unl)"
rom ( name "Biopede (World) (v1.3) (Aftermarket) (Unl).j64" size 1048576 crc FDBA1EEA md5 BDEE76F33693807291F88DF5AE925B1A sha1 D576E0121A7CCFDA73FBF603CEAA629ED41ADA33 )
)
game (
name "Biopede (World) (v1.3) (Aftermarket) (Unl)"
description "Biopede (World) (v1.3) (Aftermarket) (Unl)"
rom ( name "Biopede (World) (v1.3) (Aftermarket) (Unl).rom" size 1040384 crc 969DD80E md5 5DE29B5E6689614FEBE5209122E8BBF3 sha1 74D1ED5EAC61CC8BA86B14C40196885598E20ABF )
)
game (
name "Black Lamp (World) (Aftermarket) (Unl)"
description "Black Lamp (World) (Aftermarket) (Unl)"
rom ( name "Black Lamp (World) (Aftermarket) (Unl).abs" size 1304472 crc F01101F4 md5 A1B81FB7568A84EFD3D1D65606175574 sha1 575DB0FDB0F7883B390758FCEEBB46B69AEFAA3B )
)
game (
name "Black Lamp (World) (Aftermarket) (Unl)"
description "Black Lamp (World) (Aftermarket) (Unl)"
rom ( name "Black Lamp (World) (Aftermarket) (Unl).j64" size 2097152 crc 8FBED449 md5 612334C91E8591BD3CA84A0F07D28FF5 sha1 4F9C4AAD5B0AE381B682FA520A3815A160913A18 )
)
game (
name "Black Lamp (World) (Aftermarket) (Unl)"
description "Black Lamp (World) (Aftermarket) (Unl)"
rom ( name "Black Lamp (World) (Aftermarket) (Unl).rom" size 2088960 crc 770C44F5 md5 BBE36DAFD1A9E21AA9D69CCA62ECC0E2 sha1 D21AA9ADF5F636CCD2342606CAC224C22BC23483 )
)
game (
name "Blackhole (World) (Proto) (Aftermarket) (Unl)"
description "Blackhole (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Blackhole (World) (Proto) (Aftermarket) (Unl).abs" size 1559144 crc 3502E5C3 md5 EACB4BCBA9DA156C19D1753C50C6D636 sha1 52C5C394D99B28C7CF2C169982D854416580FEFA )
)
game (
name "Blackhole (World) (Proto) (Aftermarket) (Unl)"
description "Blackhole (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Blackhole (World) (Proto) (Aftermarket) (Unl).j64" size 2097152 crc 189647A1 md5 AEF7A5CBF4137211A4B2CDC13BB0FD29 sha1 9DE79FE5D46C28909108EADEBB1C477E20502A36 )
)
game (
name "Blackhole (World) (Proto) (Aftermarket) (Unl)"
description "Blackhole (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Blackhole (World) (Proto) (Aftermarket) (Unl).rom" size 2088960 crc E024D71D md5 25DBC00A02B5C9B5684154CC2B6AA98B sha1 63AB05A3B66DF4FC18866C0226AF1A9DED791DD7 )
)
game (
name "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl)"
description "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl)"
rom ( name "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl).j64" size 2097152 crc 5C93E851 md5 3C589D0C1A2D214209D01B010675607D sha1 9EF38596EDE8222A3B4489FF99B1DD5661C5A444 )
)
game (
name "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl)"
description "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl)"
rom ( name "Block'em Sock'em (World) (Digital) (Aftermarket) (Unl).rom" size 2088960 crc A42178ED md5 5C56E1A04AF7C01162C300496A31239F sha1 7E8A0B22445F7A4B4FC2BC799DF04BE2F48DCA0E )
)
game (
name "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 1) (Aftermarket) (Unl).abs" size 1677010 crc D095927C md5 96E406424FFFAC11633107587E039735 sha1 D43B73DF8F26BF44B0E7C269AB69E36C82FD43FA )
)
game (
name "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 1) (Aftermarket) (Unl).j64" size 2097152 crc C74FDFF9 md5 29AFC0FA7AC730A2258B434B2E9640EE sha1 A7ECA4E5793EB8FF039E51A2758AFFF33BF152C0 )
)
game (
name "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 1) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 1) (Aftermarket) (Unl).rom" size 2088960 crc 3FFD4F45 md5 CAD6AC739685246596F7D9493F32C941 sha1 A8E1630E780EDCF66F8AEE042254733C54BF3C66 )
)
game (
name "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 2) (Aftermarket) (Unl).abs" size 1677456 crc 5CEE675B md5 27AEA6D45FA6D629410CD4C9EB2C4646 sha1 E0D671796C415302DDCF8A7A81E49AD73568090A )
)
game (
name "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 2) (Aftermarket) (Unl).j64" size 2097152 crc B87618C3 md5 C2D047A49935D24A6F1521F013B5A601 sha1 A0A56DB1E75EB9AE0EDFCC25033DC2629135D24E )
)
game (
name "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 2) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 2) (Aftermarket) (Unl).rom" size 2088960 crc 40C4887F md5 CCF24F7E5FDE02B32C7A54CFC58520E3 sha1 A71571C0B4775AA478D949B94B8B502E766354A2 )
)
game (
name "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 3) (Aftermarket) (Unl).abs" size 1254124 crc 5FF3C940 md5 531594565FA978BC161D64BDE2931867 sha1 953DF1FCF44FC62FE012460D9B7EE767CD6043CE )
)
game (
name "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 3) (Aftermarket) (Unl).j64" size 2097152 crc D79A5C86 md5 82CE799FF8719C9D9718C85CC387FC93 sha1 FFE449DEB1CDC8D82B93724B8D9054C29E4DE3E7 )
)
game (
name "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
description "Boingy (World) (Demo 3) (Aftermarket) (Unl)"
rom ( name "Boingy (World) (Demo 3) (Aftermarket) (Unl).rom" size 2088960 crc 2F28CC3A md5 3847ABB864D5B1D9D2CB371C06A2DB89 sha1 F24869C4A75DD7CC60051BF70F79921C49D40BBE )
)
game (
name "Breakout 2000 (USA, Europe)"
description "Breakout 2000 (USA, Europe)"
rom ( name "Breakout 2000 (USA, Europe).j64" size 2097152 crc B5604D40 md5 73A03AC854E2E87EE7CA1C42EF64A301 sha1 FE4C35C24BE8DF92F867B4FB42EB75A3FCC875E8 )
)
game (
name "Breakout 2000 (USA, Europe)"
description "Breakout 2000 (USA, Europe)"
rom ( name "Breakout 2000 (USA, Europe).rom" size 2088960 crc 4DD5C5DE md5 A4B4003C11B55D0B28AA34BB113BBDE4 sha1 512EE251E8FA7764105F4B0D4B636A6E6E2C3C1F )
)
game (
name "Breakout 2000 (USA, Europe) (Beta)"
description "Breakout 2000 (USA, Europe) (Beta)"
rom ( name "Breakout 2000 (USA, Europe) (Beta).j64" size 2097152 crc 20DBFF9F md5 242D383C944C8649F57EFE30F8A84215 sha1 C8F29D04DACCE1A83A1C93AB351737795D0F55DB )
)
game (
name "Breakout 2000 (USA, Europe) (Beta)"
description "Breakout 2000 (USA, Europe) (Beta)"
rom ( name "Breakout 2000 (USA, Europe) (Beta).rom" size 2088960 crc D8696F23 md5 D1B1BFB5845A09467B7601AD103734CE sha1 DD0505579035FD4B402BE64D975B41496FCFB4EE )
)
game (
name "Brett Hull Hockey (World) (Aftermarket) (Unl)"
description "Brett Hull Hockey (World) (Aftermarket) (Unl)"
rom ( name "Brett Hull Hockey (World) (Aftermarket) (Unl).j64" size 4194304 crc 91095DD3 md5 4C32A7A55AF8F6B24D570B6D2A83963B sha1 7F21C6DE18C46629C0D54E68143D619093B4B8D6 )
)
game (
name "Brett Hull Hockey (World) (Aftermarket) (Unl)"
description "Brett Hull Hockey (World) (Aftermarket) (Unl)"
rom ( name "Brett Hull Hockey (World) (Aftermarket) (Unl).rom" size 4186112 crc DCCDEF05 md5 E294D0251879E7E81291E3AC018261D1 sha1 181DC9C9CFC3E4AFC59D04EA13E5464A4A82F24F )
)
game (
name "Brutal Sports Football (World)"
description "Brutal Sports Football (World)"
rom ( name "Brutal Sports Football (World).j64" size 2097152 crc BCB1A4BF md5 CE6005897FF5E9AA4E992C76628B21C6 sha1 CDFEFDF28DD9127F7A9425088A1EE3EA88DFB618 )
)
game (
name "Brutal Sports Football (World)"
description "Brutal Sports Football (World)"
rom ( name "Brutal Sports Football (World).rom" size 2088960 crc 9C655C37 md5 DC5808FE55F9105FD6FB6FD220A35515 sha1 5129491A19588B8C7CB513E7F567585DE42F1549 )
)
game (
name "Bubble Bobble (World) (Aftermarket) (Unl)"
description "Bubble Bobble (World) (Aftermarket) (Unl)"
rom ( name "Bubble Bobble (World) (Aftermarket) (Unl).j64" size 2097152 crc 639B4E10 md5 CA739BD51DBCCA525700978E928AE6D6 sha1 4FDCECBF8165A5FA03701E1533C4F29F5AF4AD5D )
)
game (
name "Bubble Bobble (World) (Aftermarket) (Unl)"
description "Bubble Bobble (World) (Aftermarket) (Unl)"
rom ( name "Bubble Bobble (World) (Aftermarket) (Unl).rom" size 2088960 crc 9B29DEAC md5 44EBB09AD3781E4E3F01D267AE8B7423 sha1 AC0F96DD34BF7C7C8CA9BDD96627D0A849B6BB5D )
)
game (
name "Bubsy in Fractured Furry Tales (World)"
description "Bubsy in Fractured Furry Tales (World)"
rom ( name "Bubsy in Fractured Furry Tales (World).j64" size 2097152 crc 2E17D5DA md5 C3AD2C75C5339125661845720DA3895D sha1 752D6E1ED185F9DB49230F42319A573A44E32397 )
)
game (
name "Bubsy in Fractured Furry Tales (World)"
description "Bubsy in Fractured Furry Tales (World)"
rom ( name "Bubsy in Fractured Furry Tales (World).rom" size 2088960 crc 278C40BE md5 FE2751CA61154ECFA4F0AD4299A5DC54 sha1 0624C22E8DF7A70392D7B29993CF101A86484D17 )
)
game (
name "Burn Out (World) (Demo 1)"
description "Burn Out (World) (Demo 1)"
rom ( name "Burn Out (World) (Demo 1).j64" size 1048576 crc 701E7BBE md5 9ABAB8833D8F5602070F088E3321635F sha1 03D7DE3E0B220CAB3F13871D1403816972627569 )
)
game (
name "Burn Out (World) (Demo 1)"
description "Burn Out (World) (Demo 1)"
rom ( name "Burn Out (World) (Demo 1).rom" size 1040384 crc 1B39BD5A md5 623DD4EDDB3016DA8702DA0FDF5E1161 sha1 E5A88BC21A61106E47E9259FF6AA2334CCFCE5A0 )
)
game (
name "Burn Out (World) (Demo 2) (WCES 1995)"
description "Burn Out (World) (Demo 2) (WCES 1995)"
rom ( name "Burn Out (World) (Demo 2) (WCES 1995).j64" size 2097152 crc 0F698FB3 md5 4F7E1B03CCE05C75F91D12F7E751E1B2 sha1 EE5FEA3B99177D9E88AEEDCAD8F01173F1062B87 )
)
game (
name "Burn Out (World) (Demo 2) (WCES 1995)"
description "Burn Out (World) (Demo 2) (WCES 1995)"
rom ( name "Burn Out (World) (Demo 2) (WCES 1995).rom" size 2088960 crc 359A602E md5 56B13E2EC84D1933BA07421F1566562C sha1 937845CC00FB6A14B6AE42748AD02C82E04A86ED )
)
game (
name "Cannon Fodder (World)"
description "Cannon Fodder (World)"
rom ( name "Cannon Fodder (World).j64" size 2097152 crc BDA405C6 md5 4AA320637FFC598D7D9DB44085A88DF2 sha1 0C195676BE099F4594CE1D5A38303F6CCE899DC5 )
)
game (
name "Cannon Fodder (World)"
description "Cannon Fodder (World)"
rom ( name "Cannon Fodder (World).rom" size 2088960 crc 31EBF18B md5 460A0B1E5AA3D2D4D48D072E01343CDD sha1 ADD3CCD479AADB3A9B0596462801339C71088E6D )
)
game (
name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
description "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
rom ( name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl).abs" size 1549256 crc 33BA0691 md5 94E5A9B745B2BCBB495AC6ED3F306AAC sha1 BE0987EC587E1EF623EC86F903921E0C312EBFB8 )
)
game (
name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
description "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
rom ( name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl).j64" size 2097152 crc 505CE566 md5 5859F2E4141A0DBD982E9F0A4175371B sha1 8686D1AC81E54A581A72A3EC39CF4F3DD2A5E5BE )
)
game (
name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
description "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl)"
rom ( name "Caribean Tavern (World) (Proto) (GemTos 2023) (Aftermarket) (Unl).rom" size 2088960 crc A8EE75DA md5 8E03A7C24FF68CB5A8D3D2E543BC43CC sha1 BA536CB76D3BE43009731D615EE1F1C7A0FE69A4 )
)
game (
name "Checkered Flag (World)"
description "Checkered Flag (World)"
rom ( name "Checkered Flag (World).j64" size 2097152 crc FA7775AE md5 C77BA1AF9705265D4C0070541A5C4787 sha1 4D0CC8D248A8BD0FC4B8169C5D5772E59C073C59 )
)
game (
name "Checkered Flag (World)"
description "Checkered Flag (World)"
rom ( name "Checkered Flag (World).rom" size 2088960 crc 6BF22DD1 md5 B45C964FAA34AB254AB5A5121F9432E3 sha1 ED24557FBAA536273C6E3894AB1399A729FD5F22 )
)
game (
name "Checkered Flag (World) (Beta) (CES 1993)"
description "Checkered Flag (World) (Beta) (CES 1993)"
rom ( name "Checkered Flag (World) (Beta) (CES 1993).j64" size 1048576 crc CE94C0D5 md5 B6162E77821433B474FC25BE89795211 sha1 BF00EC1FCA2A97BEAF28D52140DF2006B1120C67 )
)
game (
name "Checkered Flag (World) (Beta) (CES 1993)"
description "Checkered Flag (World) (Beta) (CES 1993)"
rom ( name "Checkered Flag (World) (Beta) (CES 1993).rom" size 1040384 crc A5B30631 md5 D0A0A6F9C9C2F3023E28645BAD8DC74D sha1 172E4F17D071DED4BB74AFD5489BA6145E29E7B4 )
)
game (
name "Classic Kong Complete (World) (Aftermarket) (Unl)"
description "Classic Kong Complete (World) (Aftermarket) (Unl)"
rom ( name "Classic Kong Complete (World) (Aftermarket) (Unl).j64" size 1048576 crc 2584FE62 md5 322263E6D763029DCB62894960A3546E sha1 348655646A889FB4AFA1DE5E019FAD1ECBE69ECD )
)
game (
name "Classic Kong Complete (World) (Aftermarket) (Unl)"
description "Classic Kong Complete (World) (Aftermarket) (Unl)"
rom ( name "Classic Kong Complete (World) (Aftermarket) (Unl).rom" size 1040384 crc 4EA33886 md5 F50BEE86F51845F632085F64FFF7E97B sha1 DEC5F480B74DEB928661700B4D57E5CF473BB904 )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).j64" size 1048576 crc FC39D15D md5 A4809467516C9E8D63BF8815DFDBC8F8 sha1 8ED2CFBD0D27244E061CF2C698803A08C1AC8430 )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).jag" size 106258 crc 5F7198C9 md5 33B59C6E40C71C7DF3C9F6C5F5B48206 sha1 5FADD1EB608034EF236FCAE6BEF6F1F267C2A61B )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).rom" size 1040384 crc 971E17B9 md5 5E6A9B5E0967C7388892676710FDA05B sha1 D60F510452826994BB059FE33F301611EC90C076 )
)
game (
name "Club Drive (World)"
description "Club Drive (World)"
rom ( name "Club Drive (World).j64" size 2097152 crc EEE8D61D md5 403E9C8BF868213D1DAAE54F1BE62CB2 sha1 6588F7D677463D0EF10CF905D44A2581FD9DD055 )
)
game (
name "Club Drive (World)"
description "Club Drive (World)"
rom ( name "Club Drive (World).rom" size 2088960 crc 8FBDF685 md5 820866734A06F96E632151F2D9654DC6 sha1 D1B365F8534E042E0586B505AE03874A662F12DF )
)
game (
name "Club Drive (World) (Beta)"
description "Club Drive (World) (Beta)"
rom ( name "Club Drive (World) (Beta).j64" size 524288 crc 0E320385 md5 B5EF0F2AA7AA14985CC7BEAEC483ED39 sha1 93A29D894F5472EB755D13E721414A6BD9686C02 )
)
game (
name "Club Drive (World) (Beta)"
description "Club Drive (World) (Beta)"
rom ( name "Club Drive (World) (Beta).rom" size 516096 crc 6CB78512 md5 C52705CDD18BE2C96CBB07ABD65845DD sha1 EE1FEE0BE68340A5AC15AFA8ED873E0690B99AD9 )
)
game (
name "Cybermorph (World) (Beta)"
description "Cybermorph (World) (Beta)"
releaseyear "1993"
releasemonth "08"
releaseday "23"
rom ( name "Cybermorph (World) (Beta) (1993-08-23).j64" size 1048576 crc 9EB389F9 md5 0AD7CF284117042132E56B0A0A5AF3E7 sha1 589EFBC772360FA51EDDC096A162C8D9FE7838D3 )
)
game (
name "Cybermorph (World) (Beta)"
description "Cybermorph (World) (Beta)"
releaseyear "1993"
releasemonth "08"
releaseday "23"
rom ( name "Cybermorph (World) (Beta) (1993-08-23).rom" size 1040384 crc F5944F1D md5 F7CCC865E2A84B2EB941209A86676BD6 sha1 93E991ED275B1D8BBC92765422E072D60EA0DB6C )
)
game (
name "Cybermorph (World) (Rev A)"
description "Cybermorph (World) (Rev A)"
rom ( name "Cybermorph (World) (Rev A).j64" size 2097152 crc BDE67498 md5 1C2E3D172151DCAE3B3FC9A23084DCF2 sha1 E00AB55F555FD1FE63B4FCE66A9B8FFE3485963E )
)
game (
name "Cybermorph (World) (Rev A)"
description "Cybermorph (World) (Rev A)"
rom ( name "Cybermorph (World) (Rev A).rom" size 2088960 crc 2E31ACA5 md5 63E7E435F13A5A20CA8A2BF6E40AC27B sha1 E3426CBD33FE31B77395270B71676DDDA43D68E6 )
)
game (
name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
description "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
rom ( name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl).abs" size 456570 crc 5AC1B213 md5 4BAEB4D1BE326A36271E9A31A7621FA5 sha1 4D3D71256917BC2BA18AEB08EB2CB730BBD1203E )
)
game (
name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
description "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
rom ( name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl).j64" size 1048576 crc 99659AD1 md5 8DEA6A78CD750DEA92073FFE71287D48 sha1 97DC0569EEBE8A7BE4354F48D24471CE2D27B8FA )
)
game (
name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
description "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl)"
rom ( name "Cybernoid - The Fighting Machine (World) (Aftermarket) (Unl).rom" size 1040384 crc F2425C35 md5 A1B5152B4CD2429FE65928FC040EB87E sha1 D8211C8FBB776D2D4EB687235785EC43B7A6363D )
)
game (
name "Cybernoid II - The Revenge (World) (Aftermarket) (Unl)"
description "Cybernoid II - The Revenge (World) (Aftermarket) (Unl)"
rom ( name "Cybernoid II - The Revenge (World) (Aftermarket) (Unl).j64" size 4194304 crc 0B1EF479 md5 2ADD61F61E2B5F195D533E48C56FA7D8 sha1 F6107261B7357BB89DDC4B4225F9564E4DCF5C82 )
)
game (
name "Cybernoid II - The Revenge (World) (Aftermarket) (Unl)"
description "Cybernoid II - The Revenge (World) (Aftermarket) (Unl)"
rom ( name "Cybernoid II - The Revenge (World) (Aftermarket) (Unl).rom" size 4186112 crc 736B0298 md5 0E34335B49C5E08CCF1CF20CBDF0A1E2 sha1 889D04524044F18F85BAC72C14F2DE40486122ED )
)
game (
name "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl)"
description "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl)"
rom ( name "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl).j64" size 1048576 crc 40DBBC53 md5 C204F33523F6ACF600AE9D2D055519FA sha1 68476C68407C0A16A473CBA5B7EA4C5ACCAF7D3F )
)
game (
name "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl)"
description "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl)"
rom ( name "Dance Dance Xirius - Space Party (World) (Aftermarket) (Unl).rom" size 1040384 crc 2BFC7AB7 md5 055391D93F2E6073960D2D6A372DA331 sha1 6678D81CF48CF0D149CA954CF8B2F02C933E9B13 )
)
game (
name "Darius+ (World) (Aftermarket) (Unl)"
description "Darius+ (World) (Aftermarket) (Unl)"
rom ( name "Darius+ (World) (Aftermarket) (Unl).j64" size 4194304 crc 6192124A md5 4E0570971CEDF40F69263357BC83D165 sha1 127D80C7A7693D5BFEA67D52018C6A342E11B7BB )
)
game (
name "Darius+ (World) (Aftermarket) (Unl)"
description "Darius+ (World) (Aftermarket) (Unl)"
rom ( name "Darius+ (World) (Aftermarket) (Unl).rom" size 4186112 crc 19E7E4AB md5 BDD94D2BAA251E8E75C6BDC14CAC1A04 sha1 D643FBBBC1D4A9948FFEDB44EB7916EA6F350D05 )
)
game (
name "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl)"
description "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl).j64" size 1048576 crc 9DD9247C md5 ABCD39FC1FD916889A8AEB0D8F802EB1 sha1 D4DCF920D9A8DB7801EBD2E4366598E62F992757 )
)
game (
name "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl)"
description "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Dark Guardian Episode 1 - Unknown Enemy (World) (Proto) (Aftermarket) (Unl).rom" size 1040384 crc F6FEE298 md5 FBC296368557E20C4DD6FF0A664E9C77 sha1 BD6A4A1C1127A18FC8194EA479F1E155378DE13C )
)
game (
name "Defender 2000 (World)"
description "Defender 2000 (World)"
rom ( name "Defender 2000 (World).j64" size 4194304 crc 27594C6A md5 939F2446E70D8B26F17B21E065AA7A30 sha1 13A4084BD5BE1CCA21D83D4C26B5B8E5CF1A3E30 )
)
game (
name "Defender 2000 (World)"
description "Defender 2000 (World)"
rom ( name "Defender 2000 (World).rom" size 4186112 crc 9CD0650D md5 673A6F954126B22FD0D9759DD56C6650 sha1 982C2965CECF3A358D03CFE1CA6AE5A90F1C6F7B )
)
game (
name "Defender 2000 (World) (Beta)"
description "Defender 2000 (World) (Beta)"
rom ( name "Defender 2000 (World) (Beta).j64" size 4194304 crc 952D07F0 md5 37F38D240C9EB074872E62E3694BA453 sha1 AE497F4839BDE6C12C87C651A80633A23D6D0713 )
)
game (
name "Defender 2000 (World) (Beta)"
description "Defender 2000 (World) (Beta)"
rom ( name "Defender 2000 (World) (Beta).rom" size 4186112 crc ED58F111 md5 E6E1A56794302B4BCD6F1AE77A996531 sha1 2693943111B317A0C56D14752F8B8E801EDAB167 )
)
game (
name "Degz (World) (Aftermarket) (Unl)"
description "Degz (World) (Aftermarket) (Unl)"
rom ( name "Degz (World) (Aftermarket) (Unl).j64" size 2097152 crc F8415194 md5 5B74AB4BC6EDBC7E6C0D32513398C216 sha1 321749F6B93EA6528AA06AF0A985E6B1D7F89091 )
)
game (
name "Degz (World) (Aftermarket) (Unl)"
description "Degz (World) (Aftermarket) (Unl)"
rom ( name "Degz (World) (Aftermarket) (Unl).rom" size 2088960 crc 00F3C128 md5 CD8C5098BF338BC460ABCE22E361B89D sha1 A341AE48899806DFC063F45B48C783479EA14C76 )
)
game (
name "Diam Jag (World) (Aftermarket) (Unl)"
description "Diam Jag (World) (Aftermarket) (Unl)"
rom ( name "Diam Jag (World) (Aftermarket) (Unl).j64" size 1048576 crc 472ABF3A md5 F1D7B6B1390443B2123C51F3C9BEE588 sha1 3ED0EF728E67428EB5CB3478D2F30ECCCB9F487B )
)
game (
name "Diam Jag (World) (Aftermarket) (Unl)"
description "Diam Jag (World) (Aftermarket) (Unl)"
rom ( name "Diam Jag (World) (Aftermarket) (Unl).rom" size 1040384 crc 2C0D79DE md5 90867FE01A1E4B32C7EA04C36E931A02 sha1 45A5E8E35E8E1C69AEA68C0CD703DEFA15B83120 )
)
game (
name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl).abs" size 1466869 crc 58F97156 md5 E54DB48F718DF644C987FDA17CBA37FE sha1 19FA2619A6E6EE42CF8DB82A9D57452211C6B7F9 )
)
game (
name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl).j64" size 2097152 crc 120A7F16 md5 84F4B88D410E9163129F4243A6E2209A sha1 575E3821DA1F6FAD0F84FA4C1045AF1C02392EE6 )
)
game (
name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Grid) (Aftermarket) (Unl).rom" size 2088960 crc EAB8EFAA md5 4323970B4D1CF3A82DB121DF5C3A5745 sha1 EE7DEC15E646580F19626DD450C6C1A16A5F2D5A )
)
game (
name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl).abs" size 1466869 crc F83D4619 md5 20F2D5322641669B699EF803B67198FF sha1 FC341BBE152669CAF97B8B6F1C16271A821A3597 )
)
game (
name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl).j64" size 2097152 crc 9186BA0D md5 AE89DAFB3499BC262FD41B1250FDA1C5 sha1 294344A4A71D432698E804D0E211EE0FAC850A74 )
)
game (
name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 1) (Jungle) (Aftermarket) (Unl).rom" size 2088960 crc 69342AB1 md5 E36F9647FC141446E75E46B630037165 sha1 9FF12D65751759E53D9CC67BD0B95847415E994F )
)
game (
name "Dino Rage (World) (Proto 2) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 2) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 2) (Aftermarket) (Unl).j64" size 1048576 crc 22D7B666 md5 5BF2105704BB084F84A1C8C3FCB4796E sha1 F02505D31E5327D97AE80D5468C074884EB55947 )
)
game (
name "Dino Rage (World) (Proto 2) (Aftermarket) (Unl)"
description "Dino Rage (World) (Proto 2) (Aftermarket) (Unl)"
rom ( name "Dino Rage (World) (Proto 2) (Aftermarket) (Unl).rom" size 1040384 crc 49F07082 md5 68F9CB34F374E59E43B60481E9BF1A5C sha1 2640193E3C19E1C631B168F782C1B2886EC82B72 )
)
game (
name "Do the Same (World) (Aftermarket) (Unl)"
description "Do the Same (World) (Aftermarket) (Unl)"
rom ( name "Do the Same (World) (Aftermarket) (Unl).j64" size 1048576 crc E71A3570 md5 AC1C7243F68BA30472CC899474501C3F sha1 75A4C38A1FDB0DF871130F41C5F5598302747D43 )
)
game (
name "Do the Same (World) (Aftermarket) (Unl)"
description "Do the Same (World) (Aftermarket) (Unl)"
rom ( name "Do the Same (World) (Aftermarket) (Unl).rom" size 1040384 crc 8C3DF394 md5 11DBFE113795120CAD6A36C46F354B93 sha1 B1AF6D52510DE6841C1093B7C97EDE98EC0CEB2B )
)
game (
name "Do the Same (World) (Aftermarket) (Unl) (Alt)"
description "Do the Same (World) (Aftermarket) (Unl) (Alt)"
rom ( name "Do the Same (World) (Aftermarket) (Unl) (Alt).j64" size 1048576 crc A8187BEE md5 6B230CCC5898BB11651C2535ECFD380C sha1 16A32DBF231D259BF66A9AA490635B3EA086D795 )
)
game (
name "Do the Same (World) (Aftermarket) (Unl) (Alt)"
description "Do the Same (World) (Aftermarket) (Unl) (Alt)"
rom ( name "Do the Same (World) (Aftermarket) (Unl) (Alt).rom" size 1040384 crc C33FBD0A md5 4D072762D525BAF09CB1FD695DD13902 sha1 C4AD1BF939370D3DE1F3DAEA701A93DF72D46E1F )
)
game (
name "Doger (World) (Aftermarket) (Unl)"
description "Doger (World) (Aftermarket) (Unl)"
rom ( name "Doger (World) (Aftermarket) (Unl).abs" size 755738 crc 74541AFE md5 B1FC152A494D4A086187D3CF67DA7710 sha1 E6B4BBA7CE2E999B39A87D91B2D84007646F502D )
)
game (
name "Doger (World) (Aftermarket) (Unl)"
description "Doger (World) (Aftermarket) (Unl)"
rom ( name "Doger (World) (Aftermarket) (Unl).j64" size 1048576 crc 3644BFE3 md5 EF940FB3412DFF8D1A93BAD1787CC135 sha1 08BDBCDE5A6F4FCC87E7DB5A1EC6E017D6BE62DD )
)
game (
name "Doger (World) (Aftermarket) (Unl)"
description "Doger (World) (Aftermarket) (Unl)"
rom ( name "Doger (World) (Aftermarket) (Unl).rom" size 1040384 crc 5D637907 md5 8B66690B5871FC8AF7938D1A92B283FD sha1 00B6F320C02BB09E8D69A1FAF4E8FD456DCD561F )
)
game (
name "Doom (World)"
description "Doom (World)"
rom ( name "Doom (World).j64" size 4194304 crc 5E2CDBC0 md5 3A5878EA3F391174BECC37B037318804 sha1 20DDF412E42A50D526CBBB6411BF0EC4516DB283 )
)
game (
name "Doom (World)"
description "Doom (World)"
rom ( name "Doom (World).rom" size 4186112 crc 4CA68830 md5 1E3B7DFE15E4911BB7331F352EED3C33 sha1 42E3DB28E5477E0D18B1D390338E8DDB1D667498 )
)
game (
name "Doom 2 (World) (AC 2011) (Aftermarket) (Unl)"
description "Doom 2 (World) (AC 2011) (Aftermarket) (Unl)"
rom ( name "Doom 2 (World) (AC 2011) (Aftermarket) (Unl).j64" size 4194304 crc FDE46E44 md5 BEAA424CC7053F32C3274A93DE28F144 sha1 33DCACC6EB279AC9B1CBF00D3A68B6EE64C2A177 )
)
game (
name "Doom 2 (World) (AC 2011) (Aftermarket) (Unl)"
description "Doom 2 (World) (AC 2011) (Aftermarket) (Unl)"
rom ( name "Doom 2 (World) (AC 2011) (Aftermarket) (Unl).rom" size 4186112 crc 859198A5 md5 7F4670801E6F7FE7E1F91BAC6819ACD2 sha1 18E8F9C26715EDC2D86D72CDD2B978F0A325466E )
)
game (
name "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl)"
description "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl)"
rom ( name "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl).j64" size 4194304 crc 74A9511B md5 FA4A73B0EA1CD4C80610D10863D4929D sha1 757B2B633CDCC6BD32FB41C51648D55711C9D5FA )
)
game (
name "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl)"
description "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl)"
rom ( name "Doom 2 (World) (AC 98) (E-JagFest 2010) (Aftermarket) (Unl).rom" size 4186112 crc 0CDCA7FA md5 FE9DAC2888AB311850CB6C84F028D14A sha1 103B561188A8C3AFB7D4E27EE9224D2A535EB1C8 )
)
game (
name "Double Dragon V - The Shadow Falls (World)"
description "Double Dragon V - The Shadow Falls (World)"
rom ( name "Double Dragon V - The Shadow Falls (World).j64" size 2097152 crc 348E6449 md5 B50249BF2924AF134B45F59218E9B5DD sha1 D66B4E5F9AC27D53F0D781C741E420698630B9FC )
)
game (
name "Double Dragon V - The Shadow Falls (World)"
description "Double Dragon V - The Shadow Falls (World)"
rom ( name "Double Dragon V - The Shadow Falls (World).rom" size 2088960 crc A3AB2F69 md5 3BFFF844B20BA2AEA910BBD824C1EB9E sha1 FD1C8B692DDD24113AD42EF520AE3CD33A5B0680 )
)
game (
name "Downfall (World) (Aftermarket) (Unl)"
description "Downfall (World) (Aftermarket) (Unl)"
rom ( name "Downfall (World) (Aftermarket) (Unl).j64" size 2097152 crc ACFCEABD md5 4206EC6ABEEE07B9525FDDA9925F3E55 sha1 8939BA84CF27E7C4BC659F6D61C07C5B03CCDC9D )
)
game (
name "Downfall (World) (Aftermarket) (Unl)"
description "Downfall (World) (Aftermarket) (Unl)"
rom ( name "Downfall (World) (Aftermarket) (Unl).rom" size 2088960 crc 544E7A01 md5 26588FE1623A67467ADBBED3F52F0248 sha1 F990A6143EBE4CAC4645C94398BC1C488489BCBD )
)
game (
name "Dragon - The Bruce Lee Story (World)"
description "Dragon - The Bruce Lee Story (World)"
rom ( name "Dragon - The Bruce Lee Story (World).j64" size 2097152 crc 8FEA5AB0 md5 DDB3EB3359ADB163B771C62E62B6DF9D sha1 DA7F5DAC4317AB0258F54DA436ABB8D89E530F27 )
)
game (
name "Dragon - The Bruce Lee Story (World)"
description "Dragon - The Bruce Lee Story (World)"
rom ( name "Dragon - The Bruce Lee Story (World).rom" size 2088960 crc 86DDD8E2 md5 F722D9FADD650C7F9BB79F7FA1E4EA8D sha1 760B26F7EE7F9695806688AF0A3FE2486AC65E15 )
)
game (
name "Dragon - The Bruce Lee Story (World) (Beta)"
description "Dragon - The Bruce Lee Story (World) (Beta)"
releaseyear "1994"
releasemonth "09"
releaseday "26"
rom ( name "Dragon - The Bruce Lee Story (World) (Beta) (1994-09-26).j64" size 2097152 crc A14F94AB md5 AFC5F1A4BCC0C7133C62854572DA559C sha1 298148131AF2A86BA5D5430B1B8982710CE68874 )
)
game (
name "Dragon - The Bruce Lee Story (World) (Beta)"
description "Dragon - The Bruce Lee Story (World) (Beta)"
releaseyear "1994"
releasemonth "09"
releaseday "26"
rom ( name "Dragon - The Bruce Lee Story (World) (Beta) (1994-09-26).rom" size 2088960 crc 59FD0417 md5 24678221C704F39BAE5F3BB5E643C5DE sha1 E1A65034D71CFA2F48D909E751B1F5536CF19B31 )
)
game (
name "Dragon - The Bruce Lee Story (World) (Beta)"
description "Dragon - The Bruce Lee Story (World) (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "06"
rom ( name "Dragon - The Bruce Lee Story (World) (Beta) (1994-10-06).j64" size 2097152 crc 83C6ACC0 md5 DECC2FCBDBE6F5B1682AFD6C68708331 sha1 8F556976F42C393858127D99112264E6A5A9AE19 )
)
game (
name "Dragon - The Bruce Lee Story (World) (Beta)"
description "Dragon - The Bruce Lee Story (World) (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "06"
rom ( name "Dragon - The Bruce Lee Story (World) (Beta) (1994-10-06).rom" size 2088960 crc 7B743C7C md5 2E7B0F2B31AC7D17A191C7FE700CF350 sha1 FB7ED8D7766FB097860951B3975D7E30E7FF4B0F )
)
game (
name "Dragon Breed (World) (Aftermarket) (Unl)"
description "Dragon Breed (World) (Aftermarket) (Unl)"
rom ( name "Dragon Breed (World) (Aftermarket) (Unl).j64" size 4194304 crc 833F95B5 md5 3C00969449B6F4CA93546F3B095D49EF sha1 B0AD61325766576F152FBCF8F52CFC859BCE385F )
)
game (
name "Dragon Breed (World) (Aftermarket) (Unl)"
description "Dragon Breed (World) (Aftermarket) (Unl)"
rom ( name "Dragon Breed (World) (Aftermarket) (Unl).rom" size 4186112 crc FB4A6354 md5 86CC382D75701275B1EA16CC363786F9 sha1 8976EC4C8E075722BE3E92D1A6509650290E8D60 )
)
game (
name "DragonKeep (World) (v1.01) (Aftermarket) (Unl)"
description "DragonKeep (World) (v1.01) (Aftermarket) (Unl)"
rom ( name "DragonKeep (World) (v1.01) (Aftermarket) (Unl).j64" size 1048576 crc 507C724A md5 A5DC23987BD84297EE53DD328A07F3AD sha1 18C875B7722133A62D3859946579501CC6918E76 )
)
game (
name "DragonKeep (World) (v1.01) (Aftermarket) (Unl)"
description "DragonKeep (World) (v1.01) (Aftermarket) (Unl)"
rom ( name "DragonKeep (World) (v1.01) (Aftermarket) (Unl).rom" size 1040384 crc 3B5BB4AE md5 D949AFD077D24858F9FCC6C8EAFDE02B sha1 7F55AA6B7546EB1BFE1D54224B39B9EBD7688B9C )
)
game (
name "Duckie Egg (World) (Aftermarket) (Unl)"
description "Duckie Egg (World) (Aftermarket) (Unl)"
rom ( name "Duckie Egg (World) (Aftermarket) (Unl).j64" size 2097152 crc AC7241F3 md5 13F709B35903F1EEAA8E9DACADD5C6A9 sha1 463AE14633647932635E4C5597597F16D3FD3AEC )
)
game (
name "Duckie Egg (World) (Aftermarket) (Unl)"
description "Duckie Egg (World) (Aftermarket) (Unl)"
rom ( name "Duckie Egg (World) (Aftermarket) (Unl).rom" size 2088960 crc 54C0D14F md5 2E5789642304CA3F8142F6695DB4B9FF sha1 D6F8D9232FE6CB4D548A21D9A8E5E772482D4256 )
)
game (
name "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl)"
description "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl)"
rom ( name "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl).j64" size 4194304 crc 850D09E7 md5 DEEB1B6E8A0D95224CFDD2BA3652B275 sha1 2B6301E8B8D982EB7396D4032BFDACCCC462F8CF )
)
game (
name "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl)"
description "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl)"
rom ( name "Escape 2042 - The Truth Defenders (World) (En,Ja,Fr,Es) (Aftermarket) (Unl).rom" size 4186112 crc FD78FF06 md5 1ED259F091359EA0F4529387EB8391FB sha1 CF883583EA6C376C2170686A7E7450A7A81B232B )
)
game (
name "Escape from the Planet of the Robot Monsters (World) (Aftermarket) (Unl)"