-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathOpenGen.32X.dat
1198 lines (1198 loc) · 98.5 KB
/
OpenGen.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE datafile PUBLIC "-//Logiqx//DTD ROM Management Datafile//EN" "http://www.logiqx.com/Dats/datafile.dtd">
<datafile>
<header>
<name>OpenGen.32X</name>
<description>OpenGood - Sega 32X</description>
<version>3.21</version>
<date>2021-03-12</date>
<author>OpenGood</author>
<homepage>OpenGood</homepage>
<url>https://github.com/SnowflakePowered/opengood</url>
<comment>296 of 296</comment>
</header>
<game name="32X Babe Picture by Fonzie (PD) (32X)">
<description>32X Babe Picture by Fonzie (PD) (32X)</description>
<rom name="32X Babe Picture by Fonzie (PD) (32X).32x" size="85888" crc="816b0cb4" md5="2449e7f984fb74afd350777439dd3294" sha1="dc16d3170d5809b57192e03864b7136935eada64"/>
</game>
<game name="32X Babe Picture by Fonzie (PD) (32X) [a1]">
<description>32X Babe Picture by Fonzie (PD) (32X) [a1]</description>
<rom name="32X Babe Picture by Fonzie (PD) (32X) [a1].32x" size="85888" crc="7c0587f6" md5="b13eb9474a946eff30546a9a2a768649" sha1="524093f7c93f07ec117f2a6c6a61e4da93ea1549"/>
</game>
<game name="32X Color by mic (PD) (32X)">
<description>32X Color by mic (PD) (32X)</description>
<rom name="32X Color by mic (PD) (32X).32x" size="4016" crc="7d345252" md5="670b47d74d9253bacff69914c2b1b150" sha1="e16c891fe82070fad2a9a853874fdf6bff773f83"/>
</game>
<game name="32X Cube by mic (PD) (32X)">
<description>32X Cube by mic (PD) (32X)</description>
<rom name="32X Cube by mic (PD) (32X).32x" size="5944" crc="83c95d93" md5="1d0f135a6f6802975725d4ee7dbc5d22" sha1="af6dbcdec190e6541358566cbfdf2e44b33f8902"/>
</game>
<game name="32X Fire by mic (PD) (32X)">
<description>32X Fire by mic (PD) (32X)</description>
<rom name="32X Fire by mic (PD) (32X).32x" size="3436" crc="1a80522c" md5="c262f96be8848e27e3f8bd2eaabd9d29" sha1="6a896d35baaea4d2f96530bc2e7eff69fdeb4a1b"/>
</game>
<game name="32X Kolor by mic (PD) (32X)">
<description>32X Kolor by mic (PD) (32X)</description>
<rom name="32X Kolor by mic (PD) (32X).32x" size="3904" crc="fcdf44a0" md5="6c34b3787bdd95b344388e969d9e650c" sha1="2be6d46641ac9e133145e4feef7a99018ab077f7"/>
</game>
<game name="32X Qinter Demo by Fonzie (PD) (32X)">
<description>32X Qinter Demo by Fonzie (PD) (32X)</description>
<rom name="32X Qinter Demo by Fonzie (PD) (32X).32x" size="381220" crc="93d4b0a3" md5="e1e65872eabc294a2acfb7c3bd85c837" sha1="128bd0b6e048c749da1a2f4c3abd6a867539a293"/>
</game>
<game name="32X Sample Program - Celtic - PWM Test (U) (32X)">
<description>32X Sample Program - Celtic - PWM Test (U) (32X)</description>
<rom name="32X Sample Program - Celtic - PWM Test (U) (32X).32x" size="524288" crc="542ad12e" md5="62d3b8f18c3d90afe343d07ead9c1d4c" sha1="b2b7938d5c9a207efecf9f5054308f5772c8c25f"/>
</game>
<game name="32X Sample Program - Celtic - PWM Test (U) (32X) [b1]">
<description>32X Sample Program - Celtic - PWM Test (U) (32X) [b1]</description>
<rom name="32X Sample Program - Celtic - PWM Test (U) (32X) [b1].32x" size="462336" crc="f00cceee" md5="dbc990db554e98958cbfb90b270a3f13" sha1="c8a74c80a264a7f6c20ea96849f9a63e03d08551"/>
</game>
<game name="32X SH-2 Master BIOS (U) (32X)">
<description>32X SH-2 Master BIOS (U) (32X)</description>
<rom name="32X SH-2 Master BIOS (U) (32X).bin" size="2048" crc="dd9c46b8" md5="f88354ec482be09aeccd76a97bb75868" sha1="1e5b0b2441a4979b6966d942b20cc76c413b8c5e"/>
</game>
<game name="32X SH-2 Master BIOS (U) (32X) [a1]">
<description>32X SH-2 Master BIOS (U) (32X) [a1]</description>
<rom name="32X SH-2 Master BIOS (U) (32X) [a1].bin" size="2048" crc="c7102c53" md5="f754457e362a347c80c87f99164c3349" sha1="ed73a47f186b373b8eff765f84ef26c3d9ef6cb0"/>
</game>
<game name="32X SH-2 Slave BIOS (U) (32X)">
<description>32X SH-2 Slave BIOS (U) (32X)</description>
<rom name="32X SH-2 Slave BIOS (U) (32X).bin" size="1024" crc="bfda1fe5" md5="7f041b6a55cd7423a6c08a219335269e" sha1="4103668c1bbd66c5e24558e73d4f3f92061a109a"/>
</game>
<game name="32X Test4 (PD) (32X)">
<description>32X Test4 (PD) (32X)</description>
<rom name="32X Test4 (PD) (32X).32x" size="616212" crc="95469138" md5="403b9a8118a465dda23529810e037adf" sha1="239b7631f997a1d782a0329d292499b7203ac993"/>
</game>
<game name="36 Great Holes Starring Fred Couples (E) (32X) [!]">
<description>36 Great Holes Starring Fred Couples (E) (32X) [!]</description>
<rom name="36 Great Holes Starring Fred Couples (E) (32X) [!].32x" size="3145728" crc="6ef99202" md5="f772e22b574406e3e20c172117050973" sha1="55848f7c54533fd2a19011db661ef261cd8bdb22"/>
</game>
<game name="36 Great Holes Starring Fred Couples (E) (32X) [b1]">
<description>36 Great Holes Starring Fred Couples (E) (32X) [b1]</description>
<rom name="36 Great Holes Starring Fred Couples (E) (32X) [b1].32x" size="262144" crc="8d1cbc38" md5="902f28ebdafbdde3e1ba58eb3d4e2cb0" sha1="59a917852f0905ea316c00fbb068a063bbe0a913"/>
</game>
<game name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 13, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (E) (Prototype - Dec 13, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 13, 1994) (32X).32x" size="3145728" crc="34bf7c6d" md5="443a014104ff3145f0b2eebe4ffce0fd" sha1="6398a442595650d70a5ce20a52331899c0dfaf62"/>
</game>
<game name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 14, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (E) (Prototype - Dec 14, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 14, 1994) (32X).32x" size="3145728" crc="a63b0636" md5="c30e393f01ada81ca44bad43ee63d3b7" sha1="f78481e57111295c2f5aeb64cd306c3c5fbf6d97"/>
</game>
<game name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 21, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (E) (Prototype - Dec 21, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (E) (Prototype - Dec 21, 1994) (32X).32x" size="3145728" crc="cc0334bb" md5="7a186abafff18ba8ed439f362b56014e" sha1="6a1801ef96cc8c4a6896ab55e105f7fa8d707f51"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (32X) [!]">
<description>36 Great Holes Starring Fred Couples (JU) (32X) [!]</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (32X) [!].32x" size="3145728" crc="d3d0a2fe" md5="b90a2a1eec015911aa445f9c41d7bc32" sha1="dc77b1e5c888c2c4284766915a5020bb14ee681d"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 02, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 02, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 02, 1994) (32X).32x" size="3145728" crc="323c2935" md5="3e33e547288d1d2a5baf1b21a07f8df0" sha1="5b1140e33357a3d0fdc056ab5a350d588b5e5af9"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 03, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 03, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 03, 1994) (32X).32x" size="3145728" crc="3f30c0d2" md5="97caf7c900fe4bcee30117365a70543c" sha1="7ca51ad03ebb95f017a1b900a4a1592876d0d5c2"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 06, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 06, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 06, 1994) (32X).32x" size="3145728" crc="ecfe5a0f" md5="fa60425cd76cfdbee2dc8000b3099a98" sha1="af8eadcf49d0700c7479648865cc08cd40bc2808"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 19, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 19, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 19, 1994) (32X).32x" size="3145728" crc="c073149f" md5="fa347c89886d60279abf6b1d6c0c5f02" sha1="e28ab68e8aed7aa8e9f33a6e9c68678272df4d95"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 21, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 21, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Dec 21, 1994) (32X).32x" size="3145728" crc="3893dcfe" md5="86fcf541b14f98dedb8c8deff14de868" sha1="23e84ec4d8cec09992fcff323f32f49f44d23cd2"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 18, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 18, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 18, 1994) (32X).32x" size="3136712" crc="dc4c7c27" md5="9db9c401226292cefd5a28f6adfa5065" sha1="abe1d16dff2b2c1752e2f47bb15f97f049d6bfc0"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X).32x" size="3136736" crc="da1026c8" md5="4b5fd6be86b307399bc6592d8eae79b5" sha1="2ea5fcdffa9b8f22b1468eeb2e76134d3f1b3be6"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X) [a1]">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X) [a1]</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 19, 1994) (32X) [a1].32x" size="3145728" crc="8fa32086" md5="c9ce63ee1c915b4ffd1d14940ecbf7c6" sha1="5fc3837ba3b98f9f2c560d3775da969798a150ee"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 21, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 21, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 21, 1994) (32X).32x" size="3136724" crc="8d0713ce" md5="12aae94fab8374e0c61c8220f28007b7" sha1="34d7bf6b86c877ab068390f660073016a95711e3"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X).32x" size="3136724" crc="e1e98cac" md5="9035d2efd419306d5014df16f0dd29a4" sha1="a6bee7800f73e2ca12381432154b636ddd279412"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X) [a1]">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X) [a1]</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 22, 1994) (32X) [a1].32x" size="3136724" crc="6b656643" md5="f4877c8823d7f39df0932068ed23a585" sha1="0590ff4405fcd0ca8f2fc5293690330fdf63127a"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 23, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 23, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 23, 1994) (32X).32x" size="3136724" crc="0b58f6a5" md5="11d87989771f3f0882512a52e758439e" sha1="fa2f2d3887bb3e6010a5c13289f63681cac0404a"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 26, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 26, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 26, 1994) (32X).32x" size="3145728" crc="2ece26db" md5="3920135572b377d760cee34995c159bd" sha1="541ddfac44323c589ad23f51a5be984ecfa55539"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 27, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 27, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 27, 1994) (32X).32x" size="3145728" crc="b5e82f07" md5="7d04ff0502908fe179ad90aaa5270542" sha1="afa1f5c2dab7de2114d3a34794785b0d6768d95c"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X).32x" size="3145728" crc="38d09772" md5="20917b40eb81edeebfceb57aec9b419d" sha1="f0d06074b1b5ce2df77fdaaf74620158efb7f875"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X) [a1]">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X) [a1]</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 28, 1994) (32X) [a1].32x" size="3145728" crc="8f4f6479" md5="8b2f55c154013452170e0dfd77d5ad2a" sha1="e341e5fca64def64c019310d4f551ff48908291b"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 29, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 29, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 29, 1994) (32X).32x" size="3145728" crc="9c5011b0" md5="bbcf031159ad7ea4b014a58c0ed9433f" sha1="5658febd37534280962dc6801efc10604b07603f"/>
</game>
<game name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 30, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 30, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (JU) (Prototype - Nov 30, 1994) (32X).32x" size="3145728" crc="41e2d54d" md5="9386cbfe21dcb58cc8a8006c8bc06e61" sha1="19681b2e5d1eafaa09401dca296bea884fbc08c1"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Jul 06, 1994 REV1.x) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Jul 06, 1994 REV1.x) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Jul 06, 1994 REV1.x) (32X).32x" size="1057122" crc="6726c100" md5="56b0c88cd4aef3ff65ef623527a9edba" sha1="6a066c44d71199d62dbc368efbc371dd01cc95e1"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 01, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 01, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 01, 1994) (32X).32x" size="3136928" crc="91106a69" md5="03480484a4d2e3fe3353900dc3033101" sha1="f6b944876b40b5a52bf1293b71373cb3f5c71a14"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 03, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 03, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 03, 1994) (32X).32x" size="3136712" crc="d261a6c3" md5="7f1ddc96f801c121adb5e6b1a5c2f73f" sha1="7c295cb39408d21835b76c2c1aeb03b659094593"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 05, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 05, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 05, 1994) (32X).32x" size="3136712" crc="1559541e" md5="ca9ca81bde5b0819d1bcce097796a41b" sha1="eff8337257b0cc6221ce459d32191f7d63450d1c"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 07, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 07, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 07, 1994) (32X).32x" size="3136712" crc="36b1708e" md5="6bc3ecead9db55f646f4db49d484403d" sha1="ea7539dbeaa86fdc36132e85be48f6577fb6dbb9"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 08, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 08, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 08, 1994) (32X).32x" size="3136712" crc="bcaf23fd" md5="415b56539f3dbe85fbc9e327e7512136" sha1="f317903c11777991417abf95cc45d4888bee25d6"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 10, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 10, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 10, 1994) (32X).32x" size="3136712" crc="5226ef71" md5="a1cfa86bc7d81f199f0b329ddf4458e7" sha1="33620d0bb49c52a24563958b4caec883b2009a90"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Nov 16, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Nov 16, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Nov 16, 1994) (32X).32x" size="3136712" crc="ccb9fead" md5="bcb29b2ec1d693aa863998b19a1873f4" sha1="3bff7d113fa7487d015a54d8f27050f2cf296106"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Oct 11, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Oct 11, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Oct 11, 1994) (32X).32x" size="3001124" crc="622a34a5" md5="2600f3ba9d72947910e7cffeba8f5b71" sha1="94c994ce74377ec726b4c0803b51fd4ca6cc4389"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Oct 17, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Oct 17, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Oct 17, 1994) (32X).32x" size="3001124" crc="cbd33fc7" md5="6aca59ba95b6c1defe19ed32f00d3ef1" sha1="83b70bea9efa281dd5119334a28ef33bc7426325"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Oct 18, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Oct 18, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Oct 18, 1994) (32X).32x" size="4194304" crc="e39ba17f" md5="1fc6e86e79315775cb93649f4cfe83d9" sha1="41e12cb8465acb6e0180deea9b34c2554e3f79e1"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Oct 24, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Oct 24, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Oct 24, 1994) (32X).32x" size="3090536" crc="ffe279cc" md5="c5a1281e901df24a620a66026373cddc" sha1="2093a7437062dc21c4440a360dd177102ca6cc88"/>
</game>
<game name="36 Great Holes Starring Fred Couples (Prototype - Oct 26, 1994) (32X)">
<description>36 Great Holes Starring Fred Couples (Prototype - Oct 26, 1994) (32X)</description>
<rom name="36 Great Holes Starring Fred Couples (Prototype - Oct 26, 1994) (32X).32x" size="3090528" crc="37a79c9c" md5="61bf65053db9eaa967bca74e18adf23d" sha1="91d78a15094c20fb6a8103d5addbaa4f90d199b8"/>
</game>
<game name="After Burner Complete (E) (32X) [!]">
<description>After Burner Complete (E) (32X) [!]</description>
<rom name="After Burner Complete (E) (32X) [!].32x" size="2097152" crc="029106f5" md5="a8e05bd3cdf97e1811ebd6d52c4371a7" sha1="c7d56cc75dc9a5206fda6a080cbedae9f48c82bc"/>
</game>
<game name="After Burner Complete (JU) (32X) [!]">
<description>After Burner Complete (JU) (32X) [!]</description>
<rom name="After Burner Complete (JU) (32X) [!].32x" size="2097152" crc="204044c4" md5="ec9529858cc7961b39f5382b2f657b8f" sha1="9cf575feb036e2f26e78350154d5eb2fd3825325"/>
</game>
<game name="Back and Forth Rotating XOR Palette by DevSter (PD) (32X)">
<description>Back and Forth Rotating XOR Palette by DevSter (PD) (32X)</description>
<rom name="Back and Forth Rotating XOR Palette by DevSter (PD) (32X).32x" size="4696" crc="4e7ac3d4" md5="e6a3e8049631c65ea7193c15159012d9" sha1="87f999f629feb873f8916483ab76152a88a9af53"/>
</game>
<game name="Backward Rotating XOR Palette Demo by DevSter (PD) (32X)">
<description>Backward Rotating XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Backward Rotating XOR Palette Demo by DevSter (PD) (32X).32x" size="4648" crc="d4ae89da" md5="adea726d3a7186292274014024620fb8" sha1="58b0e798329df3591a08c21492a8967ad20736c6"/>
</game>
<game name="BasiEgaXorz - Scrolling Anime Pic by Devster (PD) (32X)">
<description>BasiEgaXorz - Scrolling Anime Pic by Devster (PD) (32X)</description>
<rom name="BasiEgaXorz - Scrolling Anime Pic by Devster (PD) (32X).32x" size="87892" crc="fbabb416" md5="a1d15c221af1d1c797ce65d70652e8f0" sha1="bdf8f7b682e337f3b6842e98daa4f5d5bf05d2d3"/>
</game>
<game name="BC Racers (W) (32X) [c][!]">
<description>BC Racers (W) (32X) [c][!]</description>
<rom name="BC Racers (W) (32X) [c][!].32x" size="3145728" crc="936c3d27" md5="35a11e021ca0b7ff909e4774eb8b3236" sha1="9b5fd499eaa442d48a2c97fceb1d505dc8e8ddff"/>
</game>
<game name="Blackthorne (U) (32X) [!]">
<description>Blackthorne (U) (32X) [!]</description>
<rom name="Blackthorne (U) (32X) [!].32x" size="3145728" crc="d1a60a47" md5="c238b112113b0297b2b9f4f618d56598" sha1="4bf120cf056fe1417ca5b02fa0372ef33cb8ec11"/>
</game>
<game name="Blackthorne (U) (32X) [b1]">
<description>Blackthorne (U) (32X) [b1]</description>
<rom name="Blackthorne (U) (32X) [b1].32x" size="3145728" crc="635b92f3" md5="8527e4a0d69dd62ee009cfe4959cddb3" sha1="02419756ce881471abcf4269b4143d834c328fc7"/>
</game>
<game name="Brutal Unleashed - Above the Claw (U) (32X) [!]">
<description>Brutal Unleashed - Above the Claw (U) (32X) [!]</description>
<rom name="Brutal Unleashed - Above the Claw (U) (32X) [!].32x" size="3145728" crc="7a72c939" md5="1738a479b0253bcb0bcfb7bf09c03add" sha1="40aa2c787f37772cdbd7280b8be06b15421fabae"/>
</game>
<game name="Cosmic Carnage (E) (32X) [!]">
<description>Cosmic Carnage (E) (32X) [!]</description>
<rom name="Cosmic Carnage (E) (32X) [!].32x" size="3145728" crc="9f3fdbc2" md5="8aadc467d31bc64f95a7fbe8f95afeb3" sha1="900e8ecdcc4460b4c4af3873e1d6bc83da4aee99"/>
</game>
<game name="Cosmic Carnage (JU) (32X) [!]">
<description>Cosmic Carnage (JU) (32X) [!]</description>
<rom name="Cosmic Carnage (JU) (32X) [!].32x" size="3145728" crc="7c7be6a2" md5="32f3002a46a462735aa12ca856cb7652" sha1="9a563ed821b483148339561ebd2b876efa58847b"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Oct 04, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Oct 04, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Oct 04, 1994) (32X).32x" size="3145728" crc="c6867772" md5="f2a81c48457191b4f3329792941ac71a" sha1="17cf3d4671a3313764df42e0f9a25133b0dc4ec9"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Oct 05, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Oct 05, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Oct 05, 1994) (32X).32x" size="3145728" crc="bfe27f56" md5="0210673f0735f1f0956057243bef919c" sha1="99bb4c98c7de0668934ab91a6eb01c9f680918b9"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Oct 07, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Oct 07, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Oct 07, 1994) (32X).32x" size="3145728" crc="d8b04c24" md5="0eee6f56666fd70b3483bad9b5297a5e" sha1="c051de6dccc48352d51650f2712dbc7d62a1ec1a"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Oct 11, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Oct 11, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Oct 11, 1994) (32X).32x" size="3145728" crc="e483498b" md5="52a2e8a8a6a031e0ae731d2efd65a982" sha1="bbdfe2b276c255247225efd1e8348be57a42ef4a"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Sep 26, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Sep 26, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Sep 26, 1994) (32X).32x" size="3145728" crc="f04f4366" md5="7f97f54d53a6adfcde9a56faaf448c34" sha1="512d3c9b51e2f3015265dc78757363f45fc0a788"/>
</game>
<game name="Cosmic Carnage (JU) (Prototype - Sep 28, 1994) (32X)">
<description>Cosmic Carnage (JU) (Prototype - Sep 28, 1994) (32X)</description>
<rom name="Cosmic Carnage (JU) (Prototype - Sep 28, 1994) (32X).32x" size="3145728" crc="cf89175f" md5="ad83a93fc3a31444bdd89ddb11262c5d" sha1="443c961bfc441b4d0ace5f6e0a8d1bb7abf8ac28"/>
</game>
<game name="Cosmic Carnage (Prototype - Sep 06, 1994) (32X)">
<description>Cosmic Carnage (Prototype - Sep 06, 1994) (32X)</description>
<rom name="Cosmic Carnage (Prototype - Sep 06, 1994) (32X).32x" size="3145728" crc="d4166241" md5="2a6755d2c4f00bc8569a3fd41dd556d8" sha1="f84006cee56748bf2c7249dec3c356409cb0e0a5"/>
</game>
<game name="Cosmic Carnage (Prototype - Sep 21, 1994) (32X)">
<description>Cosmic Carnage (Prototype - Sep 21, 1994) (32X)</description>
<rom name="Cosmic Carnage (Prototype - Sep 21, 1994) (32X).32x" size="4194304" crc="7b58141c" md5="4fd7b679099aaf9ebe8dec1603ec3780" sha1="926996f4b1f935ce4c3b46e902171c4b4da16385"/>
</game>
<game name="Darxide (E) (M4) (32X) [!]">
<description>Darxide (E) (M4) (32X) [!]</description>
<rom name="Darxide (E) (M4) (32X) [!].32x" size="2097152" crc="22d7c906" md5="30ee320f76db70a836edeff2c8ce9cd2" sha1="108b4ffed8643abdefa921cfb58389b119b47f3d"/>
</game>
<game name="DevSter Owns! Text Demo (PD) (32X)">
<description>DevSter Owns! Text Demo (PD) (32X)</description>
<rom name="DevSter Owns! Text Demo (PD) (32X).32x" size="4196" crc="03f9f674" md5="833653b5fd3d49c73e562a42eb7f4f8b" sha1="96b92cca59a0e9005dc958d96207cf71a91cf0b9"/>
</game>
<game name="DevSter's GALAXIAN! (PD) (32X)">
<description>DevSter's GALAXIAN! (PD) (32X)</description>
<rom name="DevSter's GALAXIAN! (PD) (32X).32x" size="19044" crc="4ffcf4b2" md5="b17b61962136f99abe1d6d1bb844d71c" sha1="566d532c34f60a259a86fc2f99ceff41ad993f5b"/>
</game>
<game name="Doom (E) (32X) [!]">
<description>Doom (E) (32X) [!]</description>
<rom name="Doom (E) (32X) [!].32x" size="3145728" crc="53734e3a" md5="1abe8b9b1855b1b101cb7f1d86395c22" sha1="4ec03c2114ebffbbcd16859583340d4ea4cd8dd5"/>
</game>
<game name="Doom (E) (Prototype - Oct 02, 1994) (32X)">
<description>Doom (E) (Prototype - Oct 02, 1994) (32X)</description>
<rom name="Doom (E) (Prototype - Oct 02, 1994) (32X).32x" size="4194304" crc="6182e821" md5="fd439f39b26ba22e4f79a0c87352c6b0" sha1="2945da1e6452b194fbbe44a685864a2000ea5cfd"/>
</game>
<game name="Doom (JU) (32X) [!]">
<description>Doom (JU) (32X) [!]</description>
<rom name="Doom (JU) (32X) [!].32x" size="3145728" crc="208332fd" md5="79339867d9d4f58b169753d9a29ea1a5" sha1="b68e9c7af81853b8f05b8696033dfe4c80327e38"/>
</game>
<game name="Doom (Prototype - Sep 01, 1994) (32X)">
<description>Doom (Prototype - Sep 01, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 01, 1994) (32X).32x" size="3102248" crc="7dcc1c18" md5="0a581f2470a35141f32c90c9e9c7f3e5" sha1="b2349f625ac077222b49f0e507c552b24c824bd2"/>
</game>
<game name="Doom (Prototype - Sep 06, 1994) (32X)">
<description>Doom (Prototype - Sep 06, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 06, 1994) (32X).32x" size="4194304" crc="646d5c47" md5="2f9dfd9c5e06f9df0cfbe0f7e2a425d7" sha1="4fda0184d688886314d929224d92b4a35c712675"/>
</game>
<game name="Doom (Prototype - Sep 09, 1994) (32X)">
<description>Doom (Prototype - Sep 09, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 09, 1994) (32X).32x" size="3894824" crc="8d757b51" md5="f9ac4fff9b19ac75fa6d22a89ea942c6" sha1="5697176636df575d8b65480708efa85544d44302"/>
</game>
<game name="Doom (Prototype - Sep 14, 1994) (32X)">
<description>Doom (Prototype - Sep 14, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 14, 1994) (32X).32x" size="3760828" crc="102678b3" md5="f243589e68209c8f18f0d4e5775c3107" sha1="1bf7bc1fc2eafe71d1e72608566d5c0d01d5c79c"/>
</game>
<game name="Doom (Prototype - Sep 16, 1994) (32X)">
<description>Doom (Prototype - Sep 16, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 16, 1994) (32X).32x" size="4194304" crc="b554596f" md5="c645547a0d1da8758663317bc9634224" sha1="0530d326b75e97b04530761f50ced4a226b183d2"/>
</game>
<game name="Doom (Prototype - Sep 21, 1994) (32X)">
<description>Doom (Prototype - Sep 21, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 21, 1994) (32X).32x" size="3507720" crc="2d09b919" md5="46811a3ae28768d571af51796a940b8f" sha1="2a2c80adb1cf62a71581400357951b2007770e8b"/>
</game>
<game name="Doom (Prototype - Sep 23, 1994) (32X)">
<description>Doom (Prototype - Sep 23, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 23, 1994) (32X).32x" size="3145728" crc="abc3eb89" md5="54c0ae49bd3f514c60976a4e62b8527e" sha1="e472548171a4e6183f16618bfcb5b6c09e7d6744"/>
</game>
<game name="Doom (Prototype - Sep 25, 1994) (32X)">
<description>Doom (Prototype - Sep 25, 1994) (32X)</description>
<rom name="Doom (Prototype - Sep 25, 1994) (32X).32x" size="3145728" crc="b9ae1316" md5="9abc704274f7d59f20832b2aa4d7ec8d" sha1="c3e78c38cfd2516f943a10f435664ba06790f1c4"/>
</game>
<game name="Doom (U) (Prototype - Sep 27, 1994) (32X)">
<description>Doom (U) (Prototype - Sep 27, 1994) (32X)</description>
<rom name="Doom (U) (Prototype - Sep 27, 1994) (32X).32x" size="3145728" crc="12991053" md5="000d37e58327be661c6c9c6803077c5b" sha1="f7539c406821b5ae4bcb0f41fe2839d07ab1fdb2"/>
</game>
<game name="Doom - 24 Level Expansion Addendum v1.1 by Saxman & Nuxius (Hack) (32X)">
<description>Doom - 24 Level Expansion Addendum v1.1 by Saxman & Nuxius (Hack) (32X)</description>
<rom name="Doom - 24 Level Expansion Addendum v1.1 by Saxman & Nuxius (Hack) (32X).32x" size="3454568" crc="4821de9c" md5="7c2144bc01cb16b2c12f0c3913e9d3cb" sha1="0de2eaccae8468acbea764140cc8f76474dda237"/>
</game>
<game name="Doom - 24 Level Expansion v1.0 by Saxman & Nuxius (Hack) (32X)">
<description>Doom - 24 Level Expansion v1.0 by Saxman & Nuxius (Hack) (32X)</description>
<rom name="Doom - 24 Level Expansion v1.0 by Saxman & Nuxius (Hack) (32X).32x" size="3454568" crc="3ae0e83b" md5="dda2e9bb2d2c97de09f0dd5ac87e3744" sha1="fd24ea546a35e8f081b428a41b348133100a8f5b"/>
</game>
<game name="Doom RR (JU) (Prototype - Feb 15, 1995) (32X)">
<description>Doom RR (JU) (Prototype - Feb 15, 1995) (32X)</description>
<rom name="Doom RR (JU) (Prototype - Feb 15, 1995) (32X).32x" size="3145728" crc="48399bc5" md5="e7917f7d91c05c0f928f6b4d68c553b2" sha1="63568023c907d636133e1a2fd140afbadb910e98"/>
</game>
<game name="Doom RR (JU) (Prototype - Feb 21, 1995) (32X)">
<description>Doom RR (JU) (Prototype - Feb 21, 1995) (32X)</description>
<rom name="Doom RR (JU) (Prototype - Feb 21, 1995) (32X).32x" size="3145728" crc="6f1572f9" md5="c7786d03342fa87c291480d346e18402" sha1="b298ad7bacca89770bcd6dea796e5dbbfb72e642"/>
</game>
<game name="Doom RR (JU) (Prototype - Mar 07, 1995) (32X)">
<description>Doom RR (JU) (Prototype - Mar 07, 1995) (32X)</description>
<rom name="Doom RR (JU) (Prototype - Mar 07, 1995) (32X).32x" size="3145728" crc="955cf84a" md5="37974d4c2596436922770ebbeed0927b" sha1="a2d5b5acc7e19abfb927bb0ed110d80d685510c9"/>
</game>
<game name="ECCO The Dolphin CinePak Demo (JU) (32X)">
<description>ECCO The Dolphin CinePak Demo (JU) (32X)</description>
<rom name="ECCO The Dolphin CinePak Demo (JU) (32X).32x" size="3145728" crc="b06178df" md5="c2b642fdcfff8bff511e45203a1e8679" sha1="10409f2245b058e8a32cba51e1ea391ca4480108"/>
</game>
<game name="FIFA International Soccer 96 (UE) (M6) (32X) [c][!]">
<description>FIFA International Soccer 96 (UE) (M6) (32X) [c][!]</description>
<rom name="FIFA International Soccer 96 (UE) (M6) (32X) [c][!].32x" size="3145728" crc="fb14a7c8" md5="24aaa6ef307d20147ce10e7610e59aa2" sha1="131ebb717dee4dd1d8f5ab2b9393c23785d3a359"/>
</game>
<game name="Fuboy - Gameboy Emulator by mic (v2009-01-31) (PD) (32X)">
<description>Fuboy - Gameboy Emulator by mic (v2009-01-31) (PD) (32X)</description>
<rom name="Fuboy - Gameboy Emulator by mic (v2009-01-31) (PD) (32X).32x" size="66132" crc="bb712db3" md5="bc810ff50d9187b5ef603a68c2adee7b" sha1="acece63b5a35c61a456a0802ad3753cdb6007da9"/>
</game>
<game name="Green Rotating No Stretching XOR Palette Demo by DevSter (PD) (32X)">
<description>Green Rotating No Stretching XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Green Rotating No Stretching XOR Palette Demo by DevSter (PD) (32X).32x" size="76376" crc="84251f0a" md5="11990609886231d241bd284fd2c05adb" sha1="4582aa4309baffe80a087efe50be4644e7d3b64d"/>
</game>
<game name="Green Rotating XOR Palette Demo by DevSter (PD) (32X)">
<description>Green Rotating XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Green Rotating XOR Palette Demo by DevSter (PD) (32X).32x" size="4696" crc="e075ece6" md5="d6f06432d0e6a01940eb64c4a3f8a554" sha1="3c211234782c9e97e76f2dba587e879272b123af"/>
</game>
<game name="Hot Chick by DevSter (PD) (32X)">
<description>Hot Chick by DevSter (PD) (32X)</description>
<rom name="Hot Chick by DevSter (PD) (32X).32x" size="74588" crc="da9c93c9" md5="a62154ed4f0cfacd79012cdb2a164191" sha1="a62652eb8ad8c62b36f6b1ffb96922d045c4e3ac"/>
</game>
<game name="Hot Chick Drawn Without the SH2s for Emulators by DevSter (PD) (32X)">
<description>Hot Chick Drawn Without the SH2s for Emulators by DevSter (PD) (32X)</description>
<rom name="Hot Chick Drawn Without the SH2s for Emulators by DevSter (PD) (32X).32x" size="77788" crc="d581910d" md5="4c6906c7d0e7a0a01268806a8a7fa788" sha1="7d488bfd1bbd399d305da1b6cbf87edc882f3ed0"/>
</game>
<game name="Hot Chick Drawn Without the SH2s for Hardware by DevSter (PD) (32X)">
<description>Hot Chick Drawn Without the SH2s for Hardware by DevSter (PD) (32X)</description>
<rom name="Hot Chick Drawn Without the SH2s for Hardware by DevSter (PD) (32X).32x" size="77884" crc="02d37b32" md5="ff00fe687c0712952176510a0ceb1046" sha1="c490a19423c609ca3e9f89b21801de2307e4f87a"/>
</game>
<game name="Hot Chick in High Quality 15BPP by DevSter (PD) (32X)">
<description>Hot Chick in High Quality 15BPP by DevSter (PD) (32X)</description>
<rom name="Hot Chick in High Quality 15BPP by DevSter (PD) (32X).32x" size="148836" crc="938f4e1d" md5="546823f02d20458c20113cf23e41c764" sha1="ab7270121be53c6c82c4cb45f8f41dd24eb3a2a5"/>
</game>
<game name="Hot Chick in VDP Mode 2 by DevSter (PD) (32X)">
<description>Hot Chick in VDP Mode 2 by DevSter (PD) (32X)</description>
<rom name="Hot Chick in VDP Mode 2 by DevSter (PD) (32X).32x" size="77144" crc="cbf2f87e" md5="174fcbc5026408d00e727b907970f660" sha1="376e67044c08373e49fd79892392a6a3a20059ef"/>
</game>
<game name="Hot Chick in VDP Mode 3 by DevSter (PD) (32X)">
<description>Hot Chick in VDP Mode 3 by DevSter (PD) (32X)</description>
<rom name="Hot Chick in VDP Mode 3 by DevSter (PD) (32X).32x" size="77144" crc="f2758266" md5="e68d3dba08fed9b6301502e89e226595" sha1="bc16856dbcd88a2ad742ed636b35f405da8e9af2"/>
</game>
<game name="Hot Chick Spinning Demo by DevSter (PD) (32X)">
<description>Hot Chick Spinning Demo by DevSter (PD) (32X)</description>
<rom name="Hot Chick Spinning Demo by DevSter (PD) (32X).32x" size="76840" crc="73b25607" md5="dde7f49364694285edc48b7362c45c91" sha1="86cf6c88ccedefeb0b691c3f9aab5b624c0120d5"/>
</game>
<game name="Hot Chick Spinning Slower Demo by DevSter (PD) (32X)">
<description>Hot Chick Spinning Slower Demo by DevSter (PD) (32X)</description>
<rom name="Hot Chick Spinning Slower Demo by DevSter (PD) (32X).32x" size="76840" crc="3d1d1191" md5="ca13d2ec9f208b0ebf90dd7b60124f6e" sha1="221a74408653e18cef8ce2f9b4d33ed93e4218b7"/>
</game>
<game name="Hot Chick with Genesis VDP Overlay by DevSter (PD) (32X)">
<description>Hot Chick with Genesis VDP Overlay by DevSter (PD) (32X)</description>
<rom name="Hot Chick with Genesis VDP Overlay by DevSter (PD) (32X).32x" size="77144" crc="817b7656" md5="d6dbd0dc6748d90d69095f9c473a40c2" sha1="99ee4fded53e4856a633676b0c6f83081186492c"/>
</game>
<game name="Hot Chick Zoom Shot by DevSter (PD) (32X)">
<description>Hot Chick Zoom Shot by DevSter (PD) (32X)</description>
<rom name="Hot Chick Zoom Shot by DevSter (PD) (32X).32x" size="78384" crc="e6dd4f0c" md5="b3afa1355edd3d8ea546a3562de877b3" sha1="a7e3eb018063cd9470f25ca74dad6603b913e0c7"/>
</game>
<game name="Knuckles' Chaotix (E) [!] (32X)">
<description>Knuckles' Chaotix (E) [!] (32X)</description>
<rom name="Knuckles' Chaotix (E) [!] (32X).32x" size="3145728" crc="41d63572" md5="4ce9e6b6e8883d8a678d90aabce022d0" sha1="5c1a2e327a656217604d4bae7e141764a7e59922"/>
</game>
<game name="Knuckles' Chaotix (E) [f1] (32X)">
<description>Knuckles' Chaotix (E) [f1] (32X)</description>
<rom name="Knuckles' Chaotix (E) [f1] (32X).32x" size="3145728" crc="87fbdbd7" md5="72d3eb77a39f28adf0c679b6eddbf95e" sha1="a88fd0e0159efc12f5d8a7898941007e868c2e13"/>
</game>
<game name="Knuckles' Chaotix (JU) (32X) [!]">
<description>Knuckles' Chaotix (JU) (32X) [!]</description>
<rom name="Knuckles' Chaotix (JU) (32X) [!].32x" size="3145728" crc="d0b0b842" md5="47b1095e68b053125cd2cd5b1ac4eb50" sha1="0c2fff7bc79ed26507c08ac47464c3af19f7ced7"/>
</game>
<game name="Knuckles' Chaotix (JU) (32X) [f1]">
<description>Knuckles' Chaotix (JU) (32X) [f1]</description>
<rom name="Knuckles' Chaotix (JU) (32X) [f1].32x" size="3145728" crc="d8977863" md5="d0981100adf924a085c4c43ffd3f8b4c" sha1="9d162332daf212602f55949b200a4c490d9b4bb2"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 0111 - Jan 12, 1995, 09.36) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 0111 - Jan 12, 1995, 09.36) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 0111 - Jan 12, 1995, 09.36) (32X).32x" size="4194304" crc="5523ea78" md5="d8ad7470835e0edc83b770b59584f625" sha1="882ce770f32f4af61ac422accecc8a84e1c52cd3"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 0202 - Feb 07, 1995, 15.25) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 0202 - Feb 07, 1995, 15.25) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 0202 - Feb 07, 1995, 15.25) (32X).32x" size="3145728" crc="7b32e440" md5="e6c65023505129b294c48d37a2d7899d" sha1="4e4af26f944cf3b5d99f60f37b20dc67207a4fbe"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 0213 - Feb 13, 1995, 07.30) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 0213 - Feb 13, 1995, 07.30) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 0213 - Feb 13, 1995, 07.30) (32X).32x" size="3145728" crc="14f43e14" md5="9d986b6c96704de70e43988825df463a" sha1="0cbbcc96f23917feb844469163bc8ab14da94816"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 119 - Jan 19, 1995, 07.04) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 119 - Jan 19, 1995, 07.04) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 119 - Jan 19, 1995, 07.04) (32X).32x" size="4194304" crc="468ad032" md5="dde8f92c0fb80488f53ebbce98bd203c" sha1="2b1a5f19113fa4015437ede5a195c5dfb377e5be"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 1207 - Dec 07, 1994, 07.15) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 1207 - Dec 07, 1994, 07.15) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 1207 - Dec 07, 1994, 07.15) (32X).32x" size="3145728" crc="d62ae235" md5="ed059ef80f0292989c0cc86a0224f09d" sha1="150dace1482ebf38a0f6242be6d8b7ea19f8a737"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 1227 - Dec 27, 1994, 10.28) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 1227 - Dec 27, 1994, 10.28) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 1227 - Dec 27, 1994, 10.28) (32X).32x" size="4194304" crc="4307d738" md5="a161c79dd955d971ee3fcb2e01777257" sha1="c62a8be339ffd9dd182a3f8e60b6e27225cfc5f2"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 1229 - Dec 30, 1994, 15.31) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 1229 - Dec 30, 1994, 15.31) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 1229 - Dec 30, 1994, 15.31) (32X).32x" size="4194304" crc="36a294e0" md5="88c27c63dd58ba339b4db3a1c8791521" sha1="883c7748c3c352b44238d2bdc9152ac9651e99fb"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 208 - Feb 08, 1995, 11.17) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 208 - Feb 08, 1995, 11.17) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 208 - Feb 08, 1995, 11.17) (32X).32x" size="3145728" crc="b099e5f6" md5="b37e562d5c0a26122abf66ac94fef886" sha1="d965d12c8cce09683d80c08d06c74b7c6e7b8dab"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 209 - Feb 09, 1995, 08.25) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 209 - Feb 09, 1995, 08.25) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 209 - Feb 09, 1995, 08.25) (32X).32x" size="3145728" crc="e95d7f57" md5="241082f8b6399e658e3516281a2a725e" sha1="01c9f4614f282a05b3e86701b4ca18a1a0e1889c"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 210 - Feb 10, 1995, 06.28) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 210 - Feb 10, 1995, 06.28) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 210 - Feb 10, 1995, 06.28) (32X).32x" size="3145728" crc="7b716175" md5="b925cb18160ced5285981a3edd5c4213" sha1="4c13842abeda86ce6577da67ba5fc24fbfbdc0de"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 213B - Feb 13, 1995, 06.46) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 213B - Feb 13, 1995, 06.46) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 213B - Feb 13, 1995, 06.46) (32X).32x" size="3145728" crc="aff06bff" md5="bdd716e7e0ce4a24ad73179fba8d65dd" sha1="88b122398c1b25f432ae845b799f1308f51aa055"/>
</game>
<game name="Knuckles' Chaotix (JU) (Prototype 214 - Feb 14, 1995, 06.46) (32X)">
<description>Knuckles' Chaotix (JU) (Prototype 214 - Feb 14, 1995, 06.46) (32X)</description>
<rom name="Knuckles' Chaotix (JU) (Prototype 214 - Feb 14, 1995, 06.46) (32X).32x" size="3145728" crc="ba0a1108" md5="5e1012438fdeda44b64589fd33daad5f" sha1="af3bfd9540098581aef08664d625725ffcc90be2"/>
</game>
<game name="Kolibri (W) (32X) [!]">
<description>Kolibri (W) (32X) [!]</description>
<rom name="Kolibri (W) (32X) [!].32x" size="3145728" crc="20ca53ef" md5="6af6207b1e67072a9104178130c61712" sha1="191ae0b525ecf32664086d8d748e0b35f776ddfe"/>
</game>
<game name="Mars Check Program V1.0 (JU) (32X)">
<description>Mars Check Program V1.0 (JU) (32X)</description>
<rom name="Mars Check Program V1.0 (JU) (32X).32x" size="4194304" crc="8f7260fb" md5="489ded0cc43448881cd863418bacf8e6" sha1="7654c6d3cf2883c30df51cf38d723ab7902280c4"/>
</game>
<game name="Mars Initial & Security Program v1.0 (32X)">
<description>Mars Initial & Security Program v1.0 (32X)</description>
<rom name="Mars Initial & Security Program v1.0 (32X).32x" size="2048" crc="468f156c" md5="ec48db13ba343e50971782cd2a9cbcf9" sha1="12cdd82da23fe89215967c6dbb6c0b71bab061c1"/>
</game>
<game name="Mars Sample Program - Egypt (JU) (32X)">
<description>Mars Sample Program - Egypt (JU) (32X)</description>
<rom name="Mars Sample Program - Egypt (JU) (32X).32x" size="262144" crc="969c80d4" md5="4213c4846622dbefb514a0441a553ace" sha1="d038d88cf518116fcb4df72df51dbc0c374792e2"/>
</game>
<game name="Mars Sample Program - Egypt (JU) (32X) [b1]">
<description>Mars Sample Program - Egypt (JU) (32X) [b1]</description>
<rom name="Mars Sample Program - Egypt (JU) (32X) [b1].32x" size="131072" crc="08f601e1" md5="cf2a08955a2c92cf6b3a562807f0896e" sha1="b0c0774352c627597e4ca67af8d0e11fe6a8d48c"/>
</game>
<game name="Mars Sample Program - Egypt (JU) (32X) [b2]">
<description>Mars Sample Program - Egypt (JU) (32X) [b2]</description>
<rom name="Mars Sample Program - Egypt (JU) (32X) [b2].32x" size="141508" crc="c9e11bd7" md5="7b84a8f2ba03b9a610db594d47693b45" sha1="886a336b47577505a8f528a8b049593750efb0e6"/>
</game>
<game name="Mars Sample Program - Gnu Sierra (JU) (32X)">
<description>Mars Sample Program - Gnu Sierra (JU) (32X)</description>
<rom name="Mars Sample Program - Gnu Sierra (JU) (32X).32x" size="655360" crc="5f0df42c" md5="fc5dc432cef5d977a7b9a0575acd884e" sha1="04efcf2802b11e130378734671ff8cfb78facd67"/>
</game>
<game name="Mars Sample Program - Gnu Sierra (JU) (32X) [b1]">
<description>Mars Sample Program - Gnu Sierra (JU) (32X) [b1]</description>
<rom name="Mars Sample Program - Gnu Sierra (JU) (32X) [b1].32x" size="599768" crc="38dd7411" md5="97dbcc7366802b37a7f1fbbdcb5bd943" sha1="2301006901cd70b3648b762f96c1b194c3451c62"/>
</game>
<game name="Mars Sample Program - Runlength Mode Test (JU) (32X)">
<description>Mars Sample Program - Runlength Mode Test (JU) (32X)</description>
<rom name="Mars Sample Program - Runlength Mode Test (JU) (32X).32x" size="262144" crc="d630e343" md5="915472c8d25c79f819492f660e5a8d06" sha1="56566575de6d1d42630f688eb0eeb1a93ebe2624"/>
</game>
<game name="Mars Sample Program - Runlength Mode Test (JU) (32X) [b1]">
<description>Mars Sample Program - Runlength Mode Test (JU) (32X) [b1]</description>
<rom name="Mars Sample Program - Runlength Mode Test (JU) (32X) [b1].32x" size="229068" crc="c1630e9d" md5="d79b2e1d3efaa1fa85b83afed474efc6" sha1="4edeed09eafb4250bb0dc5616bddab401ee065a1"/>
</game>
<game name="Mars Sample Program - SOJ (JU) (32X)">
<description>Mars Sample Program - SOJ (JU) (32X)</description>
<rom name="Mars Sample Program - SOJ (JU) (32X).32x" size="65536" crc="a2da35fd" md5="68e63e08aa1b95d4b5b249ef6de7b1b3" sha1="bbc6a66ad9268a3bb6e35e565e770581e7fe8ac2"/>
</game>
<game name="Mars Sample Program - SOJ (JU) (32X) [b1]">
<description>Mars Sample Program - SOJ (JU) (32X) [b1]</description>
<rom name="Mars Sample Program - SOJ (JU) (32X) [b1].32x" size="58584" crc="f3977117" md5="2cd456b784dfb3b214b51086d5954839" sha1="a0702fd189295bdc7d4785570fdfd70f86a07380"/>
</game>
<game name="Mars Sample Program - Texture Test (JU) (32X)">
<description>Mars Sample Program - Texture Test (JU) (32X)</description>
<rom name="Mars Sample Program - Texture Test (JU) (32X).32x" size="24576" crc="9b2ad63f" md5="bd0b324d1edd51103a350e1973179fb7" sha1="885abd1de7b67b115057610d94f24b1b4e294706"/>
</game>
<game name="Mars Sample Program - Texture Test (JU) (32X) [b1]">
<description>Mars Sample Program - Texture Test (JU) (32X) [b1]</description>
<rom name="Mars Sample Program - Texture Test (JU) (32X) [b1].32x" size="17456" crc="5bdbaae1" md5="0eded8598a9d1d83c1abaef65fe7ea54" sha1="1b62bd08dad00cad0c6a29f37afeed4b69bd4d60"/>
</game>
<game name="Metal Head (E) (M2) (32X) [!]">
<description>Metal Head (E) (M2) (32X) [!]</description>
<rom name="Metal Head (E) (M2) (32X) [!].32x" size="3145728" crc="bf9b8376" md5="5ab011dae907f77e68eb764bec3870d8" sha1="2a7767024e23b55fe193d586a96a3ba3c92e7ea8"/>
</game>
<game name="Metal Head (E) (M2) (32X) [b1]">
<description>Metal Head (E) (M2) (32X) [b1]</description>
<rom name="Metal Head (E) (M2) (32X) [b1].32x" size="3145728" crc="2af60167" md5="9add3dfa94adec73fb9a8ebd972da04e" sha1="dffe08b54130ca857be21b523d40dc99a1a4617e"/>
</game>
<game name="Metal Head (JU) (M2) (32X) [!]">
<description>Metal Head (JU) (M2) (32X) [!]</description>
<rom name="Metal Head (JU) (M2) (32X) [!].32x" size="3145728" crc="ef5553ff" md5="03cc5d7549d71ba4e9ddc1beae3805fb" sha1="4e872fbb44ecb2bd730abd8cc8f32f96b10582c0"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 02, 1994) (32X)">
<description>Metal Head (JU) (Prototype - Dec 02, 1994) (32X)</description>
<rom name="Metal Head (JU) (Prototype - Dec 02, 1994) (32X).32x" size="3145728" crc="8b7bc8a4" md5="aae550a44c4f349b25db009ef84fcabd" sha1="194f45a0651a59305e0e727e407801ff09968a62"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 07, 1994) (32X)">
<description>Metal Head (JU) (Prototype - Dec 07, 1994) (32X)</description>
<rom name="Metal Head (JU) (Prototype - Dec 07, 1994) (32X).32x" size="3145728" crc="fa0fc326" md5="b68bf1cdba527506bb6b0aa04a0f3656" sha1="d82b26783f0843faabe526167eabf296c84b0c47"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 07, 1994) (32X) [a1]">
<description>Metal Head (JU) (Prototype - Dec 07, 1994) (32X) [a1]</description>
<rom name="Metal Head (JU) (Prototype - Dec 07, 1994) (32X) [a1].32x" size="3145728" crc="476d29b0" md5="ebb8f4df5e5215a5c8d2e1facbb8396b" sha1="438e172b22ef2b78f5bceb3195da408639ae463c"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 09, 1994) (32X)">
<description>Metal Head (JU) (Prototype - Dec 09, 1994) (32X)</description>
<rom name="Metal Head (JU) (Prototype - Dec 09, 1994) (32X).32x" size="3145728" crc="5369d23f" md5="5e2f45365c0eaedc7b22127343f4ed38" sha1="4d795a7ecab65527e6538ef886c3c3783a1ba936"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 13, 1994) (32X)">
<description>Metal Head (JU) (Prototype - Dec 13, 1994) (32X)</description>
<rom name="Metal Head (JU) (Prototype - Dec 13, 1994) (32X).32x" size="3145728" crc="3302b1a1" md5="176aaa2a84d0cc82e21c35f21dc45e64" sha1="5a38dce482c7fe38a50c6fd8884b019f1acab2a1"/>
</game>
<game name="Metal Head (JU) (Prototype - Dec 20, 1994) (32X)">
<description>Metal Head (JU) (Prototype - Dec 20, 1994) (32X)</description>
<rom name="Metal Head (JU) (Prototype - Dec 20, 1994) (32X).32x" size="3145728" crc="de99c9ce" md5="ac7e0ef84b3f72bb4766ad1af74a5318" sha1="8d7a9f78860342643502e2ba77b445b4dc7e078e"/>
</game>
<game name="Metal Head (Prototype - Nov 14, 1994) (32X)">
<description>Metal Head (Prototype - Nov 14, 1994) (32X)</description>
<rom name="Metal Head (Prototype - Nov 14, 1994) (32X).32x" size="3145728" crc="2ea0ff81" md5="360ec44967bcc22a05dcd215c624897f" sha1="a81db052a095360439a1da6e41ac19b91561ab27"/>
</game>
<game name="Metal Head (Prototype - Nov 18, 1994) (32X)">
<description>Metal Head (Prototype - Nov 18, 1994) (32X)</description>
<rom name="Metal Head (Prototype - Nov 18, 1994) (32X).32x" size="3145728" crc="a0343749" md5="e36b87067183fe1ba286f0957c469b62" sha1="a943ea135d6c685f87957503697cb9f894e12c52"/>
</game>
<game name="Metal Head (Prototype - Nov 21, 1994) (32X)">
<description>Metal Head (Prototype - Nov 21, 1994) (32X)</description>
<rom name="Metal Head (Prototype - Nov 21, 1994) (32X).32x" size="3145728" crc="398bcb98" md5="9c5c8e456c5237705e6b9fd39fef093b" sha1="e7667f4a4342a5a45b0a010f0fe2e61b2bf99fea"/>
</game>
<game name="Mortal Kombat II (E) (32X) [!]">
<description>Mortal Kombat II (E) (32X) [!]</description>
<rom name="Mortal Kombat II (E) (32X) [!].32x" size="4194304" crc="211085ce" md5="9d258d11fe1e4cac2c1aab370c35e57a" sha1="f75698de887d0ef980f73e35fc4615887a9ad58f"/>
</game>
<game name="Mortal Kombat II (JU) (32X) [!]">
<description>Mortal Kombat II (JU) (32X) [!]</description>
<rom name="Mortal Kombat II (JU) (32X) [!].32x" size="4194304" crc="773c0a85" md5="a95c0e7c1d35fd42cd2e3eb7b06cb6d0" sha1="d55964bd935110ac2d9cbd3b085b7e8b71b11df2"/>
</game>
<game name="Motocross Championship (E) (32X) [!]">
<description>Motocross Championship (E) (32X) [!]</description>
<rom name="Motocross Championship (E) (32X) [!].32x" size="2097152" crc="ae3364e9" md5="6bc365808a00b8a640dd86ccb5a0ea24" sha1="af0cb8626825e1b431eba07b8a9b571186745c16"/>
</game>
<game name="Motocross Championship (JU) (32X) [!]">
<description>Motocross Championship (JU) (32X) [!]</description>
<rom name="Motocross Championship (JU) (32X) [!].32x" size="2097152" crc="a21c5761" md5="2c4a934985021624d48725b8d7b039e8" sha1="5f1a107991aaf9eff0b3ce864b2e3151f56abe7b"/>
</game>
<game name="Motocross Championship (Prototype - Oct 12, 1994) (32X)">
<description>Motocross Championship (Prototype - Oct 12, 1994) (32X)</description>
<rom name="Motocross Championship (Prototype - Oct 12, 1994) (32X).32x" size="1690952" crc="0a075812" md5="b741a12b72807648aee002105ce8d282" sha1="102e763c6f4bf65210b307d34d75473fd27d7ae4"/>
</game>
<game name="Motocross Championship (Prototype - Oct 17, 1994) (32X)">
<description>Motocross Championship (Prototype - Oct 17, 1994) (32X)</description>
<rom name="Motocross Championship (Prototype - Oct 17, 1994) (32X).32x" size="1608792" crc="f3163d21" md5="57182c2a4edebec3858942094c5a482b" sha1="670779a85db5673b23825b91693b1015f841fde3"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 01, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 01, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 01, 1994) (32X).32x" size="2045468" crc="46970275" md5="f0c494585f0fad8d77bf9115a6875399" sha1="372a43df94cbed3859bbddad4982fa5301416aed"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 02, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 02, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 02, 1994) (32X).32x" size="2045684" crc="cefef428" md5="9eec4062c7d36f158d265731a8ab749a" sha1="607b9d89e312294ca4e477de238bec2d1bea2a42"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 02, 1994) (32X) [a1]">
<description>Motocross Championship (U) (Prototype - Nov 02, 1994) (32X) [a1]</description>
<rom name="Motocross Championship (U) (Prototype - Nov 02, 1994) (32X) [a1].32x" size="2045684" crc="efe307ff" md5="0fea70d9fe033ff4da6b0c4e31140b26" sha1="3b7cfe05c0a66fc025bbdd3a35ba7828b2fc3c7f"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 03, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 03, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 03, 1994) (32X).32x" size="2045120" crc="c652c802" md5="a8359f240a85576a2904280c2b8c2fbb" sha1="5dc89f7f2cc03689991c9325a1a2d08c6df5dc1b"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 04, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 04, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 04, 1994) (32X).32x" size="2045624" crc="6e12d410" md5="a8b3f927ca15c43a0096357fb149f46a" sha1="ca4db761d26328b99445445b99304e90d7279c3e"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 07, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 07, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 07, 1994) (32X).32x" size="2097152" crc="63db2fb0" md5="868b0df732d4073e0b4070e2b762e134" sha1="181a58cfc8348e18e5d34ed0a75e79acedcc004e"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 08, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 08, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 08, 1994) (32X).32x" size="2097152" crc="5ff9eab9" md5="ffdc287031f59d3ce4a6f4c2b69aff31" sha1="93e13f7d3c4640e9aee7d577e974ab6581c07f91"/>
</game>
<game name="Motocross Championship (U) (Prototype - Nov 11, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Nov 11, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Nov 11, 1994) (32X).32x" size="2097152" crc="37f78d3d" md5="5bdc8f310638695b570f92ffd99c7c59" sha1="45f457930884c7a5ec35361e37b1fd8cd91e4487"/>
</game>
<game name="Motocross Championship (U) (Prototype - Oct 18, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Oct 18, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Oct 18, 1994) (32X).32x" size="1624764" crc="2c2dc4df" md5="ff8fc197fcd71018564473e83db5d40c" sha1="bafabf4eb40fb1197dd543fa6ae69df1f87e9d02"/>
</game>
<game name="Motocross Championship (U) (Prototype - Oct 19, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Oct 19, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Oct 19, 1994) (32X).32x" size="1644464" crc="385ed8c7" md5="b52dc9a0fd6c3bf46a66dc608965fdaa" sha1="3862fe8d98a512e3332748b8f73fcdf84faba489"/>
</game>
<game name="Motocross Championship (U) (Prototype - Oct 20, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Oct 20, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Oct 20, 1994) (32X).32x" size="1661296" crc="ac6cf708" md5="400cf0229ebc8d441a7b03733c55cd55" sha1="95edb6101eee31588e7b0ce0b67d73206070eb81"/>
</game>
<game name="Motocross Championship (U) (Prototype - Oct 24, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Oct 24, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Oct 24, 1994) (32X).32x" size="1736076" crc="20c49183" md5="ff2dfbe40f8863c123e9d82c0edf6e6e" sha1="d641e7b2fd0a44ad603cdc324921a25f1b897288"/>
</game>
<game name="Motocross Championship (U) (Prototype - Oct 28, 1994) (32X)">
<description>Motocross Championship (U) (Prototype - Oct 28, 1994) (32X)</description>
<rom name="Motocross Championship (U) (Prototype - Oct 28, 1994) (32X).32x" size="1843436" crc="59107472" md5="0e3f3a483d99c8d1cc03a3402afa13c9" sha1="174158dd18a4d243d3c943c9f8cf080acd91cc3b"/>
</game>
<game name="NBA Jam Tournament Edition (W) (32X) [!]">
<description>NBA Jam Tournament Edition (W) (32X) [!]</description>
<rom name="NBA Jam Tournament Edition (W) (32X) [!].32x" size="4194304" crc="6b7994aa" md5="966a5e00dd7bcdc70b05c5a0c0e8f7aa" sha1="c8af3e74c49514669ba6652ec0c81bccf77873b6"/>
</game>
<game name="NFL Quarterback Club (W) (32X) [!]">
<description>NFL Quarterback Club (W) (32X) [!]</description>
<rom name="NFL Quarterback Club (W) (32X) [!].32x" size="3145728" crc="0bc7018d" md5="e273c10114351cdafeba1abccca8909d" sha1="a0dc24f2f3a7fc5bfd12791cf25af7f7888843cf"/>
</game>
<game name="Optimized Rotating XOR Palette Demo by DevSter (PD) (32X)">
<description>Optimized Rotating XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Optimized Rotating XOR Palette Demo by DevSter (PD) (32X).32x" size="4664" crc="941351aa" md5="f5954481e3ccc894e2bb1cfc258eee2d" sha1="f42d0f5126f17641e59fcb4c18f2cc8d4488a27c"/>
</game>
<game name="Pitfall (U) (32X) [!]">
<description>Pitfall (U) (32X) [!]</description>
<rom name="Pitfall (U) (32X) [!].32x" size="3145728" crc="f9126f15" md5="e091e542f7ea29ef3daf6022b36e219b" sha1="ee864d1677c6d976d0846eb5f8d8edb839acfb76"/>
</game>
<game name="Primal Rage (W) (32X) [!]">
<description>Primal Rage (W) (32X) [!]</description>
<rom name="Primal Rage (W) (32X) [!].32x" size="4194304" crc="e78a4d28" md5="e1efc5804d3360e7b19f7542219bf964" sha1="5084dcca51d76173c383ab7d04cbc661673545f7"/>
</game>
<game name="R.B.I. Baseball 95 (U) (32X) [!]">
<description>R.B.I. Baseball 95 (U) (32X) [!]</description>
<rom name="R.B.I. Baseball 95 (U) (32X) [!].32x" size="2097152" crc="ff795fdc" md5="5f955b5feab07c072fc345f1fee52a60" sha1="4f90433a4403fd74cafeea49272689046de4ae43"/>
</game>
<game name="Rotating No Background Fill XOR Palette Demo by DevSter (PD) (32X)">
<description>Rotating No Background Fill XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Rotating No Background Fill XOR Palette Demo by DevSter (PD) (32X).32x" size="4600" crc="7fce8c27" md5="40d1ac4aec5d036bc635724503a6aa39" sha1="a6a0a26f7e0244265948b3360f0a8c37d56846bc"/>
</game>
<game name="Rotating Pixel Skipping XOR Palette Demo by DevSter (PD) (32X)">
<description>Rotating Pixel Skipping XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Rotating Pixel Skipping XOR Palette Demo by DevSter (PD) (32X).32x" size="4648" crc="1b394d4f" md5="fbfd4e7544095684573e7968c22fc526" sha1="11b9912776e5331c9ffa93d45ca8f91586173b0b"/>
</game>
<game name="Rotating XOR Palette Demo by DevSter (PD) (32X)">
<description>Rotating XOR Palette Demo by DevSter (PD) (32X)</description>
<rom name="Rotating XOR Palette Demo by DevSter (PD) (32X).32x" size="5688" crc="98c25033" md5="9d5bac98307eccc776bac4831f60c524" sha1="8d9ab3084bd29e60b8cdf4b9f1cb755eb4c88d29"/>
</game>
<game name="Sangokushi IV (J) (32X) [!]">
<description>Sangokushi IV (J) (32X) [!]</description>
<rom name="Sangokushi IV (J) (32X) [!].32x" size="4194304" crc="e4de7625" md5="f4bb8844d77442dbb5bee78d0246b456" sha1="74a3ba27c55cff12409bf6c9324ece6247abbad1"/>
</game>
<game name="Shadow Squadron (Prototype - Feb 06, 1995) (32X)">
<description>Shadow Squadron (Prototype - Feb 06, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Feb 06, 1995) (32X).32x" size="2097152" crc="24057310" md5="b7cac9f37b7873127afe7a91dead2bde" sha1="6ff8cd79cfa073697dd13cd1c4dc767b4e0c558e"/>
</game>
<game name="Shadow Squadron (Prototype - Feb 13, 1995) (32X)">
<description>Shadow Squadron (Prototype - Feb 13, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Feb 13, 1995) (32X).32x" size="2097152" crc="ca0de10e" md5="775d395064002f0d1120f3e67e936f2b" sha1="71061c0a02b4cc3c3e39d872bf86b190421cb594"/>
</game>
<game name="Shadow Squadron (Prototype - Feb 22, 1995) (32X)">
<description>Shadow Squadron (Prototype - Feb 22, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Feb 22, 1995) (32X).32x" size="2097152" crc="48ef9ee9" md5="1f363c972686056a475813f61b8600bf" sha1="9d72335cb0468a9699f7e92927043387091bc0c9"/>
</game>
<game name="Shadow Squadron (Prototype - Mar 02, 1995) (32X)">
<description>Shadow Squadron (Prototype - Mar 02, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Mar 02, 1995) (32X).32x" size="2097152" crc="25bdde61" md5="f5e23c9c89673f3f2294eef5d2e5ca67" sha1="5a83e4ebffe8ac7108b45697be7468bd7f111642"/>
</game>
<game name="Shadow Squadron (Prototype - Mar 06, 1995) (32X)">
<description>Shadow Squadron (Prototype - Mar 06, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Mar 06, 1995) (32X).32x" size="2097152" crc="7eec3665" md5="9b2f80f1c52b78885cebd8140e99166e" sha1="31a0a0a34719b1259de98458c24cf5eb78f7109c"/>
</game>
<game name="Shadow Squadron (Prototype - Mar 13, 1995) (32X)">
<description>Shadow Squadron (Prototype - Mar 13, 1995) (32X)</description>
<rom name="Shadow Squadron (Prototype - Mar 13, 1995) (32X).32x" size="2097152" crc="58962105" md5="df79824d61c1f4f7a258450528a1ff3c" sha1="9bae40d4d07a096545b11f6b0434db778c238af5"/>
</game>
<game name="Shadow Squadron (Prototype - Mar 13, 1995) (32X) [a1]">
<description>Shadow Squadron (Prototype - Mar 13, 1995) (32X) [a1]</description>
<rom name="Shadow Squadron (Prototype - Mar 13, 1995) (32X) [a1].32x" size="2097152" crc="fd7fedb2" md5="c304de27cdb1cf7dbf660c37f666ac13" sha1="9875b357fd2d651892054d233c608b6f3bbb40e7"/>
</game>
<game name="Shadow Squadron (UE) (32X) [!]">
<description>Shadow Squadron (UE) (32X) [!]</description>
<rom name="Shadow Squadron (UE) (32X) [!].32x" size="2097152" crc="60c49e4d" md5="1415a8675adf3e8647b3df673b50056d" sha1="561c8c63dbcabc0b1b6f31673ca75a0bde7abc72"/>
</game>
<game name="Sonic 32x Plus by MarkeyJester (PD) (32X)">
<description>Sonic 32x Plus by MarkeyJester (PD) (32X)</description>
<rom name="Sonic 32x Plus by MarkeyJester (PD) (32X).32x" size="546246" crc="59325ffd" md5="968a10801c3024a64272f13ca9cb6906" sha1="71620a454e9e6bb3bee8a20008dbca079ba84d98"/>
</game>
<game name="Sonic in Chaotix (Knuckles' Chaotix Hack) (32X)">
<description>Sonic in Chaotix (Knuckles' Chaotix Hack) (32X)</description>
<rom name="Sonic in Chaotix (Knuckles' Chaotix Hack) (32X).32x" size="3335370" crc="6b39e714" md5="08a0e8a2fed8a87d32d0f9965dbf57b6" sha1="169eb7238d0cca48b4abc5a8ea5e5d61fdb76468"/>
</game>
<game name="Sonic in Chaotix - Revision 2 (Knuckles' Chaotix Hack) (32X)">
<description>Sonic in Chaotix - Revision 2 (Knuckles' Chaotix Hack) (32X)</description>
<rom name="Sonic in Chaotix - Revision 2 (Knuckles' Chaotix Hack) (32X).32x" size="3519728" crc="6e99c291" md5="8ef36080f859a7a73d7ac4de27bcc448" sha1="39651f96784feaea37657fd03687618a91707542"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (Jan 11 2008) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (Jan 11 2008) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (Jan 11 2008) (PD) (32X).32x" size="525958" crc="b5a34562" md5="fcd9af0bc04d443b1236d0b800ba94f0" sha1="39850c3876541e06d87a86aecca5e76e369d7e2c"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (Nov 17 2007) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (Nov 17 2007) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (Nov 17 2007) (PD) (32X).32x" size="425194" crc="01198528" md5="5fe57f2fb4fe3a2ee4f965ee85d38bf6" sha1="0474da422fe509a414229efd67cdfeaf54e9e933"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (Nov 18 2007) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (Nov 18 2007) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (Nov 18 2007) (PD) (32X).32x" size="464518" crc="8024e082" md5="c8a9b73b4ed5de9eb2d9f6426a4f9036" sha1="c65401dcb403fb475ab627435bc2d433853ca37f"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (RC1) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (RC1) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (RC1) (PD) (32X).32x" size="525958" crc="93bc18ff" md5="f58f9dea8388ac4b5ce6a2be64798677" sha1="4b15babd87ac2313cab8eb371e7142daf61bf097"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (RC2) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (RC2) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (RC2) (PD) (32X).32x" size="525958" crc="f79a7182" md5="001191656819e2ed3b6115979607fab7" sha1="9b1952a6833ef8a2ed04ddc2beff707c2edf74b2"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (RC3) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (RC3) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (RC3) (PD) (32X).32x" size="533958" crc="97dbb427" md5="7619bea5864e4745e43f681428e4f7fe" sha1="3c9475909c5363f9e71f11c87c31a866526565eb"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (RC3) (PD) (32X) [a1]">
<description>Sonic The Hedgehog 32X by drx (RC3) (PD) (32X) [a1]</description>
<rom name="Sonic The Hedgehog 32X by drx (RC3) (PD) (32X) [a1].32x" size="533958" crc="c8e826d2" md5="e1e0a7e518fb26eddb7504ab56d6db31" sha1="81a3c5fdb8039ae4a6c8297cde93935d7b8978a2"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (V1.0enhanced) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (V1.0enhanced) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (V1.0enhanced) (PD) (32X).32x" size="546246" crc="3193fb54" md5="e113e76b5500242219404baa66f73383" sha1="c9b3a2814667979fb46ff7c4fdb94195c8b9fbed"/>
</game>
<game name="Sonic The Hedgehog 32X by drx (V1.0pureport) (PD) (32X)">
<description>Sonic The Hedgehog 32X by drx (V1.0pureport) (PD) (32X)</description>
<rom name="Sonic The Hedgehog 32X by drx (V1.0pureport) (PD) (32X).32x" size="533958" crc="2221c701" md5="8c344084c0fee5be7d8c17fbd6b47b51" sha1="6bfe157720429063f3eb0d4dd9d86d9e087ddde3"/>
</game>
<game name="Soulstar X (Prototype) (32X)">
<description>Soulstar X (Prototype) (32X)</description>
<rom name="Soulstar X (Prototype) (32X).32x" size="1048576" crc="797485d8" md5="db0b980716ad26d6338d6b4e9d98f80d" sha1="b1bfb147530be00b0dedc6207968fc83039c85d3"/>
</game>
<game name="Soulstar X (Prototype) (32X) [o1]">
<description>Soulstar X (Prototype) (32X) [o1]</description>
<rom name="Soulstar X (Prototype) (32X) [o1].32x" size="1572864" crc="c32d34aa" md5="e7d3cb380b054cd00df2ca762871ff2f" sha1="104f3605b3916686b5c140455476bdc78c742749"/>
</game>
<game name="Soulstar X (Prototype) (32X) [o2]">
<description>Soulstar X (Prototype) (32X) [o2]</description>
<rom name="Soulstar X (Prototype) (32X) [o2].32x" size="2097152" crc="5ea52f22" md5="4e9d4bd4122fbe72d6f6918e55a58a35" sha1="4726988f28c5e49971e1f38e335fecc3f9dd6c1f"/>
</game>
<game name="Soulstar X (Prototype) (32X) [o3]">
<description>Soulstar X (Prototype) (32X) [o3]</description>
<rom name="Soulstar X (Prototype) (32X) [o3].32x" size="3145728" crc="9caa28eb" md5="d11bf6ed189baebe9dab0697611d85fb" sha1="c7a566c9311d626564861cf1301087d9a7c48997"/>
</game>
<game name="Soulstar X (Prototype) (32X) [o4]">
<description>Soulstar X (Prototype) (32X) [o4]</description>
<rom name="Soulstar X (Prototype) (32X) [o4].32x" size="4194304" crc="88da5a5c" md5="df10fde09e5f3eafca391137add8ed37" sha1="26e07a742f680e437e0d50c54a79f5eeb4ef5f80"/>
</game>
<game name="Soulstar X (Prototype) (32X) [o5]">
<description>Soulstar X (Prototype) (32X) [o5]</description>
<rom name="Soulstar X (Prototype) (32X) [o5].32x" size="5242880" crc="6472bae4" md5="84a09aec8a520b274a7e577ff8a29317" sha1="9583545e15266d3f90a5cb57961908206e4543f7"/>
</game>
<game name="Space Harrier (E) (32X) [!]">
<description>Space Harrier (E) (32X) [!]</description>
<rom name="Space Harrier (E) (32X) [!].32x" size="2097152" crc="5cac3587" md5="4619e328e1719bee165941d891c08d81" sha1="8b0495257fa5392ef9ddcc9c3ba1860ae58f4f3d"/>
</game>
<game name="Space Harrier (JU) (32X) [!]">
<description>Space Harrier (JU) (32X) [!]</description>
<rom name="Space Harrier (JU) (32X) [!].32x" size="2097152" crc="86e7f989" md5="6180e973f678bfc96705e8be4e0783f1" sha1="f32a52a7082761982024e40291dbd962a835b231"/>
</game>
<game name="Space Harrier (JU) (Prototype - Sep 20, 1994) (32X)">
<description>Space Harrier (JU) (Prototype - Sep 20, 1994) (32X)</description>
<rom name="Space Harrier (JU) (Prototype - Sep 20, 1994) (32X).32x" size="2097152" crc="2c65fa40" md5="1c1b4a07286b6df9eead9a0305672198" sha1="05d24d6f6c645866b8b1fde96746e27d0a19bbc6"/>
</game>
<game name="Spear of Destiny Shareware 32X by Chilly Willy (beta1) (32X)">
<description>Spear of Destiny Shareware 32X by Chilly Willy (beta1) (32X)</description>
<rom name="Spear of Destiny Shareware 32X by Chilly Willy (beta1) (32X).32x" size="2076220" crc="945168ff" md5="54d0fcc08ffd1fceab04690ab8dcf6dc" sha1="19aacbd4931d0625c9ac521cf97e8c5e274d5ec3"/>
</game>
<game name="Spear of Destiny Shareware 32X by Chilly Willy (beta2) (32X)">
<description>Spear of Destiny Shareware 32X by Chilly Willy (beta2) (32X)</description>
<rom name="Spear of Destiny Shareware 32X by Chilly Willy (beta2) (32X).32x" size="2076060" crc="22074b2a" md5="d8b44862ce9544b7b2e3ed75b98163a8" sha1="2bf3873382419e3f8e611f9bf064a40bce925153"/>
</game>
<game name="Spear of Destiny Shareware 32X by Chilly Willy (beta3) (32X)">
<description>Spear of Destiny Shareware 32X by Chilly Willy (beta3) (32X)</description>
<rom name="Spear of Destiny Shareware 32X by Chilly Willy (beta3) (32X).32x" size="2395028" crc="45c8254b" md5="f835f016100c976a01448cdd98f53578" sha1="7d633e49820780e352194b7046fa824af5ed066e"/>
</game>
<game name="Spear of Destiny Shareware 32X by Chilly Willy (beta4) (32X)">
<description>Spear of Destiny Shareware 32X by Chilly Willy (beta4) (32X)</description>
<rom name="Spear of Destiny Shareware 32X by Chilly Willy (beta4) (32X).32x" size="2401688" crc="573da3cb" md5="03549d99d30ba8853a0269a87c36c4e3" sha1="39df81d1295ac29fe5566c2e92ece8927d47121e"/>
</game>
<game name="Spear of Destiny Shareware 32X by Chilly Willy (beta5) (32X)">
<description>Spear of Destiny Shareware 32X by Chilly Willy (beta5) (32X)</description>
<rom name="Spear of Destiny Shareware 32X by Chilly Willy (beta5) (32X).32x" size="2403672" crc="531dc46c" md5="de7a121aec35a92de775755204e665a8" sha1="bf525496f9102457072e8cb34108494be2980c07"/>
</game>
<game name="Spider-Man - Web of Fire (W) (32X) [!]">
<description>Spider-Man - Web of Fire (W) (32X) [!]</description>
<rom name="Spider-Man - Web of Fire (W) (32X) [!].32x" size="3145728" crc="29dce257" md5="a60b0838a776966e17a8f10b94baddef" sha1="7cc2ea1e10f110338ad880bd3e7ff3bce72e7e9e"/>
</game>
<game name="Star Trek - Starfleet Academy Bridge Simulator (U) (32X) [!]">
<description>Star Trek - Starfleet Academy Bridge Simulator (U) (32X) [!]</description>
<rom name="Star Trek - Starfleet Academy Bridge Simulator (U) (32X) [!].32x" size="2097152" crc="dd9708b9" md5="78086fba202066ff4f968d35e7c21c11" sha1="e5248328b64a1ec4f1079c88ee53ef8d48e99e58"/>
</game>
<game name="Star Wars Arcade (E) (32X) [!]">
<description>Star Wars Arcade (E) (32X) [!]</description>
<rom name="Star Wars Arcade (E) (32X) [!].32x" size="2621440" crc="82e82660" md5="bfaa6fd031490c26e25f3d59d9c37497" sha1="a877cbf704fe7480966fd88a3c39efb6a39392ac"/>
</game>
<game name="Star Wars Arcade (E) (Prototype - Oct 06, 1994) (32X)">
<description>Star Wars Arcade (E) (Prototype - Oct 06, 1994) (32X)</description>
<rom name="Star Wars Arcade (E) (Prototype - Oct 06, 1994) (32X).32x" size="2621440" crc="c00af920" md5="6e75534d5f3d7bf42f15cdf0faf3e0da" sha1="1ade331c81eade613748126882057841dc02a420"/>
</game>
<game name="Star Wars Arcade (E) (Prototype - Oct 07, 1994) (32X)">
<description>Star Wars Arcade (E) (Prototype - Oct 07, 1994) (32X)</description>
<rom name="Star Wars Arcade (E) (Prototype - Oct 07, 1994) (32X).32x" size="2621440" crc="57afc1ac" md5="777e1ae822f9ed033d27aa1e409d9623" sha1="c75853fb88f13a01ddca05b2202ed150770c1284"/>
</game>
<game name="Star Wars Arcade (E) (Prototype - Sep 23, 1994) (32X)">
<description>Star Wars Arcade (E) (Prototype - Sep 23, 1994) (32X)</description>
<rom name="Star Wars Arcade (E) (Prototype - Sep 23, 1994) (32X).32x" size="2517257" crc="8e7bfc7c" md5="1cf3240ce3d994719ee9fc06e827262a" sha1="75ce473164f678f9f394d719b35850e4899a8cd1"/>
</game>
<game name="Star Wars Arcade (E) (Prototype - Sep 29, 1994) (32X)">
<description>Star Wars Arcade (E) (Prototype - Sep 29, 1994) (32X)</description>
<rom name="Star Wars Arcade (E) (Prototype - Sep 29, 1994) (32X).32x" size="2517297" crc="7682fe72" md5="1b6fc1ef31464acd728783e746286f1f" sha1="2f93b915add1357dfcf42135d4ce85e6bb668cf8"/>
</game>
<game name="Star Wars Arcade (J) (32X) [!]">
<description>Star Wars Arcade (J) (32X) [!]</description>
<rom name="Star Wars Arcade (J) (32X) [!].32x" size="2621440" crc="f4e9b846" md5="f6e8648a6ced9017c9f0bf0ca544f17f" sha1="282767a07e453e868de52b46bf11def3d071bda6"/>
</game>
<game name="Star Wars Arcade (J) (Prototype - Oct 03, 1994) (32X)">
<description>Star Wars Arcade (J) (Prototype - Oct 03, 1994) (32X)</description>
<rom name="Star Wars Arcade (J) (Prototype - Oct 03, 1994) (32X).32x" size="3145728" crc="a653a183" md5="7837ea435585cf60c1d7ea2d99248e19" sha1="38fde66801083a60c142c3f3e7bae2aa81518acf"/>
</game>
<game name="Star Wars Arcade (J) (Prototype - Oct 05, 1994) (32X)">
<description>Star Wars Arcade (J) (Prototype - Oct 05, 1994) (32X)</description>
<rom name="Star Wars Arcade (J) (Prototype - Oct 05, 1994) (32X).32x" size="2516513" crc="9861e21f" md5="ec824311a5f31007a5bdd98b5209b138" sha1="24e599b251d643b74a923323a83e43a26d21fafc"/>
</game>
<game name="Star Wars Arcade (J) (Prototype - Sep 30, 1994) (32X)">
<description>Star Wars Arcade (J) (Prototype - Sep 30, 1994) (32X)</description>
<rom name="Star Wars Arcade (J) (Prototype - Sep 30, 1994) (32X).32x" size="2516793" crc="6074f26c" md5="320fb649a04da1e5decde198bd799f97" sha1="f1786e62b7707b8a01b66720f2722d555ec9d4db"/>
</game>
<game name="Star Wars Arcade (Prototype - Aug 30, 1994) (32X)">
<description>Star Wars Arcade (Prototype - Aug 30, 1994) (32X)</description>
<rom name="Star Wars Arcade (Prototype - Aug 30, 1994) (32X).32x" size="2097152" crc="10d4a078" md5="e0603f3785e9ce60bc47c7a4419b6606" sha1="8e90bb4b3bde14b819de85944080d4a3caf11c1b"/>
</game>
<game name="Star Wars Arcade (Prototype - Sep 01, 1994) (32X)">
<description>Star Wars Arcade (Prototype - Sep 01, 1994) (32X)</description>
<rom name="Star Wars Arcade (Prototype - Sep 01, 1994) (32X).32x" size="2097152" crc="b0bb29eb" md5="67c748fa61e808312f32cc727d0e44cb" sha1="37da621707fec11bb08d59cec1fa2c554365afec"/>
</game>
<game name="Star Wars Arcade (Prototype - Sep 07, 1994) (32X)">
<description>Star Wars Arcade (Prototype - Sep 07, 1994) (32X)</description>
<rom name="Star Wars Arcade (Prototype - Sep 07, 1994) (32X).32x" size="2097152" crc="c6a8582b" md5="95dee4ef705455008ec9570b8fabfcd1" sha1="7e84f2eafef33e211500a551b3d430155368b66e"/>
</game>
<game name="Star Wars Arcade (Prototype - Sep 09, 1994) (32X)">
<description>Star Wars Arcade (Prototype - Sep 09, 1994) (32X)</description>
<rom name="Star Wars Arcade (Prototype - Sep 09, 1994) (32X).32x" size="2097152" crc="5bdd86d3" md5="76ca792a475cccff4e76fe7e0f248886" sha1="761aa97ab8f7524c49a141804246209fd6c970f2"/>
</game>
<game name="Star Wars Arcade (U) (32X) [!]">
<description>Star Wars Arcade (U) (32X) [!]</description>
<rom name="Star Wars Arcade (U) (32X) [!].32x" size="2621440" crc="2f16b44a" md5="ae3a42c6297ef25c6018a209fda0194e" sha1="f4ffaaf1d8330ea971643021be3f3203e1ea065d"/>
</game>
<game name="Star Wars Arcade (U) (32X) [b1]">
<description>Star Wars Arcade (U) (32X) [b1]</description>
<rom name="Star Wars Arcade (U) (32X) [b1].32x" size="1048576" crc="067e780b" md5="1e233836cacf3ebef42cf0fc78397fb1" sha1="5e55b14c7536b2821eed48d1565e70c6ef15e80e"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 12, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 12, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 12, 1994) (32X).32x" size="2097152" crc="118a011c" md5="267df04136c31ca16e1f3870945c446e" sha1="b328170014bfc4770479eacc017f76bcaee61389"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 13, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 13, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 13, 1994) (32X).32x" size="2467793" crc="dc5628ba" md5="b0eadfa1cb6b9f0d44e45433baab8857" sha1="d4c262ba8118f2f2af720a45e461d4254d5163b4"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 14, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 14, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 14, 1994) (32X).32x" size="2504513" crc="efc980fe" md5="03957d55ddeb3faa8758eded5e2ceef9" sha1="2ba71086a01e14051dce2a5c24bba49a991cb2e5"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 15, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 15, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 15, 1994) (32X).32x" size="3145728" crc="34c6a769" md5="01e5b6f81beb2f5b0ab4e9d43fb1f3a8" sha1="9a492a52be224ee9ff41d4ea7df3cee67f028235"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 16, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 16, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 16, 1994) (32X).32x" size="3145728" crc="150a0dfd" md5="0a9683a85087d3953ac782046741c864" sha1="492816545c7309d2b7594b5d4f8d508f4a13e06a"/>
</game>
<game name="Star Wars Arcade (U) (Prototype - Sep 18, 1994) (32X)">
<description>Star Wars Arcade (U) (Prototype - Sep 18, 1994) (32X)</description>
<rom name="Star Wars Arcade (U) (Prototype - Sep 18, 1994) (32X).32x" size="3145728" crc="02933d44" md5="c834b1d6d0a9e8ac2cc7a06310700d7e" sha1="5d924628b507464ec1b1ca8755cb509cf68b02af"/>
</game>
<game name="Stellar Assault 32X (J) (32X)">
<description>Stellar Assault 32X (J) (32X)</description>
<rom name="Stellar Assault 32X (J) (32X).32x" size="2097152" crc="fce4c8c7" md5="5f6c601dcecca937b6f2c2161e4566fe" sha1="ff4f1a2dded85f3ad43bf28a85c46ad8595d5614"/>
</game>
<game name="Super-X Raycasting Engine Test 1 by Fonzie (PD) (32X)">
<description>Super-X Raycasting Engine Test 1 by Fonzie (PD) (32X)</description>
<rom name="Super-X Raycasting Engine Test 1 by Fonzie (PD) (32X).32x" size="17128" crc="3316c17b" md5="e93c5656eb04c97a9cd37b6f56c19323" sha1="cb5d98ec0998c718f0778cc131ebbbbfc72edca7"/>
</game>
<game name="Super-X Raycasting Engine Test 2 by Fonzie (PD) (32X)">
<description>Super-X Raycasting Engine Test 2 by Fonzie (PD) (32X)</description>
<rom name="Super-X Raycasting Engine Test 2 by Fonzie (PD) (32X).32x" size="23208" crc="19f8fa8f" md5="024773eab6b3aacd7d4528f18c110d60" sha1="dec8238b0d5c95bb4c742d5a57ac23d42dd25047"/>
</game>
<game name="Switching CRAM Palettes by DevSter (PD) (32X)">
<description>Switching CRAM Palettes by DevSter (PD) (32X)</description>
<rom name="Switching CRAM Palettes by DevSter (PD) (32X).32x" size="2252" crc="007cd5f2" md5="9349b07af5cf6c7dd39ea0e43ae6a29d" sha1="b28cfbd400e70acf0bee3ba9ee1793f195cfbdd6"/>
</game>
<game name="T-MEK (W) (32X) [!]">
<description>T-MEK (W) (32X) [!]</description>
<rom name="T-MEK (W) (32X) [!].32x" size="3145728" crc="66d2c48f" md5="1b06c84caf09206a8d9f0bb3eaaba512" sha1="173c8425921d83db3e8d181158e7599364f4c0f6"/>
</game>
<game name="Tempo (JU) (32X) [!]">
<description>Tempo (JU) (32X) [!]</description>
<rom name="Tempo (JU) (32X) [!].32x" size="3145728" crc="14e5c575" md5="30989c83d4e4ea3c35a1f3e2620b8465" sha1="6673ba83570b4f2c1b4a22415a56594c3cc6c6a9"/>
</game>
<game name="Tempo (JU) (Prototype - Feb 04, 1995) (32X)">
<description>Tempo (JU) (Prototype - Feb 04, 1995) (32X)</description>
<rom name="Tempo (JU) (Prototype - Feb 04, 1995) (32X).32x" size="3145728" crc="6e2bcc9f" md5="f97cd1d66bcc7378569cc92f2b073025" sha1="73d31074f08d9dd8061bf0996829dbad46b3d784"/>
</game>
<game name="Tempo (JU) (Prototype - Feb 06, 1995) (32X)">
<description>Tempo (JU) (Prototype - Feb 06, 1995) (32X)</description>
<rom name="Tempo (JU) (Prototype - Feb 06, 1995) (32X).32x" size="3145728" crc="e2502fe6" md5="ac6ee8d2c258e00a6d752122f701fab0" sha1="2e9724e9b7f2d351ad1ddfb34c43014aff4b07dd"/>
</game>
<game name="Tempo (JU) (Prototype - Feb 06, 1995) (32X) [a1]">
<description>Tempo (JU) (Prototype - Feb 06, 1995) (32X) [a1]</description>
<rom name="Tempo (JU) (Prototype - Feb 06, 1995) (32X) [a1].32x" size="3145728" crc="6d0775f3" md5="07d06786fdc642449deff5d7880b2ef5" sha1="7c29092fb82711851f1c681fa717cd59b98f531a"/>
</game>
<game name="Tempo (JU) (Prototype - Feb 07, 1995) (32X)">
<description>Tempo (JU) (Prototype - Feb 07, 1995) (32X)</description>
<rom name="Tempo (JU) (Prototype - Feb 07, 1995) (32X).32x" size="3145728" crc="a2ebc91c" md5="2ae43c978349214492d2172758ba21b3" sha1="91bca4f05b97b51b96fb1ddcb9b54165f0b621ae"/>
</game>
<game name="Tempo (JU) (Prototype - Jan 24, 1995) (32X)">
<description>Tempo (JU) (Prototype - Jan 24, 1995) (32X)</description>
<rom name="Tempo (JU) (Prototype - Jan 24, 1995) (32X).32x" size="3145728" crc="7a02c17b" md5="2e989b696e1447358829ebcc37ac1476" sha1="1b8225ae3e688ebdde482015a389a6cebbdbfd5e"/>
</game>
<game name="Tempo (JU) (Prototype - Jan 26, 1995) (32X)">
<description>Tempo (JU) (Prototype - Jan 26, 1995) (32X)</description>
<rom name="Tempo (JU) (Prototype - Jan 26, 1995) (32X).32x" size="3145728" crc="86637ae4" md5="a45f3d6db91df1bc3950173285a726f5" sha1="4ec1dd3abf3e5aa0d1a902f20cfa0d16a224b5bf"/>
</game>
<game name="Tempo (Prototype - Dec 29, 1994) (32X)">
<description>Tempo (Prototype - Dec 29, 1994) (32X)</description>
<rom name="Tempo (Prototype - Dec 29, 1994) (32X).32x" size="3145728" crc="7bfe49a3" md5="cc6570e604c22f51dc24347663da1732" sha1="017ee73e0f582893ef3deebfbe74af4babd532a5"/>
</game>
<game name="Tempo (Prototype - Jan 21, 1995) (32X)">
<description>Tempo (Prototype - Jan 21, 1995) (32X)</description>
<rom name="Tempo (Prototype - Jan 21, 1995) (32X).32x" size="3145728" crc="48cc1645" md5="62790d7ffe26582288b0b0ae40bbd60e" sha1="55fd5d5410a820867526d5f7f909bf39d25607c2"/>
</game>
<game name="Toughman Contest (W) (32X) [!]">
<description>Toughman Contest (W) (32X) [!]</description>
<rom name="Toughman Contest (W) (32X) [!].32x" size="4194304" crc="14eac7a6" md5="386d99d132ce5699ade81b4473cef5b4" sha1="7588b0b8f4e93d5fdc920d3ab7e464154e423da9"/>