forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSega - 32X.dat
1572 lines (1571 loc) · 74.6 KB
/
Sega - 32X.dat
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 "Sega - 32X"
description "Sega - 32X"
version "2025.02.14"
homepage "http://github.com/robloach/libretro-dats"
)
game (
name "36 Great Holes Starring Fred Couples (Europe)"
description "36 Great Holes Starring Fred Couples (Europe)"
releaseyear "1994"
region "Europe"
rom ( name "36 Great Holes Starring Fred Couples (1994)(Sega)(EU)(en).bin" size 3145728 crc 6EF99202 md5 F772E22B574406E3E20C172117050973 sha1 55848F7C54533FD2A19011DB661EF261CD8BDB22 )
)
game (
name "36 Great Holes Starring Fred Couples (Europe)[f NTSC GhostlyDark]"
description "36 Great Holes Starring Fred Couples (Europe)[f NTSC GhostlyDark]"
releaseyear "1994"
region "Europe"
rom ( name "36 Great Holes Starring Fred Couples (1994)(Sega)(EU)(en)[f NTSC GhostlyDark].bin" size 3145728 crc 44EA9F12 md5 7A413BB21AF6D4819C2BA840B1A9671D sha1 CFB4DA4B5A989FE002993D1B1D4FBB37323F8D72 )
)
game (
name "36 Great Holes Starring Fred Couples (JP-US)"
description "36 Great Holes Starring Fred Couples (JP-US)"
releaseyear "1994"
rom ( name "36 Great Holes Starring Fred Couples (1994)(Sega)(JP-US)(en).bin" size 3145728 crc D3D0A2FE md5 B90A2A1EEC015911AA445F9C41D7BC32 sha1 DC77B1E5C888C2C4284766915A5020BB14EE681D )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "07"
releaseday "06"
rom ( name "36 Great Holes Starring Fred Couples (1994-07-06)(Sega)(beta).bin" size 1057122 crc 6726C100 md5 56B0C88CD4AEF3FF65EF623527A9EDBA sha1 6A066C44D71199D62DBC368EFBC371DD01CC95E1 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "11"
rom ( name "36 Great Holes Starring Fred Couples (1994-10-11)(Sega)(beta).bin" size 3001124 crc 622A34A5 md5 2600F3BA9D72947910E7CFFEBA8F5B71 sha1 94C994CE74377EC726B4C0803B51FD4CA6CC4389 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "17"
rom ( name "36 Great Holes Starring Fred Couples (1994-10-17)(Sega)(beta).bin" size 3001124 crc CBD33FC7 md5 6ACA59BA95B6C1DEFE19ED32F00D3EF1 sha1 83B70BEA9EFA281DD5119334A28EF33BC7426325 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "18"
rom ( name "36 Great Holes Starring Fred Couples (1994-10-18)(Sega)(beta).bin" size 4194304 crc E39BA17F md5 1FC6E86E79315775CB93649F4CFE83D9 sha1 41E12CB8465ACB6E0180DEEA9B34C2554E3F79E1 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "24"
rom ( name "36 Great Holes Starring Fred Couples (1994-10-24)(Sega)(beta).bin" size 3090536 crc FFE279CC md5 C5A1281E901DF24A620A66026373CDDC sha1 2093A7437062DC21C4440A360DD177102CA6CC88 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "26"
rom ( name "36 Great Holes Starring Fred Couples (1994-10-26)(Sega)(beta).bin" size 3090528 crc 37A79C9C md5 61BF65053DB9EAA967BCA74E18ADF23D sha1 91D78A15094C20FB6A8103D5ADDBAA4F90D199B8 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "01"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-01)(Sega)(beta).bin" size 3136928 crc 91106A69 md5 03480484A4D2E3FE3353900DC3033101 sha1 F6B944876B40B5A52BF1293B71373CB3F5C71A14 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "03"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-03)(Sega)(beta).bin" size 3136712 crc D261A6C3 md5 7F1DDC96F801C121ADB5E6B1A5C2F73F sha1 7C295CB39408D21835B76C2C1AEB03B659094593 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "05"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-05)(Sega)(beta).bin" size 3136712 crc 1559541E md5 CA9CA81BDE5B0819D1BCCE097796A41B sha1 EFF8337257B0CC6221CE459D32191F7D63450D1C )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "07"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-07)(Sega)(beta).bin" size 3136712 crc 36B1708E md5 6BC3ECEAD9DB55F646F4DB49D484403D sha1 EA7539DBEAA86FDC36132E85BE48F6577FB6DBB9 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "08"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-08)(Sega)(beta).bin" size 3136712 crc BCAF23FD md5 415B56539F3DBE85FBC9E327E7512136 sha1 F317903C11777991417ABF95CC45D4888BEE25D6 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "10"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-10)(Sega)(beta).bin" size 3136712 crc 5226EF71 md5 A1CFA86BC7D81F199F0B329DDF4458E7 sha1 33620D0BB49C52A24563958B4CAEC883B2009A90 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "16"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-16)(Sega)(beta).bin" size 3136712 crc CCB9FEAD md5 BCB29B2EC1D693AA863998B19A1873F4 sha1 3BFF7D113FA7487D015A54D8F27050F2CF296106 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "18"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-18)(Sega)(beta).bin" size 3136712 crc DC4C7C27 md5 9DB9C401226292CEFD5A28F6ADFA5065 sha1 ABE1D16DFF2B2C1752E2F47BB15F97F049D6BFC0 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "19"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-19)(Sega)(beta).bin" size 3136736 crc DA1026C8 md5 4B5FD6BE86B307399BC6592D8EAE79B5 sha1 2EA5FCDFFA9B8F22B1468EEB2E76134D3F1B3BE6 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
description "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
releaseyear "1994"
releasemonth "11"
releaseday "19"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-19)(Sega)(beta)[Rev B].bin" size 3145728 crc 8FA32086 md5 C9CE63EE1C915B4FFD1D14940ECBF7C6 sha1 5FC3837BA3B98F9F2C560D3775DA969798A150EE )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "21"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-21)(Sega)(beta).bin" size 3136724 crc 8D0713CE md5 12AAE94FAB8374E0C61C8220F28007B7 sha1 34D7BF6B86C877AB068390F660073016A95711E3 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "22"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-22)(Sega)(beta).bin" size 3136724 crc E1E98CAC md5 9035D2EFD419306D5014DF16F0DD29A4 sha1 A6BEE7800F73E2CA12381432154B636DDD279412 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
description "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
releaseyear "1994"
releasemonth "11"
releaseday "22"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-22)(Sega)(beta)[Rev B].bin" size 3136724 crc 6B656643 md5 F4877C8823D7F39DF0932068ED23A585 sha1 0590FF4405FCD0CA8F2FC5293690330FDF63127A )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "23"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-23)(Sega)(beta).bin" size 3136724 crc 0B58F6A5 md5 11D87989771F3F0882512A52E758439E sha1 FA2F2D3887BB3E6010A5C13289F63681CAC0404A )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "26"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-26)(Sega)(beta).bin" size 3145728 crc 2ECE26DB md5 3920135572B377D760CEE34995C159BD sha1 541DDFAC44323C589AD23F51A5BE984ECFA55539 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "27"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-27)(Sega)(beta).bin" size 3145728 crc B5E82F07 md5 7D04FF0502908FE179AD90AAA5270542 sha1 AFA1F5C2DAB7DE2114D3A34794785B0D6768D95C )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "28"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-28)(Sega)(beta).bin" size 3145728 crc 38D09772 md5 20917B40EB81EDEEBFCEB57AEC9B419D sha1 F0D06074B1B5CE2DF77FDAAF74620158EFB7F875 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
description "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
releaseyear "1994"
releasemonth "11"
releaseday "28"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-28)(Sega)(beta)[Rev B].bin" size 3145728 crc 8F4F6479 md5 8B2F55C154013452170E0DFD77D5AD2A sha1 E341E5FCA64DEF64C019310D4F551FF48908291B )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "29"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-29)(Sega)(beta).bin" size 3145728 crc 9C5011B0 md5 BBCF031159AD7EA4B014A58C0ED9433F sha1 5658FEBD37534280962DC6801EFC10604B07603F )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "11"
releaseday "30"
rom ( name "36 Great Holes Starring Fred Couples (1994-11-30)(Sega)(beta).bin" size 3145728 crc 41E2D54D md5 9386CBFE21DCB58CC8A8006C8BC06E61 sha1 19681B2E5D1EAFAA09401DCA296BEA884FBC08C1 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "02"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-02)(Sega)(beta).bin" size 3145728 crc 323C2935 md5 3E33E547288D1D2A5BAF1B21A07F8DF0 sha1 5B1140E33357A3D0FDC056AB5A350D588B5E5AF9 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "03"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-03)(Sega)(beta).bin" size 3145728 crc 3F30C0D2 md5 97CAF7C900FE4BCEE30117365A70543C sha1 7CA51AD03EBB95F017A1B900A4A1592876D0D5C2 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "06"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-06)(Sega)(beta).bin" size 3145728 crc ECFE5A0F md5 FA60425CD76CFDBEE2DC8000B3099A98 sha1 AF8EADCF49D0700C7479648865CC08CD40BC2808 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "13"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-13)(Sega)(beta).bin" size 3145728 crc 34BF7C6D md5 443A014104FF3145F0B2EEBE4FFCE0FD sha1 6398A442595650D70A5CE20A52331899C0DFAF62 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "14"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-14)(Sega)(beta).bin" size 3145728 crc A63B0636 md5 C30E393F01ADA81CA44BAD43EE63D3B7 sha1 F78481E57111295C2F5AEB64CD306C3C5FBF6D97 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "19"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-19)(Sega)(beta).bin" size 3145728 crc C073149F md5 FA347C89886D60279ABF6B1D6C0C5F02 sha1 E28AB68E8AED7AA8E9F33A6E9C68678272DF4D95 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)"
description "36 Great Holes Starring Fred Couples (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "21"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-21)(Sega)(beta).bin" size 3145728 crc 3893DCFE md5 86FCF541B14F98DEDB8C8DEFF14DE868 sha1 23E84EC4D8CEC09992FCFF323F32F49F44D23CD2 )
)
game (
name "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
description "36 Great Holes Starring Fred Couples (Beta)[Rev B]"
releaseyear "1994"
releasemonth "12"
releaseday "21"
rom ( name "36 Great Holes Starring Fred Couples (1994-12-21)(Sega)(beta)[Rev B].bin" size 3145728 crc CC0334BB md5 7A186ABAFFF18BA8ED439F362B56014E sha1 6A1801EF96CC8C4A6896AB55E105F7FA8D707F51 )
)
game (
name "After Burner Complete (Europe)"
description "After Burner Complete (Europe)"
releaseyear "1994"
region "Europe"
rom ( name "After Burner Complete (1994)(Sega)(EU)(en).bin" size 2097152 crc 029106F5 md5 A8E05BD3CDF97E1811EBD6D52C4371A7 sha1 C7D56CC75DC9A5206FDA6A080CBEDAE9F48C82BC )
)
game (
name "After Burner Complete (Europe) (Alt 1)"
description "After Burner Complete (Europe) (Alt 1)"
releaseyear "1994"
region "Europe"
rom ( name "After Burner Complete (1994)(Sega)(EU)(en)[a].bin" size 2097152 crc 76B8378C md5 51394FEBA4165BC92BC5071137BF2C4E sha1 C9365900E64DDDE8DEC186589B17805B01B08E11 )
)
game (
name "After Burner Complete (Europe)[tr pt]"
description "After Burner Complete (Europe)[tr pt]"
releaseyear "1994"
region "Europe"
rom ( name "After Burner Complete (1994)(Sega)(EU)(en)[tr pt].bin" size 2097152 crc E393A3CB md5 6A040DBD1539074D69B70868359BABBD sha1 A1764E16CF748321A6BE655BB3FE2DD928C45CEA )
)
game (
name "After Burner Complete (JP-US)"
description "After Burner Complete (JP-US)"
releaseyear "1994"
rom ( name "After Burner Complete (1994)(Sega)(JP-US)(en).bin" size 2097152 crc 204044C4 md5 EC9529858CC7961B39F5382B2F657B8F sha1 9CF575FEB036E2F26E78350154D5EB2FD3825325 )
)
game (
name "BC Racers (Core Design)"
description "BC Racers (Core Design)"
releaseyear "1995"
rom ( name "BC Racers (1995)(Core Design).bin" size 3145728 crc 936C3D27 md5 35A11E021CA0B7FF909E4774EB8B3236 sha1 9B5FD499EAA442D48A2C97FCEB1D505DC8E8DDFF )
)
game (
name "BC Racers (Core Design)[tr pt]"
description "BC Racers (Core Design)[tr pt]"
releaseyear "1995"
rom ( name "BC Racers (1995)(Core Design)[tr pt].bin" size 3145728 crc 83A9AC19 md5 563F56818855486C86EFCDE04A5812C3 sha1 9E25904C0F20D2D13E5C1EB3BF8C477E3D4AF427 )
)
game (
name "Blackthorne (Blizzard Entertainment - Interplay) (USA)"
description "Blackthorne (Blizzard Entertainment - Interplay) (USA)"
releaseyear "1995"
region "USA"
rom ( name "Blackthorne (1995)(Blizzard Entertainment - Interplay)(US).bin" size 3145728 crc D1A60A47 md5 C238B112113B0297B2B9F4F618D56598 sha1 4BF120CF056FE1417CA5B02FA0372EF33CB8EC11 )
)
game (
name "Brutal Unleashed - Above the Claw (Eurocom - GameTek) (USA)"
description "Brutal Unleashed - Above the Claw (Eurocom - GameTek) (USA)"
releaseyear "1995"
region "USA"
rom ( name "Brutal Unleashed - Above the Claw (1995)(Eurocom - GameTek)(US).bin" size 3145728 crc 7A72C939 md5 1738A479B0253BCB0BCFB7BF09C03ADD sha1 40AA2C787F37772CDBD7280B8BE06B15421FABAE )
)
game (
name "Chaotix Featuring Knuckles the Echidna (Europe)"
description "Chaotix Featuring Knuckles the Echidna (Europe)"
releaseyear "1995"
region "Europe"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(EU)(en).bin" size 3145728 crc 41D63572 md5 4CE9E6B6E8883D8A678D90AABCE022D0 sha1 5C1A2E327A656217604D4BAE7E141764A7E59922 )
)
game (
name "Chaotix Featuring Knuckles the Echidna (Europe)[f NTSC GhostlyDark]"
description "Chaotix Featuring Knuckles the Echidna (Europe)[f NTSC GhostlyDark]"
releaseyear "1995"
region "Europe"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(EU)(en)[f NTSC GhostlyDark].bin" size 3145728 crc A48B5DE7 md5 0DF0F95627547C59847F1AF60EB563A5 sha1 7F33363E2B1A7A711FAE8FBBCB31A0A3B4C28F78 )
)
game (
name "Chaotix Featuring Knuckles the Echidna (Europe)[h2]"
description "Chaotix Featuring Knuckles the Echidna (Europe)[h2]"
releaseyear "1995"
region "Europe"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(EU)(en)[h2].bin" size 3145728 crc 84800301 md5 3AFF2943A9B88804D20530231E6C2220 sha1 52F493C9946A0FF621A4D9F22B91CC8BF5A83656 )
)
game (
name "Chaotix Featuring Knuckles the Echidna (Europe)[h]"
description "Chaotix Featuring Knuckles the Echidna (Europe)[h]"
releaseyear "1995"
region "Europe"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(EU)(en)[h].bin" size 3145728 crc 87FBDBD7 md5 72D3EB77A39F28ADF0C679B6EDDBF95E sha1 A88FD0E0159EFC12F5D8A7898941007E868C2E13 )
)
game (
name "Chaotix Featuring Knuckles the Echidna (JP-US)"
description "Chaotix Featuring Knuckles the Echidna (JP-US)"
releaseyear "1995"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(JP-US)(en).bin" size 3145728 crc D0B0B842 md5 47B1095E68B053125CD2CD5B1AC4EB50 sha1 0C2FFF7BC79ED26507C08AC47464C3AF19F7CED7 )
)
game (
name "Chaotix Featuring Knuckles the Echidna (JP-US)[h]"
description "Chaotix Featuring Knuckles the Echidna (JP-US)[h]"
releaseyear "1995"
rom ( name "Chaotix Featuring Knuckles the Echidna (1995)(Sega)(JP-US)(en)[h].bin" size 3145728 crc D8977863 md5 D0981100ADF924A085C4C43FFD3F8B4C sha1 9D162332DAF212602F55949B200A4C490D9B4BB2 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 0111-19950112-0936 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 0111-19950112-0936 (Beta)"
releaseyear "1995"
releasemonth "01"
releaseday "12"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 0111-19950112-0936 (1995-01-12)(Sega)(beta).bin" size 4194304 crc 5523EA78 md5 D8AD7470835E0EDC83B770B59584F625 sha1 882CE770F32F4AF61AC422ACCECC8A84E1C52CD3 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 0202-19950207-1525 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 0202-19950207-1525 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "07"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 0202-19950207-1525 (1995-02-07)(Sega)(beta).bin" size 3145728 crc 7B32E440 md5 E6C65023505129B294C48D37A2D7899D sha1 4E4AF26F944CF3B5D99F60F37B20DC67207A4FBE )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 0213-19950213-0730 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 0213-19950213-0730 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "13"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 0213-19950213-0730 (1995-02-13)(Sega)(beta).bin" size 3145728 crc 14F43E14 md5 9D986B6C96704DE70E43988825DF463A sha1 0CBBCC96F23917FEB844469163BC8AB14DA94816 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 119-19950119-0704 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 119-19950119-0704 (Beta)"
releaseyear "1995"
releasemonth "01"
releaseday "19"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 119-19950119-0704 (1995-01-19)(Sega)(beta).bin" size 4194304 crc 468AD032 md5 DDE8F92C0FB80488F53EBBCE98BD203C sha1 2B1A5F19113FA4015437EDE5A195C5DFB377E5BE )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 1207-19941207-0715 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 1207-19941207-0715 (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "07"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 1207-19941207-0715 (1994-12-07)(Sega)(beta).bin" size 3145728 crc D62AE235 md5 ED059EF80F0292989C0CC86A0224F09D sha1 150DACE1482EBF38A0F6242BE6D8B7EA19F8A737 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 1227-19941227-1028 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 1227-19941227-1028 (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "27"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 1227-19941227-1028 (1994-12-27)(Sega)(beta).bin" size 4194304 crc 4307D738 md5 A161C79DD955D971EE3FCB2E01777257 sha1 C62A8BE339FFD9DD182A3F8E60B6E27225CFC5F2 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 1229-19941230-1531 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 1229-19941230-1531 (Beta)"
releaseyear "1994"
releasemonth "12"
releaseday "30"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 1229-19941230-1531 (1994-12-30)(Sega)(beta).bin" size 4194304 crc 36A294E0 md5 88C27C63DD58BA339B4DB3A1C8791521 sha1 883C7748C3C352B44238D2BDC9152AC9651E99FB )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 208-19950208-1117 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 208-19950208-1117 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "08"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 208-19950208-1117 (1995-02-08)(Sega)(beta).bin" size 3145728 crc B099E5F6 md5 B37E562D5C0A26122ABF66AC94FEF886 sha1 D965D12C8CCE09683D80C08D06C74B7C6E7B8DAB )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 209-19950209-0825 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 209-19950209-0825 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "09"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 209-19950209-0825 (1995-02-09)(Sega)(beta).bin" size 3145728 crc E95D7F57 md5 241082F8B6399E658E3516281A2A725E sha1 01C9F4614F282A05B3E86701B4CA18A1A0E1889C )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 210-19950210-0628 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 210-19950210-0628 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "10"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 210-19950210-0628 (1995-02-10)(Sega)(beta).bin" size 3145728 crc 7B716175 md5 B925CB18160CED5285981A3EDD5C4213 sha1 4C13842ABEDA86CE6577DA67BA5FC24FBFBDC0DE )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 213B-19950213-0646 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 213B-19950213-0646 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "13"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 213B-19950213-0646 (1995-02-13)(Sega)(beta).bin" size 3145728 crc AFF06BFF md5 BDD716E7E0CE4A24AD73179FBA8D65DD sha1 88B122398C1B25F432AE845B799F1308F51AA055 )
)
game (
name "Chaotix Featuring Knuckles the Echidna Rev 214-19950214-0646 (Beta)"
description "Chaotix Featuring Knuckles the Echidna Rev 214-19950214-0646 (Beta)"
releaseyear "1995"
releasemonth "02"
releaseday "14"
rom ( name "Chaotix Featuring Knuckles the Echidna Rev 214-19950214-0646 (1995-02-14)(Sega)(beta).bin" size 3145728 crc BA0A1108 md5 5E1012438FDEDA44B64589FD33DAAD5F sha1 AF3BFD9540098581AEF08664D625725FFCC90BE2 )
)
game (
name "ClayFighter 2 - Judgment Clay (Proto)"
description "ClayFighter 2 - Judgment Clay (Proto)"
releaseyear "1995"
releasemonth "04"
releaseday "28"
rom ( name "ClayFighter 2 - Judgment Clay (1995-04-28)(Interplay)(proto).bin" size 1048576 crc 59701755 md5 DEE27AC83240DDEBDCAA92E9F58FDE4F sha1 1D3C372B55FA1418556AEA1949995F997227B5FA )
)
game (
name "Cosmic Carnage (Europe)"
description "Cosmic Carnage (Europe)"
releaseyear "1994"
region "Europe"
rom ( name "Cosmic Carnage (1994)(Sega)(EU)(en).bin" size 3145728 crc 9F3FDBC2 md5 8AADC467D31BC64F95A7FBE8F95AFEB3 sha1 900E8ECDCC4460B4C4AF3873E1D6BC83DA4AEE99 )
)
game (
name "Cosmic Carnage (JP-US)"
description "Cosmic Carnage (JP-US)"
releaseyear "1994"
rom ( name "Cosmic Carnage (1994)(Sega)(JP-US)(en).bin" size 3145728 crc 7C7BE6A2 md5 32F3002A46A462735AA12CA856CB7652 sha1 9A563ED821B483148339561EBD2B876EFA58847B )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "09"
releaseday "21"
rom ( name "Cosmic Carnage (1994-09-21)(Sega)(beta).bin" size 4194304 crc 7B58141C md5 4FD7B679099AAF9EBE8DEC1603EC3780 sha1 926996F4B1F935CE4C3B46E902171C4B4DA16385 )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "09"
releaseday "26"
rom ( name "Cosmic Carnage (1994-09-26)(Sega)(beta).bin" size 3145728 crc F04F4366 md5 7F97F54D53A6ADFCDE9A56FAAF448C34 sha1 512D3C9B51E2F3015265DC78757363F45FC0A788 )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "09"
releaseday "28"
rom ( name "Cosmic Carnage (1994-09-28)(Sega)(beta).bin" size 3145728 crc CF89175F md5 AD83A93FC3A31444BDD89DDB11262C5D sha1 443C961BFC441B4D0ACE5F6E0A8D1BB7ABF8AC28 )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "04"
rom ( name "Cosmic Carnage (1994-10-04)(Sega)(beta).bin" size 3145728 crc C6867772 md5 F2A81C48457191B4F3329792941AC71A sha1 17CF3D4671A3313764DF42E0F9A25133B0DC4EC9 )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "05"
rom ( name "Cosmic Carnage (1994-10-05)(Sega)(beta).bin" size 3145728 crc BFE27F56 md5 0210673F0735F1F0956057243BEF919C sha1 99BB4C98C7DE0668934AB91A6EB01C9F680918B9 )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "07"
rom ( name "Cosmic Carnage (1994-10-07)(Sega)(beta).bin" size 3145728 crc D8B04C24 md5 0EEE6F56666FD70B3483BAD9B5297A5E sha1 C051DE6DCCC48352D51650F2712DBC7D62A1EC1A )
)
game (
name "Cosmic Carnage (Beta)"
description "Cosmic Carnage (Beta)"
releaseyear "1994"
releasemonth "10"
releaseday "11"
rom ( name "Cosmic Carnage (1994-10-11)(Sega)(beta).bin" size 3145728 crc E483498B md5 52A2E8A8A6A031E0AE731D2EFD65A982 sha1 BBDFE2B276C255247225EFD1E8348BE57A42EF4A )
)
game (
name "Cosmic Carnage Rev 19940906 (Beta)"
description "Cosmic Carnage Rev 19940906 (Beta)"
releaseyear "1994"
rom ( name "Cosmic Carnage Rev 19940906 (1994)(Sega)(beta).bin" size 3145728 crc D4166241 md5 2A6755D2C4F00BC8569A3FD41DD556D8 sha1 F84006CEE56748BF2C7249DEC3C356409CB0E0A5 )
)
game (
name "DOOM 32X 24 Level Expansion Addendum v1.1 (Saxman - Nuxius)[h Doom]"
description "DOOM 32X 24 Level Expansion Addendum v1.1 (Saxman - Nuxius)[h Doom]"
releaseyear "2010"
releasemonth "01"
releaseday "06"
rom ( name "DOOM 32X 24 Level Expansion Addendum v1.1 (2010-01-06)(Saxman - Nuxius)[h Doom].bin" size 3454568 crc 4821DE9C md5 7C2144BC01CB16B2C12F0C3913E9D3CB sha1 0DE2EACCAE8468ACBEA764140CC8F76474DDA237 )
)
game (
name "DOOM 32X 24 Level Expansion v1.0 (Saxman)[h Doom]"
description "DOOM 32X 24 Level Expansion v1.0 (Saxman)[h Doom]"
releaseyear "2009"
releasemonth "12"
releaseday "30"
rom ( name "DOOM 32X 24 Level Expansion v1.0 (2009-12-30)(Saxman)[h Doom].bin" size 3454568 crc 3AE0E83B md5 DDA2E9BB2D2C97DE09F0DD5AC87E3744 sha1 FD24EA546A35E8F081B428A41B348133100A8F5B )
)
game (
name "Darxide (Frontier Developments) (Europe)"
description "Darxide (Frontier Developments) (Europe)"
releaseyear "1995"
region "Europe"
rom ( name "Darxide (1995)(Frontier Developments)(EU)(M4).bin" size 2097152 crc 22D7C906 md5 30EE320F76DB70A836EDEFF2C8CE9CD2 sha1 108B4FFED8643ABDEFA921CFB58389B119B47F3D )
)
game (
name "Darxide (Frontier Developments) (Europe)[f NTSC GhostlyDark]"
description "Darxide (Frontier Developments) (Europe)[f NTSC GhostlyDark]"
releaseyear "1995"
region "Europe"
rom ( name "Darxide (1995)(Frontier Developments)(EU)(M4)[f NTSC GhostlyDark].bin" size 2097152 crc 06D6DEF2 md5 5F4FEBC41DC9B0A283820450F317E5AE sha1 36FFCD62036BB805BAE39826D382D852CAFF1792 )
)
game (
name "Darxide (Frontier Developments) (Europe)[h]"
description "Darxide (Frontier Developments) (Europe)[h]"
releaseyear "1995"
region "Europe"
rom ( name "Darxide (1995)(Frontier Developments)(EU)(M4)[h].bin" size 2097152 crc 294829DC md5 75E447BFC021FC7217FF174E6B655BAF sha1 FC9B73D535CED0AF469C66BAFE457CBB068AFC40 )
)
game (
name "Doom (id Software - Sega) (Europe)"
description "Doom (id Software - Sega) (Europe)"
releaseyear "1994"
region "Europe"
rom ( name "Doom (1994)(id Software - Sega)(EU)(en).bin" size 3145728 crc 53734E3A md5 1ABE8B9B1855B1B101CB7F1D86395C22 sha1 4EC03C2114EBFFBBCD16859583340D4EA4CD8DD5 )
)
game (
name "Doom (id Software - Sega) (Europe)[f NTSC GhostlyDark]"
description "Doom (id Software - Sega) (Europe)[f NTSC GhostlyDark]"
releaseyear "1994"
region "Europe"
rom ( name "Doom (1994)(id Software - Sega)(EU)(en)[f NTSC GhostlyDark].bin" size 3145728 crc 7960432A md5 2354D9E84211BE991643AFC8C533DD21 sha1 A23F8BC558C16EDDE0480AC3316B8E8C1D043E4F )
)
game (
name "Doom (id Software - Sega) (JP-US)"
description "Doom (id Software - Sega) (JP-US)"
releaseyear "1994"
rom ( name "Doom (1994)(id Software - Sega)(JP-US)(en).bin" size 3145728 crc 208332FD md5 79339867D9D4F58B169753D9A29EA1A5 sha1 B68E9C7AF81853B8F05B8696033DFE4C80327E38 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "06"
rom ( name "Doom (1994-09-06)(Sega)(proto).bin" size 4194304 crc 646D5C47 md5 2F9DFD9C5E06F9DF0CFBE0F7E2A425D7 sha1 4FDA0184D688886314D929224D92B4A35C712675 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "09"
rom ( name "Doom (1994-09-09)(Sega)(proto).bin" size 3894824 crc 8D757B51 md5 F9AC4FFF9B19AC75FA6D22A89EA942C6 sha1 5697176636DF575D8B65480708EFA85544D44302 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "14"
rom ( name "Doom (1994-09-14)(Sega)(proto).bin" size 3760828 crc 102678B3 md5 F243589E68209C8F18F0D4E5775C3107 sha1 1BF7BC1FC2EAFE71D1E72608566D5C0D01D5C79C )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "16"
rom ( name "Doom (1994-09-16)(Sega)(proto).bin" size 4194304 crc B554596F md5 C645547A0D1DA8758663317BC9634224 sha1 0530D326B75E97B04530761F50CED4A226B183D2 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "21"
rom ( name "Doom (1994-09-21)(Sega)(proto).bin" size 3507720 crc 2D09B919 md5 46811A3AE28768D571AF51796A940B8F sha1 2A2C80ADB1CF62A71581400357951B2007770E8B )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "23"
rom ( name "Doom (1994-09-23)(Sega)(proto).bin" size 3145728 crc ABC3EB89 md5 54C0AE49BD3F514C60976A4E62B8527E sha1 E472548171A4E6183F16618BFCB5B6C09E7D6744 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "25"
rom ( name "Doom (1994-09-25)(Sega)(proto).bin" size 3145728 crc B9AE1316 md5 9ABC704274F7D59F20832B2AA4D7EC8D sha1 C3E78C38CFD2516F943A10F435664BA06790F1C4 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "09"
releaseday "27"
rom ( name "Doom (1994-09-27)(Sega)(proto).bin" size 3145728 crc 12991053 md5 000D37E58327BE661C6C9C6803077C5B sha1 F7539C406821B5AE4BCB0F41FE2839D07AB1FDB2 )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "10"
releaseday "02"
rom ( name "Doom (1994-10-02)(Sega)(proto).bin" size 4194304 crc 6182E821 md5 FD439F39B26BA22E4F79A0C87352C6B0 sha1 2945DA1E6452B194FBBE44A685864A2000EA5CFD )
)
game (
name "Doom (Proto)"
description "Doom (Proto)"
releaseyear "1994"
releasemonth "12"
releaseday "01"
rom ( name "Doom (1994-12-01)(Sega)(proto).bin" size 3102248 crc 7DCC1C18 md5 0A581F2470A35141F32C90C9E9C7F3E5 sha1 B2349F625AC077222B49F0E507C552B24C824BD2 )
)
game (
name "Doom RR (Proto)"
description "Doom RR (Proto)"
releaseyear "1995"
releasemonth "02"
releaseday "15"
rom ( name "Doom RR (1995-02-15)(Sega)(proto).bin" size 3145728 crc 48399BC5 md5 E7917F7D91C05C0F928F6B4D68C553B2 sha1 63568023C907D636133E1A2FD140AFBADB910E98 )
)
game (
name "Doom RR (Proto)"
description "Doom RR (Proto)"
releaseyear "1995"
releasemonth "02"
releaseday "21"
rom ( name "Doom RR (1995-02-21)(Sega)(proto).bin" size 3145728 crc 6F1572F9 md5 C7786D03342FA87C291480D346E18402 sha1 B298AD7BACCA89770BCD6DEA796E5DBBFB72E642 )
)
game (
name "Doom RR (Proto)"
description "Doom RR (Proto)"
releaseyear "1995"
releasemonth "03"
releaseday "07"
rom ( name "Doom RR (1995-03-07)(Sega)(proto).bin" size 3145728 crc 955CF84A md5 37974D4C2596436922770EBBEED0927B sha1 A2D5B5ACC7E19ABFB927BB0ED110D80D685510C9 )
)
game (
name "Double Symbol v1.35 (T-Arts Studio) (Russia)"
description "Double Symbol v1.35 (T-Arts Studio) (Russia)"
releaseyear "2019"
releasemonth "12"
releaseday "30"
region "Russia"
rom ( name "Double Symbol v1.35 (2019-12-30)(T-Arts Studio)(RU)(en).bin" size 484748 crc 2812D4FE md5 4B14E8C22A97B4FD164E077A4980C582 sha1 54421DCFEECB9D00D1E6DEEB191D921BAA323A4E )
)
game (
name "FIFA Soccer 96 (EU-US) (M6)"
description "FIFA Soccer 96 (EU-US) (M6)"
releaseyear "1995"
rom ( name "FIFA Soccer 96 (1995)(Electronic Arts)(EU-US)(M6).bin" size 3145728 crc FB14A7C8 md5 24AAA6EF307D20147CE10E7610E59AA2 sha1 131EBB717DEE4DD1D8F5AB2B9393C23785D3A359 )
)
game (
name "FIFA Soccer 96 (EU-US) (M6)[f NTSC GhostlyDark]"
description "FIFA Soccer 96 (EU-US) (M6)[f NTSC GhostlyDark]"
releaseyear "1995"
rom ( name "FIFA Soccer 96 (1995)(Electronic Arts)(EU-US)(M6)[f NTSC GhostlyDark].bin" size 3145728 crc 495A7878 md5 677F11C646881D341FAAEDC224AA1F7F sha1 CF12DB30F3AFAF81EFF1C3B04D735A4E949335F9 )
)
game (
name "Galaxian - BasiEgaXorz Version (Devster) (PD)"
description "Galaxian - BasiEgaXorz Version (Devster) (PD)"
releaseyear "2000"
releasemonth "12"
rom ( name "Galaxian - BasiEgaXorz Version (2000-12)(Devster)(PD).bin" size 19044 crc 4FFCF4B2 md5 B17B61962136F99ABE1D6D1BB844D71C sha1 566D532C34F60A259A86FC2F99CEFF41AD993F5B )
)
game (
name "Kolibri"
description "Kolibri"
releaseyear "1995"
rom ( name "Kolibri (1995)(Sega).bin" size 3145728 crc 20CA53EF md5 6AF6207B1E67072A9104178130C61712 sha1 191AE0B525ECF32664086D8D748E0B35F776DDFE )
)
game (
name "Kolibri [tr pt]"
description "Kolibri [tr pt]"
releaseyear "1995"
rom ( name "Kolibri (1995)(Sega)[tr pt].bin" size 3145924 crc B2AE99F0 md5 93D852E07C0586C4D816DB2E36A13899 sha1 575E62012B80B72DC69AFB5323E20A4C9931F9A9 )
)
game (
name "Metal Head (Europe) (en-ja)"
description "Metal Head (Europe) (en-ja)"
releaseyear "1995"
region "Europe"
rom ( name "Metal Head (1995)(Sega)(EU)(en-ja).bin" size 3145728 crc BF9B8376 md5 5AB011DAE907F77E68EB764BEC3870D8 sha1 2A7767024E23B55FE193D586A96A3BA3C92E7EA8 )
)
game (
name "Metal Head (JP-US) (en-ja)"
description "Metal Head (JP-US) (en-ja)"
releaseyear "1995"
rom ( name "Metal Head (1995)(Sega)(JP-US)(en-ja).bin" size 3145728 crc EF5553FF md5 03CC5D7549D71BA4E9DDC1BEAE3805FB sha1 4E872FBB44ECB2BD730ABD8CC8F32F96B10582C0 )
)
game (
name "Metal Head Rev 19941114 (Beta)"
description "Metal Head Rev 19941114 (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941114 (1995)(Sega)(beta).bin" size 3145728 crc 2EA0FF81 md5 360EC44967BCC22A05DCD215C624897F sha1 A81DB052A095360439A1DA6E41AC19B91561AB27 )
)
game (
name "Metal Head Rev 19941118 (Beta)"
description "Metal Head Rev 19941118 (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941118 (1995)(Sega)(beta).bin" size 3145728 crc A0343749 md5 E36B87067183FE1BA286F0957C469B62 sha1 A943EA135D6C685F87957503697CB9F894E12C52 )
)
game (
name "Metal Head Rev 19941121 (Beta)"
description "Metal Head Rev 19941121 (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941121 (1995)(Sega)(beta).bin" size 3145728 crc 398BCB98 md5 9C5C8E456C5237705E6B9FD39FEF093B sha1 E7667F4A4342A5A45B0A010F0FE2E61B2BF99FEA )
)
game (
name "Metal Head Rev 19941202 (en-ja) (Beta)"
description "Metal Head Rev 19941202 (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941202 (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc 8B7BC8A4 md5 AAE550A44C4F349B25DB009EF84FCABD sha1 194F45A0651A59305E0E727E407801FF09968A62 )
)
game (
name "Metal Head Rev 19941207 (en-ja) (Beta)"
description "Metal Head Rev 19941207 (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941207 (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc FA0FC326 md5 B68BF1CDBA527506BB6B0AA04A0F3656 sha1 D82B26783F0843FAABE526167EABF296C84B0C47 )
)
game (
name "Metal Head Rev 19941207-B (en-ja) (Beta)"
description "Metal Head Rev 19941207-B (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941207-B (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc 476D29B0 md5 EBB8F4DF5E5215A5C8D2E1FACBB8396B sha1 438E172B22EF2B78F5BCEB3195DA408639AE463C )
)
game (
name "Metal Head Rev 19941209 (en-ja) (Beta)"
description "Metal Head Rev 19941209 (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941209 (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc 5369D23F md5 5E2F45365C0EAEDC7B22127343F4ED38 sha1 4D795A7ECAB65527E6538EF886C3C3783A1BA936 )
)
game (
name "Metal Head Rev 19941213 (en-ja) (Beta)"
description "Metal Head Rev 19941213 (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941213 (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc 3302B1A1 md5 176AAA2A84D0CC82E21C35F21DC45E64 sha1 5A38DCE482C7FE38A50C6FD8884B019F1ACAB2A1 )
)
game (
name "Metal Head Rev 19941220 (en-ja) (Beta)"
description "Metal Head Rev 19941220 (en-ja) (Beta)"
releaseyear "1995"
rom ( name "Metal Head Rev 19941220 (1995)(Sega)(en-ja)(beta).bin" size 3145728 crc DE99C9CE md5 AC7E0EF84B3F72BB4766AD1AF74A5318 sha1 8D7A9F78860342643502E2BA77B445B4DC7E078E )
)
game (
name "Mortal Kombat II Rev 199412 (Acclaim - Midway - Probe)"
description "Mortal Kombat II Rev 199412 (Acclaim - Midway - Probe)"
releaseyear "1994"
rom ( name "Mortal Kombat II Rev 199412 (1994)(Acclaim - Midway - Probe).bin" size 4194304 crc 773C0A85 md5 A95C0E7C1D35FD42CD2E3EB7B06CB6D0 sha1 D55964BD935110AC2D9CBD3B085B7E8B71B11DF2 )
)
game (
name "Mortal Kombat II Rev 199501 (Acclaim - Midway - Probe)"
description "Mortal Kombat II Rev 199501 (Acclaim - Midway - Probe)"
releaseyear "1994"
rom ( name "Mortal Kombat II Rev 199501 (1994)(Acclaim - Midway - Probe).bin" size 4194304 crc 211085CE md5 9D258D11FE1E4CAC2C1AAB370C35E57A sha1 F75698DE887D0EF980F73E35FC4615887A9AD58F )
)
game (
name "Mortal Kombat II Rev 199501 (Acclaim - Midway - Probe)[f NTSC GhostlyDark]"
description "Mortal Kombat II Rev 199501 (Acclaim - Midway - Probe)[f NTSC GhostlyDark]"
releaseyear "1994"
rom ( name "Mortal Kombat II Rev 199501 (1994)(Acclaim - Midway - Probe)[f NTSC GhostlyDark].bin" size 4194304 crc 527A6FEA md5 5CD165FCB98BD9C3E5C90544858D64EF sha1 BC58D02B791124DB434455F2E89D7673E33B17A5 )
)
game (
name "Motherbase (Europe)"
description "Motherbase (Europe)"
releaseyear "1995"
releasemonth "06"
region "Europe"
rom ( name "Motherbase (1995-06)(Sega)(EU).bin" size 2097152 crc 0D6523A3 md5 66833BE0DA3D737AC45CDAAB9B6BD818 sha1 00792570C459637D46F26D0CEB301ED9D83F0098 )
)
game (
name "Motocross Championship (Europe)"
description "Motocross Championship (Europe)"
releaseyear "1994"
region "Europe"
rom ( name "Motocross Championship (1994)(Sega)(EU)(en).bin" size 2097152 crc AE3364E9 md5 6BC365808A00B8A640DD86CCB5A0EA24 sha1 AF0CB8626825E1B431EBA07B8A9B571186745C16 )
)
game (
name "Motocross Championship (Europe)[f NTSC GhostlyDark]"
description "Motocross Championship (Europe)[f NTSC GhostlyDark]"
releaseyear "1994"
region "Europe"
rom ( name "Motocross Championship (1994)(Sega)(EU)(en)[f NTSC GhostlyDark].bin" size 2097152 crc C0869F7E md5 8A93374892337B963894FF32A6C83F31 sha1 6BC63CBAD1A899BF3AD3BFE684FD50B41D55FCDE )
)
game (
name "Motocross Championship (JP-US)"
description "Motocross Championship (JP-US)"
releaseyear "1994"
rom ( name "Motocross Championship (1994)(Sega)(JP-US)(en).bin" size 2097152 crc A21C5761 md5 2C4A934985021624D48725B8D7B039E8 sha1 5F1A107991AAF9EFF0B3CE864B2E3151F56ABE7B )
)
game (
name "Motocross Championship Rev 19941012 (Beta)"
description "Motocross Championship Rev 19941012 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941012 (1994)(Sega)(beta).bin" size 1690952 crc 0A075812 md5 B741A12B72807648AEE002105CE8D282 sha1 102E763C6F4BF65210B307D34D75473FD27D7AE4 )
)
game (
name "Motocross Championship Rev 19941017 (Beta)"
description "Motocross Championship Rev 19941017 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941017 (1994)(Sega)(beta).bin" size 1608792 crc F3163D21 md5 57182C2A4EDEBEC3858942094C5A482B sha1 670779A85DB5673B23825B91693B1015F841FDE3 )
)
game (
name "Motocross Championship Rev 19941018 (Beta)"
description "Motocross Championship Rev 19941018 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941018 (1994)(Sega)(beta).bin" size 1624764 crc 2C2DC4DF md5 FF8FC197FCD71018564473E83DB5D40C sha1 BAFABF4EB40FB1197DD543FA6AE69DF1F87E9D02 )
)
game (
name "Motocross Championship Rev 19941019 (Beta)"
description "Motocross Championship Rev 19941019 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941019 (1994)(Sega)(beta).bin" size 1644464 crc 385ED8C7 md5 B52DC9A0FD6C3BF46A66DC608965FDAA sha1 3862FE8D98A512E3332748B8F73FCDF84FABA489 )
)
game (
name "Motocross Championship Rev 19941020 (Beta)"
description "Motocross Championship Rev 19941020 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941020 (1994)(Sega)(beta).bin" size 1661296 crc AC6CF708 md5 400CF0229EBC8D441A7B03733C55CD55 sha1 95EDB6101EEE31588E7B0CE0B67D73206070EB81 )
)
game (
name "Motocross Championship Rev 19941024 (Beta)"
description "Motocross Championship Rev 19941024 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941024 (1994)(Sega)(beta).bin" size 1736076 crc 20C49183 md5 FF2DFBE40F8863C123E9D82C0EDF6E6E sha1 D641E7B2FD0A44AD603CDC324921A25F1B897288 )
)
game (
name "Motocross Championship Rev 19941028 (Beta)"
description "Motocross Championship Rev 19941028 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941028 (1994)(Sega)(beta).bin" size 1843436 crc 59107472 md5 0E3F3A483D99C8D1CC03A3402AFA13C9 sha1 174158DD18A4D243D3C943C9F8CF080ACD91CC3B )
)
game (
name "Motocross Championship Rev 19941101 (Beta)"
description "Motocross Championship Rev 19941101 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941101 (1994)(Sega)(beta).bin" size 2045468 crc 46970275 md5 F0C494585F0FAD8D77BF9115A6875399 sha1 372A43DF94CBED3859BBDDAD4982FA5301416AED )
)
game (
name "Motocross Championship Rev 19941102 (Beta)"
description "Motocross Championship Rev 19941102 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941102 (1994)(Sega)(beta).bin" size 2045684 crc CEFEF428 md5 9EEC4062C7D36F158D265731A8AB749A sha1 607B9D89E312294CA4E477DE238BEC2D1BEA2A42 )
)
game (
name "Motocross Championship Rev 19941102-B (Beta)"
description "Motocross Championship Rev 19941102-B (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941102-B (1994)(Sega)(beta).bin" size 2045684 crc EFE307FF md5 0FEA70D9FE033FF4DA6B0C4E31140B26 sha1 3B7CFE05C0A66FC025BBDD3A35BA7828B2FC3C7F )
)
game (
name "Motocross Championship Rev 19941103 (Beta)"
description "Motocross Championship Rev 19941103 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941103 (1994)(Sega)(beta).bin" size 2045120 crc C652C802 md5 A8359F240A85576A2904280C2B8C2FBB sha1 5DC89F7F2CC03689991C9325A1A2D08C6DF5DC1B )
)
game (
name "Motocross Championship Rev 19941104 (Beta)"
description "Motocross Championship Rev 19941104 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941104 (1994)(Sega)(beta).bin" size 2045624 crc 6E12D410 md5 A8B3F927CA15C43A0096357FB149F46A sha1 CA4DB761D26328B99445445B99304E90D7279C3E )
)
game (
name "Motocross Championship Rev 19941107 (Beta)"
description "Motocross Championship Rev 19941107 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941107 (1994)(Sega)(beta).bin" size 2097152 crc 63DB2FB0 md5 868B0DF732D4073E0B4070E2B762E134 sha1 181A58CFC8348E18E5D34ED0A75E79ACEDCC004E )
)
game (
name "Motocross Championship Rev 19941108 (Beta)"
description "Motocross Championship Rev 19941108 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941108 (1994)(Sega)(beta).bin" size 2097152 crc 5FF9EAB9 md5 FFDC287031F59D3CE4A6F4C2B69AFF31 sha1 93E13F7D3C4640E9AEE7D577E974AB6581C07F91 )
)
game (
name "Motocross Championship Rev 19941111 (Beta)"
description "Motocross Championship Rev 19941111 (Beta)"
releaseyear "1994"
rom ( name "Motocross Championship Rev 19941111 (1994)(Sega)(beta).bin" size 2097152 crc 37F78D3D md5 5BDC8F310638695B570F92FFD99C7C59 sha1 45F457930884C7A5EC35361E37B1FD8CD91E4487 )
)
game (
name "NBA Jam - Tournament Edition"
description "NBA Jam - Tournament Edition"
releaseyear "1995"
rom ( name "NBA Jam - Tournament Edition (1995)(Acclaim).bin" size 4194304 crc 6B7994AA md5 966A5E00DD7BCDC70B05C5A0C0E8F7AA sha1 C8AF3E74C49514669BA6652EC0C81BCCF77873B6 )
)
game (
name "NBA Jam - Tournament Edition [h]"
description "NBA Jam - Tournament Edition [h]"
releaseyear "1995"
rom ( name "NBA Jam - Tournament Edition (1995)(Acclaim)[h].bin" size 4194304 crc 60994C73 md5 86FDBABCA5AAEF396C70B8318FC10F03 sha1 5B6F76FD35BDAFB44564A17BCDC7F84519C98206 )
)
game (
name "NFL Quarterback Club (Acclaim - Iguana Entertainment)"
description "NFL Quarterback Club (Acclaim - Iguana Entertainment)"
releaseyear "1995"
rom ( name "NFL Quarterback Club (1995)(Acclaim - Iguana Entertainment).bin" size 3145728 crc 0BC7018D md5 E273C10114351CDAFEBA1ABCCCA8909D sha1 A0DC24F2F3A7FC5BFD12791CF25AF7F7888843CF )
)
game (
name "NFL Quarterback Club (Acclaim - Iguana Entertainment)[h]"
description "NFL Quarterback Club (Acclaim - Iguana Entertainment)[h]"
releaseyear "1995"
rom ( name "NFL Quarterback Club (1995)(Acclaim - Iguana Entertainment)[h].bin" size 3145728 crc F4948E5D md5 2EE6990A05235EE919AFE52B85E09D37 sha1 08B232AEFE095D13378D8692735868193919D3A6 )
)
game (