-
Notifications
You must be signed in to change notification settings - Fork 838
Expand file tree
/
Copy pathAtari - Lynx.dat
More file actions
3236 lines (3235 loc) · 183 KB
/
Atari - Lynx.dat
File metadata and controls
3236 lines (3235 loc) · 183 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
clrmamepro (
name "Atari - Lynx"
description "Atari - Lynx"
version "2024.09.27"
homepage "http://github.com/robloach/libretro-dats"
)
game (
name "2048 (World) (Aftermarket) (Unl)"
description "2048 (World) (Aftermarket) (Unl)"
rom ( name "2048 (World) (Aftermarket) (Unl).bll" size 39209 crc 2F5C3E31 md5 6D9A6D82DFEA445B09065EBD33B9C679 sha1 A40ECDC1E2ED9585BA7D582B960AC3C7F96CDF08 )
)
game (
name "2048 (World) (Aftermarket) (Unl)"
description "2048 (World) (Aftermarket) (Unl)"
rom ( name "2048 (World) (Aftermarket) (Unl).lnx" size 262208 crc E55A9ED0 md5 7E746002F02BBBF7EDDE1F20B98F1F90 sha1 A6BEA51787BF14F7399CB5E1D2E3389D28FDC292 )
)
game (
name "2048 (World) (Aftermarket) (Unl)"
description "2048 (World) (Aftermarket) (Unl)"
rom ( name "2048 (World) (Aftermarket) (Unl).lyx" size 262144 crc A73938F5 md5 5515E0491719FF09553B6D7D930569BC sha1 D379B6114FEFA60E0A01E0C4DF2CC9BA1287BF03 )
)
game (
name "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl).lnx" size 123916 crc B651D8CA md5 B3AE4A8C3E96F3489A734087859B1C84 sha1 88650B2EEC3AE8820966FF713CD586CB7C426F87 )
)
game (
name "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.0) (Atari Lynx 30th Birthday) (Aftermarket) (Unl).lyx" size 262144 crc 04444023 md5 5B10F149B25D093B767D4BED895BA298 sha1 57F313AD2378B3147A116B8DE4A9C461AF8F94BB )
)
game (
name "4Ttude (World) (v1.1) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.1) (Aftermarket) (Unl).lnx" size 136886 crc E2ED27FD md5 E7F14DFC74BAC52F73668D85886691E0 sha1 6870B1696D103E1436A034525C549078DF72EFEF )
)
game (
name "4Ttude (World) (v1.1) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc 11F62511 md5 4933C5480AD05EA6EEA4D3FB0E1B6AD7 sha1 2815677AB56550C5587AEB14E058DEA402C98ED5 )
)
game (
name "4Ttude (World) (v1.2) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.2) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.2) (Aftermarket) (Unl).lnx" size 131404 crc 2157CD39 md5 35F0CA98F7D0EF123AC74CE9E445B328 sha1 73B9A7429225716EE4C3B407F961295A26292F4B )
)
game (
name "4Ttude (World) (v1.2) (Aftermarket) (Unl)"
description "4Ttude (World) (v1.2) (Aftermarket) (Unl)"
rom ( name "4Ttude (World) (v1.2) (Aftermarket) (Unl).lyx" size 262144 crc 3941A51D md5 7E649AC65D0AAC1595D3B5A435B5E599 sha1 D6E40F128149B65248F1142A2C2FF930B28ABC43 )
)
game (
name "A.P.B. (USA, Europe)"
description "A.P.B. (USA, Europe)"
rom ( name "A.P.B. (USA, Europe).lyx" size 262144 crc F6FB48FB md5 B425941149874C6371C40E85CC5B6241 sha1 C2BF00DE769895CBED03C056EB9C8FA1A7EA59EF )
)
game (
name "Alien (World) (v1.02) (Aftermarket) (Unl)"
description "Alien (World) (v1.02) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.02) (Aftermarket) (Unl).lnx" size 135610 crc 1F324A19 md5 9B51DB0B7532E23945C5ADCD2E238B25 sha1 9982D65D1A3EEF98E669AC7FB090400AB8D3EEAD )
)
game (
name "Alien (World) (v1.02) (Aftermarket) (Unl)"
description "Alien (World) (v1.02) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.02) (Aftermarket) (Unl).lyx" size 262144 crc 0F5C46C3 md5 8E7AA580D9FDCEBBCCE18C62BE30CC29 sha1 FDC610C669186F0AC4ED0AA0450AF8F07E55D2D7 )
)
game (
name "Alien (World) (v1.03) (Aftermarket) (Unl)"
description "Alien (World) (v1.03) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.03) (Aftermarket) (Unl).lnx" size 169309 crc 6ABC548C md5 0829797D2EAF4A2607F6D144237A8C06 sha1 F7209C94CAC77C112960B9B60A6F126B0674FB0D )
)
game (
name "Alien (World) (v1.03) (Aftermarket) (Unl)"
description "Alien (World) (v1.03) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.03) (Aftermarket) (Unl).lyx" size 262144 crc 4F46E18B md5 474CED572009A4A1E569ABAE79F2C0BF sha1 BFF09196F621BAFF703BB349D91547F1565C9617 )
)
game (
name "Alien (World) (v1.04) (Aftermarket) (Unl)"
description "Alien (World) (v1.04) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.04) (Aftermarket) (Unl).lnx" size 234997 crc 399592DE md5 BCBDF972A120BC99B2148364E0EC0813 sha1 9913ACB2152D5A90FC85CCD2B5C33E26840C12C9 )
)
game (
name "Alien (World) (v1.04) (Aftermarket) (Unl)"
description "Alien (World) (v1.04) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.04) (Aftermarket) (Unl).lyx" size 262144 crc 447A8386 md5 8C09EC1BDA3362742463D6335DB47559 sha1 874147325C48457BC573EDC122D1C93DAB126386 )
)
game (
name "Alien (World) (v1.06) (Aftermarket) (Unl)"
description "Alien (World) (v1.06) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.06) (Aftermarket) (Unl).lnx" size 227582 crc FB03EE88 md5 1FFEDD876A0E131513ADC0F170C05C53 sha1 66F4D7912CD15695EF283E1B69421B30EDA8E9F3 )
)
game (
name "Alien (World) (v1.06) (Aftermarket) (Unl)"
description "Alien (World) (v1.06) (Aftermarket) (Unl)"
rom ( name "Alien (World) (v1.06) (Aftermarket) (Unl).lyx" size 262144 crc A7B2C685 md5 FE5F8038A448B0D8AA82333E49E87F9C sha1 D297CA1A4AA466BF514FE63B256537222D92AE8D )
)
game (
name "Alien vs Predator (Europe) (Proto)"
description "Alien vs Predator (Europe) (Proto)"
releaseyear "1993"
releasemonth "12"
releaseday "17"
region "Europe"
rom ( name "Alien vs Predator (Europe) (Proto) (1993-12-17).lyx" size 262144 crc 540E9BB7 md5 8CE6C739D30D6C5BA197FCDD73D5EAD5 sha1 27427ED186D034D71E100CBFF5D0072A717AF9E0 )
)
game (
name "Allein (World) (De) (Aftermarket) (Unl)"
description "Allein (World) (De) (Aftermarket) (Unl)"
rom ( name "Allein (World) (De) (Aftermarket) (Unl).lnx" size 262208 crc A6BD9B4A md5 186DC0495686430F2F4C690785D52854 sha1 12F4C522D7AC4FCA9A939838B5ED279285AA8465 )
)
game (
name "Allein (World) (De) (Aftermarket) (Unl)"
description "Allein (World) (De) (Aftermarket) (Unl)"
rom ( name "Allein (World) (De) (Aftermarket) (Unl).lyx" size 262144 crc D5376D02 md5 F243FB465959A70F259F4333DE8222A6 sha1 22F3F54DAC17CFB75D1D9CE71CC9A664ECA6A842 )
)
game (
name "Always Winter, Never Christmas (World) (Aftermarket) (Unl)"
description "Always Winter, Never Christmas (World) (Aftermarket) (Unl)"
rom ( name "Always Winter, Never Christmas (World) (Aftermarket) (Unl).lnx" size 188985 crc 548BFCF8 md5 1692E28EDD220E297FFB7F5D5D438A4C sha1 D3C88D674F2E417171D568965E41A7FB341A74DD )
)
game (
name "Always Winter, Never Christmas (World) (Aftermarket) (Unl)"
description "Always Winter, Never Christmas (World) (Aftermarket) (Unl)"
rom ( name "Always Winter, Never Christmas (World) (Aftermarket) (Unl).lyx" size 262144 crc D4ECEF80 md5 00537DB766C4D83A8CEE16B29C608775 sha1 DB724361314ED7E16B32887307978D1241576E99 )
)
game (
name "Angry Motes (World) (Aftermarket) (Unl)"
description "Angry Motes (World) (Aftermarket) (Unl)"
rom ( name "Angry Motes (World) (Aftermarket) (Unl).bll" size 24659 crc A6EE8F9E md5 56F90941E34D3BC030CE57140FD4D360 sha1 3D6F6F63775004D4D7FEBFCF9434CCD949800857 )
)
game (
name "Angry Motes (World) (Aftermarket) (Unl)"
description "Angry Motes (World) (Aftermarket) (Unl)"
rom ( name "Angry Motes (World) (Aftermarket) (Unl).lnx" size 65408 crc 7103FD0A md5 0D24CEB671B4802420DDE7021A6602F8 sha1 318D71E7E4D0FE8D820732E19FDEFD2007797E20 )
)
game (
name "Angry Motes (World) (Aftermarket) (Unl)"
description "Angry Motes (World) (Aftermarket) (Unl)"
rom ( name "Angry Motes (World) (Aftermarket) (Unl).lyx" size 262144 crc D6220C93 md5 12BA451250E80E6FAABC688C61E7A152 sha1 B79B13E5DCF5D13D1EF435A3D112EBEE62BAD6C8 )
)
game (
name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
description "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl).bll" size 36359 crc D0177377 md5 43C17AC1EC4DD445EEA34F76E19EF557 sha1 637D816B367DD6879342B5714820E18034FF754D )
)
game (
name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
description "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl).lnx" size 262208 crc 2D991DDE md5 178021759B5B887FBD690EB6F6E0D377 sha1 9E6C9126684F888D808897BB37DC8D2B34A7E394 )
)
game (
name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
description "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Anti A-Bomb Aircraft Artillery (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc 6FFABBFB md5 561C6725F64FFBDD0CA0CF990CAF28C6 sha1 1608BB8F416EADC0EE5EB94533133B78CE5324D8 )
)
game (
name "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl)"
description "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl).lnx" size 262208 crc 6CE7D8E2 md5 44AE38879EA4C34EFD5B6540ABA60502 sha1 F834E7842C3039A5959F3AA7562A725EF006E3C0 )
)
game (
name "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl)"
description "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Anti A-Bomb Aircraft Artillery (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc 004EA85A md5 2F160CE0BCA6E38816299733E4E7C3FE sha1 FEE289FE6A52564F781A5E9E63D33BC92A5BEBA1 )
)
game (
name "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
description "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
rom ( name "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl).lnx" size 131136 crc E763F08B md5 F65E3F7A6C0063444EEEED6BB9D787C0 sha1 B93046AB098F174DD99B1251BFCFE4E1D164A741 )
)
game (
name "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
description "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl)"
rom ( name "Assembloids (World) (v1.00) (Digital) (Atari Lynx 30th Birthday) (Aftermarket) (Unl).lyx" size 131072 crc 2A545F5A md5 BC8AFF692A6FB4F238D4198E8D7FEC45 sha1 B51B4F42A55C122E3D17FE042238FD7F368B1052 )
)
game (
name "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl)"
description "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl)"
rom ( name "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl).lnx" size 131136 crc 5A555584 md5 FD3C403ED86EBFF5B96B6111FA1D32DE sha1 FB2AEC2C2822D840B7CAF95EDCAFA2631BC60391 )
)
game (
name "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl)"
description "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl)"
rom ( name "Assembloids (World) (v1.04) (Digital) (Aftermarket) (Unl).lyx" size 131072 crc 9762FA55 md5 5BBD3AA2993DE2ADFD30093338A76D08 sha1 2178C0E94E8ECA416291CC4EE0220C68323317FB )
)
game (
name "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
description "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "08"
releaseday "14"
rom ( name "Asteroids Chasers (World) (2020-08-14) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 9EE4EFE6 md5 8CF418CEF94E87BD272C6F8A8FAA1554 sha1 3F7D32509E09FB5B1DA78F7B0A5565E027DD0390 )
)
game (
name "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
description "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "08"
releaseday "14"
rom ( name "Asteroids Chasers (World) (2020-08-14) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 5D3CD51D md5 2F404547C5D96250D96E96DFF5046242 sha1 BA389CAFAD7E9C8F596AF994977DDDDBD3F4884C )
)
game (
name "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
description "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "08"
releaseday "16"
rom ( name "Asteroids Chasers (World) (2020-08-16) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 2C89BBF4 md5 ECC2702671260360F529E5193C48E53E sha1 469E4F887D01CE240732EFB4059024DA8EF39565 )
)
game (
name "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
description "Asteroids Chasers (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "08"
releaseday "16"
rom ( name "Asteroids Chasers (World) (2020-08-16) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc EF51810F md5 2067C87C8065F60A10B5C30392CD4417 sha1 B2760A81917848333616C1735DB580C887EBDF3B )
)
game (
name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl).bll" size 22624 crc B1D50276 md5 2E4065427AEEDE3FB1CE61711F6357D6 sha1 2AF4C9A2A73170A296C3A3F0E6FDABA4767E839E )
)
game (
name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl).lnx" size 262208 crc A3D82AB7 md5 8AFA5457E6721C2859E8C6D304DB0137 sha1 074196305E1013045BB87C26924F5063CDE2BD90 )
)
game (
name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc E1BB8C92 md5 ADE4247702C0EF36934556B1EAB65CDD sha1 7936A38D469124D9F029F0A60813D192AEAC5776 )
)
game (
name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl).bll" size 25701 crc 46687D65 md5 3B39C02712FBE02D47431C2F42EB1B15 sha1 2E6F19589C1D22EAC8AF6F868981A067B8614369 )
)
game (
name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl).lnx" size 262208 crc 1168A376 md5 0AE59013EC50972F9E4DF84F827EE121 sha1 64426FE6B71688D55C85597BC19D83C8FC9B8DD9 )
)
game (
name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
description "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Atari Tabletops Collection (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc 530B0553 md5 CBC421F6207D497DEB542D08B4A6557F sha1 75F1542EA54E09D6E5580C0C32B3FACD9CC3FE34 )
)
game (
name "Atomix (World) (Proto) (Aftermarket) (Unl)"
description "Atomix (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Atomix (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 904BA764 md5 F72BEB4C2C0A740E944867C36DFF6F7F sha1 10AEDFF8E61E06C6F35E738034A0D9F19D41FC2E )
)
game (
name "Atomix (World) (Proto) (Aftermarket) (Unl)"
description "Atomix (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Atomix (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc A4570EF5 md5 AE163D73E4AA21F362C5C0AB2BA4010F sha1 84E9888C8B3912ED41521824BC9E60F0218CE15E )
)
game (
name "Awesome Golf (USA, Europe)"
description "Awesome Golf (USA, Europe)"
rom ( name "Awesome Golf (USA, Europe).lyx" size 262144 crc 0483CD2A md5 49D6EEB3C983246FF4D7034497F7095C sha1 74441B96CE5BF2BE68945FBE93BDA259F97816B7 )
)
game (
name "Awesome Golf (World) (Atari Lynx Collection 1) (Unl)"
description "Awesome Golf (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Awesome Golf (World) (Atari Lynx Collection 1) (Unl).lnx" size 262208 crc 55C41E59 md5 074933CDEF2DCE545629862D88C7C23F sha1 55C7D7BDC246133C4454EB2EAB1FE7EB7F24C9E3 )
)
game (
name "Awesome Golf (World) (Atari Lynx Collection 1) (Unl)"
description "Awesome Golf (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Awesome Golf (World) (Atari Lynx Collection 1) (Unl).lyx" size 262144 crc 1D748006 md5 DF30EAD07231CB0298A394F9A93C8517 sha1 191FF4E5802BC688582EDEC382C6A72D72046A45 )
)
game (
name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl).bll" size 22804 crc AF7F9C1B md5 68328AD57C51196A495EF25E8E1FDA43 sha1 0F29A97C583707B777238B630213682C8DA10C19 )
)
game (
name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl).lnx" size 23069 crc F571BA19 md5 559D5015889BBF9DDB13C472BCDEDCAD sha1 D912C560B4914960D01732DA04A2A7FE9C2AF315 )
)
game (
name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.1) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 70C345F8 md5 3844C5C32EF1CAA754326C67CF934D1C sha1 102FEE4F4C0072E83A8656D99C41FF7EA5A08E27 )
)
game (
name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl).bll" size 23075 crc EF39BA78 md5 8CA8072A1DD0DDB5373F28339FD220A4 sha1 B3D0F94B7DB2F9365D456EB06D7FD1BF1620068B )
)
game (
name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl).lnx" size 23340 crc 5CDE7400 md5 B9F6B0E767000BF669974F361F511961 sha1 A3EC2D0B95A9998592543985063B2A6F03C48146 )
)
game (
name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
description "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl)"
rom ( name "Banana Ghost (World) (v0.2) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc CD8D53F1 md5 3F88DC13BAA8146A8CA86E58826D84CB sha1 F2CDEC472DB395DADD1D20670B4B11740C2A9F40 )
)
game (
name "Bars (World) (Proto) (Aftermarket) (Unl)"
description "Bars (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bars (World) (Proto) (Aftermarket) (Unl).bll" size 7774 crc 0653F8DF md5 1B50EFF99209BAC2423209FACA1E032C sha1 8FCECA7352522825A121410FBD36F4F61100DC99 )
)
game (
name "Bars (World) (Proto) (Aftermarket) (Unl)"
description "Bars (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bars (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc C5CF8853 md5 E6247A65B9AD366C5DE683E41BB5DE1C sha1 5759A0E72AFC731AFFA9B9A836B395C7C3B4CEE4 )
)
game (
name "Bars (World) (Proto) (Aftermarket) (Unl)"
description "Bars (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bars (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 87AC2E76 md5 B9DD13B8188068D52B1DB45C91A68976 sha1 E2EE36A009207B8DD7F3C438BCDEC7C95676BA0F )
)
game (
name "Baseball Heroes (USA, Europe)"
description "Baseball Heroes (USA, Europe)"
rom ( name "Baseball Heroes (USA, Europe).lyx" size 262144 crc 3943C116 md5 8C9A72DDBB5559293862684EC67BFA92 sha1 B30A1FE12DC3E69E1A179A5E4D1799D93996FC24 )
)
game (
name "Basketbrawl (USA, Europe)"
description "Basketbrawl (USA, Europe)"
rom ( name "Basketbrawl (USA, Europe).lyx" size 131072 crc 4161BB4A md5 F19B95E4835C5FBC44B180DBD3F024FC sha1 46AE8E1504E2944525D535280A3ED32E0873788A )
)
game (
name "Basketbrawl (World) (Atari Lynx Collection 1) (Unl)"
description "Basketbrawl (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Basketbrawl (World) (Atari Lynx Collection 1) (Unl).lnx" size 262208 crc A41B3D47 md5 675928B7957BE8E4D81242BC946015CE sha1 CFE4708A881564B1AD75CDBE6DA526C06D19A9C1 )
)
game (
name "Basketbrawl (World) (Atari Lynx Collection 1) (Unl)"
description "Basketbrawl (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Basketbrawl (World) (Atari Lynx Collection 1) (Unl).lyx" size 262144 crc D0EE9038 md5 8750CE92D816E18341D8D1B5D2509D11 sha1 7F5E64FE35DA3C4FD217FFFF99A418E0D46B9067 )
)
game (
name "Bathman (World) (Aftermarket) (Unl)"
description "Bathman (World) (Aftermarket) (Unl)"
rom ( name "Bathman (World) (Aftermarket) (Unl).bll" size 31917 crc D3324DA5 md5 6EBE76C451A2497BBB28F6128D074295 sha1 9FA66D060D4EE545CCC29BA41306299C51BF76A0 )
)
game (
name "Bathman (World) (Aftermarket) (Unl)"
description "Bathman (World) (Aftermarket) (Unl)"
rom ( name "Bathman (World) (Aftermarket) (Unl).lnx" size 32182 crc 6E35C07E md5 2E51D77C44E295A0C231F95165895888 sha1 829D71251877FB8B02EF3FCF084C5297E469EA3F )
)
game (
name "Bathman (World) (Aftermarket) (Unl)"
description "Bathman (World) (Aftermarket) (Unl)"
rom ( name "Bathman (World) (Aftermarket) (Unl).lyx" size 262144 crc 2B842BFF md5 4BFFB4675050F2540635194E639B94CD sha1 0A45259DBFF52C96476D9A49D0C7C474D0C507ED )
)
game (
name "Batman Returns (USA, Europe)"
description "Batman Returns (USA, Europe)"
rom ( name "Batman Returns (USA, Europe).lyx" size 262144 crc 277F82C2 md5 6E9BBFF3C7B66D3EC0411FFBE0E41DFD sha1 2E25B17A221D4D9598811FBF84AB0DA3016F26E4 )
)
game (
name "Battle Wheels (USA, Europe)"
description "Battle Wheels (USA, Europe)"
rom ( name "Battle Wheels (USA, Europe).lyx" size 131072 crc 779FAECE md5 FDDECD756ABE5EAF613CA1DB31D51DF7 sha1 4577550D20A22CB685D51B411396D5085A852BE6 )
)
game (
name "Battlezone 2000 (USA, Europe)"
description "Battlezone 2000 (USA, Europe)"
rom ( name "Battlezone 2000 (USA, Europe).lyx" size 262144 crc 30FEE726 md5 D405EA54B77390B06222F9DAC7CEA827 sha1 FB50DDEE638AA316C7EAE6D50961E3B69B112C4F )
)
game (
name "Befok (World) (Proto) (Aftermarket) (Unl)"
description "Befok (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Befok (World) (Proto) (Aftermarket) (Unl).bll" size 30972 crc 9C1C70D2 md5 6F1F15FC0B4849987C0343036A11DB32 sha1 D5555D03720F31E320280E93C52F30B4EF335DBC )
)
game (
name "Befok (World) (Proto) (Aftermarket) (Unl)"
description "Befok (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Befok (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc ED85A2A4 md5 F86FF041A3221516AD39A27D09FBC40B sha1 2AB5F83692AC25E378AB800F7922D82DB1909F23 )
)
game (
name "Befok (World) (Proto) (Aftermarket) (Unl)"
description "Befok (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Befok (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc AFE60481 md5 90DE704B7076AD1C5EF19C4D1E6B00EE sha1 09815AC3F5564D78EDACC23C7B6C852169161D67 )
)
game (
name "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl).lnx" size 36089 crc 99378100 md5 1099943B19085165093267B2438CE07B sha1 B2A7A2F789119F7F3438E7EF40A2711F6063797E )
)
game (
name "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 1) (Aftermarket) (Unl).lyx" size 262144 crc 6BDF6D54 md5 9EBEBE96B8A521DEF2440DF765F0C217 sha1 E58EC231925C42F4A0AAA6EF18713F5EF6101BB6 )
)
game (
name "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl).lnx" size 36438 crc 83DAE4DA md5 7B3C238325EAB6EA058DF17F356CF334 sha1 D3C8249FF2D700E78E5E419A33505F5A9258F282 )
)
game (
name "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 2) (Aftermarket) (Unl).lyx" size 262144 crc E2E11B2D md5 4C57CFFB8790E5EDB22E26A6E26F804D sha1 D42A808FA5E49CFC59E6D7C9B714D26693BD5D7D )
)
game (
name "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl).lnx" size 37013 crc 5084BE23 md5 11B29901ADFF12124FF524E94A45C3B9 sha1 80B128008E657C79B2B8782721C3880E3D424150 )
)
game (
name "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl)"
description "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl)"
rom ( name "Bezerkoids (World) (Proto 3) (Aftermarket) (Unl).lyx" size 262144 crc 728EEB4E md5 410DE18CD732870F37755FCC0E14507D sha1 1A1E3749682E58F73FB61BC63C0B3988C00D6EA9 )
)
game (
name "Bill & Ted's Excellent Adventure (USA, Europe)"
description "Bill & Ted's Excellent Adventure (USA, Europe)"
rom ( name "Bill & Ted's Excellent Adventure (USA, Europe).lyx" size 262144 crc 143A313E md5 87DFF4F4D5E1E4A7132D19F94D4E9B3A sha1 F09CE08D93A479FEACECEB79EB48B337AFF49FAE )
)
game (
name "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl).lnx" size 15350 crc 7BC96D96 md5 AA27E6E139D7ACA03072484948CDD2A9 sha1 95E7C6C6BBFC6D4FB3E456BF059C2990BBDA4206 )
)
game (
name "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.1) (Beta) (Aftermarket) (Unl).lyx" size 262144 crc 613658AB md5 057E78CB86015D01B4BAFC41B45ECE2F sha1 6813C1F3EB4039B10EC888605AF05DA76B741F64 )
)
game (
name "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl).lnx" size 21422 crc 3FE195D2 md5 D1AA93D9123DA62C43B3E6BA9CBFEF57 sha1 B81AE09C40743FD3123A5BEC9DA3109592D2FD10 )
)
game (
name "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.2) (Beta) (Aftermarket) (Unl).lyx" size 262144 crc D65DDBC3 md5 D6D935F4E2E7AF66100DE5FA0E072A1E sha1 105A360930EB9B2D448D577A60BA3AE69EEE5931 )
)
game (
name "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl).lnx" size 22707 crc 9B3350F0 md5 A90571F6B1226109C086684A32966EA1 sha1 A0B1A702DDC82E7AAD1893058E7C91188EE04D42 )
)
game (
name "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl)"
description "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v0.3) (Beta) (Aftermarket) (Unl).lyx" size 262144 crc 5A3F90A0 md5 12A07E89BB9F216047ED4A3D9D117575 sha1 057D4576E79BBF8BF6FEC64A2AB2A1C6A86286CB )
)
game (
name "Biniax (World) (v1.0) (Aftermarket) (Unl)"
description "Biniax (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v1.0) (Aftermarket) (Unl).lnx" size 27267 crc 66894CB9 md5 69DA929F14C7ADE0D1BCD6222ECD305B sha1 483E76BDF34561C311830BE6B69DDFC4D9570915 )
)
game (
name "Biniax (World) (v1.0) (Aftermarket) (Unl)"
description "Biniax (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Biniax (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc FDCA4017 md5 D82F074538F69A0BD926E01E8BABEF8A sha1 00002A8F2E0DFDF031A690F5F6BB08D81ECBE040 )
)
game (
name "Bitchy (World) (Digital) (Aftermarket) (Unl)"
description "Bitchy (World) (Digital) (Aftermarket) (Unl)"
rom ( name "Bitchy (World) (Digital) (Aftermarket) (Unl).bll" size 38180 crc A716DF9E md5 423951C6AB079A3FFB5F80A0307A4970 sha1 7FBF32AD5018F59A3EB13B1BFACC8D9E75682C9F )
)
game (
name "Bitchy (World) (Digital) (Aftermarket) (Unl)"
description "Bitchy (World) (Digital) (Aftermarket) (Unl)"
rom ( name "Bitchy (World) (Digital) (Aftermarket) (Unl).lnx" size 262208 crc 51F718D2 md5 7CA8DBA56CB32E7838695289BABED831 sha1 453C2A18C1D72E1680C16DF521AED7023682E27A )
)
game (
name "Bitchy (World) (Digital) (Aftermarket) (Unl)"
description "Bitchy (World) (Digital) (Aftermarket) (Unl)"
rom ( name "Bitchy (World) (Digital) (Aftermarket) (Unl).lyx" size 262144 crc 21968CB7 md5 F85C5DB77CD1AB87E521809B15CD8ADD sha1 6FCCB483AD59F2DB8699D2AB4910C11B3FA193AC )
)
game (
name "Black Pit (World) (Proto) (Aftermarket) (Unl)"
description "Black Pit (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Black Pit (World) (Proto) (Aftermarket) (Unl).bll" size 30249 crc 7BE17A2A md5 ADF59B18CBAA97D147008C17D7532F56 sha1 A05E02D76511E72696DA3D3ECC65AA3A229509B3 )
)
game (
name "Black Pit (World) (Proto) (Aftermarket) (Unl)"
description "Black Pit (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Black Pit (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 081A63B9 md5 46A200F5537356747AE58CBB988F732A sha1 9A23CD945EB8F5752053C06E491D6A8FD6E825B6 )
)
game (
name "Black Pit (World) (Proto) (Aftermarket) (Unl)"
description "Black Pit (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Black Pit (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 029DC551 md5 9FFB453D3D4F9745B6A3893215B5DD5F sha1 F1B4748DDFFFF2288CE7CDA8344D235E147DBAEB )
)
game (
name "Block Out (USA, Europe)"
description "Block Out (USA, Europe)"
rom ( name "Block Out (USA, Europe).lyx" size 131072 crc 3CD75DF3 md5 C81ABF2919EFFD525B83C2103B75E6CA sha1 AE177CF76953B7E0A56B03096BB5C9C9C9051177 )
)
game (
name "Blue Lightning (World)"
description "Blue Lightning (World)"
rom ( name "Blue Lightning (World).lyx" size 131072 crc DAF587B1 md5 F7B4775771BC25D9053AF5C69A8C8B2A sha1 BE08076586F76DB368DB1769380DCBB6DE2A6513 )
)
game (
name "Bobo (World) (Proto) (Aftermarket) (Unl)"
description "Bobo (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bobo (World) (Proto) (Aftermarket) (Unl).bll" size 23657 crc 4751D420 md5 3A697A28BDF5ED4A3B5A286138F39AD6 sha1 0E1C4F502C72AA4AEDEE108533D386C17DD587FB )
)
game (
name "Bobo (World) (Proto) (Aftermarket) (Unl)"
description "Bobo (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bobo (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 31BA9D36 md5 809A98C8B9AD4F3EF806B0CD83D48124 sha1 5B2F31A615DEE1B6DB9C78F26262F4EE42121437 )
)
game (
name "Bobo (World) (Proto) (Aftermarket) (Unl)"
description "Bobo (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bobo (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 73D93B13 md5 299DBE1D375E128FAA39303D16C000DB sha1 16ACA0BBDC9C70C3E7859B24961988400281DDF5 )
)
game (
name "Bowling Area (World) (Proto) (Aftermarket) (Unl)"
description "Bowling Area (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bowling Area (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 8CBC09CA md5 BDBD3B2F5275C93D15292776B50A1684 sha1 B01AFB67867CAC6139E62505B3E31C4BEB4032A5 )
)
game (
name "Bowling Area (World) (Proto) (Aftermarket) (Unl)"
description "Bowling Area (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bowling Area (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc CEDFAFEF md5 6098215E6A8A3720966BBF6863A2018C sha1 4CE64A1F15F6C897F8E0ECE09C1F3098DF5662DD )
)
game (
name "Bubble Trouble (USA, Europe)"
description "Bubble Trouble (USA, Europe)"
rom ( name "Bubble Trouble (USA, Europe).lyx" size 262144 crc 333DAECE md5 90841F8FED54862F8A8750DDF212EB84 sha1 CB9F78FFB02216979A03ABB66301E4D3A8F01BFE )
)
game (
name "Bug Hunt (World) (Proto) (Aftermarket) (Unl)"
description "Bug Hunt (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bug Hunt (World) (Proto) (Aftermarket) (Unl).lnx" size 223593 crc 4E0F428E md5 7519B0F9F14835CFE8BAE0DCBEDB30BE sha1 275C7AC269204F8FA5E34EE8F2D2F8A131C05D0F )
)
game (
name "Bug Hunt (World) (Proto) (Aftermarket) (Unl)"
description "Bug Hunt (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Bug Hunt (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 5216089A md5 A9AD52A17667556B70C332CDA859C672 sha1 AC85BD3764DE4D66B77C85EFD4C914EB074BC31F )
)
game (
name "C-Gull (World) (Aftermarket) (Unl)"
description "C-Gull (World) (Aftermarket) (Unl)"
rom ( name "C-Gull (World) (Aftermarket) (Unl).lnx" size 262208 crc 20999493 md5 81F5C121B499D04813522D382D5A0CA9 sha1 360711AE9135264FEFA0C2DD1D2121666A87214D )
)
game (
name "C-Gull (World) (Aftermarket) (Unl)"
description "C-Gull (World) (Aftermarket) (Unl)"
rom ( name "C-Gull (World) (Aftermarket) (Unl).lyx" size 262144 crc 6A0C7417 md5 FDB88DA6221360209A9159965658EFA4 sha1 E070DEC30FBE0BC8D982C32FAB4B3890400AC2B6 )
)
game (
name "California Games (World)"
description "California Games (World)"
rom ( name "California Games (World).lyx" size 131072 crc A08F0B59 md5 73E02BB77DCF857A6578F0E24B4ECB9E sha1 F13E010102CA527A9C393ACB52BB949A1BA93E3E )
)
game (
name "Cardtest (World) (Beta) (Aftermarket) (Unl)"
description "Cardtest (World) (Beta) (Aftermarket) (Unl)"
rom ( name "Cardtest (World) (Beta) (Aftermarket) (Unl).lnx" size 262208 crc 0F4259B7 md5 EA3CD49D7C63267F59A8965ADC41962F sha1 A4376A181F73710CEE262D00EE68B3C828D8E4BA )
)
game (
name "Cardtest (World) (Beta) (Aftermarket) (Unl)"
description "Cardtest (World) (Beta) (Aftermarket) (Unl)"
rom ( name "Cardtest (World) (Beta) (Aftermarket) (Unl).lyx" size 262144 crc FEEE8121 md5 ED160AB0DAD1DFDF1D33FABCA819CB34 sha1 CFAFCCA829977B1843C9BC138901F4DCCD8FC329 )
)
game (
name "Catkanoid (World) (Aftermarket) (Unl)"
description "Catkanoid (World) (Aftermarket) (Unl)"
rom ( name "Catkanoid (World) (Aftermarket) (Unl).lnx" size 14766 crc D04DD5D2 md5 54EEC928A78A71E254F1CC1C0DBB9C49 sha1 3C531B12980C12C9E91943D4B749B97B82448B2D )
)
game (
name "Catkanoid (World) (Aftermarket) (Unl)"
description "Catkanoid (World) (Aftermarket) (Unl)"
rom ( name "Catkanoid (World) (Aftermarket) (Unl).lyx" size 262144 crc 8327AC2F md5 9D3C02D1F18D9ED5A8C1D13FBB23337C sha1 D8DDB7796B5B0206DD2EB00437A00275853C24A5 )
)
game (
name "Centipede (USA) (Proto)"
description "Centipede (USA) (Proto)"
region "USA"
rom ( name "Centipede (USA) (Proto).lyx" size 131072 crc 97501709 md5 13CB869B95C67C532EFDD0E924E37299 sha1 59A5185203E3550B1CAD7B28489915BC8DE80851 )
)
game (
name "Chase (World) (Aftermarket) (Unl)"
description "Chase (World) (Aftermarket) (Unl)"
rom ( name "Chase (World) (Aftermarket) (Unl).lnx" size 262208 crc D093125B md5 E0F02191F6FA296F9C4D39C6BD97ADFE sha1 4E5319B8B37CCAC2F4A06CD2E3D199256695219C )
)
game (
name "Chase (World) (Aftermarket) (Unl)"
description "Chase (World) (Aftermarket) (Unl)"
rom ( name "Chase (World) (Aftermarket) (Unl).lyx" size 262144 crc 19F69733 md5 08DD18F72E4DC4284EDEC92FCB713727 sha1 D1C9C2689F21D68C62F6DB82D95C137E735802E1 )
)
game (
name "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
description "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Chasm Warden (World) (Proto) (Aftermarket) (Unl).bll" size 34466 crc 873D59E6 md5 E5C41086488A68FF2AE0C5E26053908F sha1 4E480E8CAD7D7233C5A5024E4127930AF29E2972 )
)
game (
name "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
description "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Chasm Warden (World) (Proto) (Aftermarket) (Unl).lnx" size 65408 crc 2B3BF41F md5 20C68FEBCF1884130E72EA6B8ED64DA9 sha1 43D43EE8BF8684D1FCF2AFDC40693FE280652BBB )
)
game (
name "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
description "Chasm Warden (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Chasm Warden (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc B665AE38 md5 C900D09747F69FAA18F44B332ED7FBBD sha1 E8B63F669642569BFCD3B17BC4F5F3F9EA80D3EB )
)
game (
name "Checkered Flag (USA, Europe)"
description "Checkered Flag (USA, Europe)"
rom ( name "Checkered Flag (USA, Europe).lyx" size 262144 crc 19C5A7A5 md5 85B33C5E5985AB041ECC44555A8CFB42 sha1 F115BB5F98992D98C8D11B1DAA68BB1961B59660 )
)
game (
name "Chip's Challenge (World)"
description "Chip's Challenge (World)"
rom ( name "Chip's Challenge (World).lyx" size 131072 crc 6A5F53ED md5 24611D1445EBD34AB79FB0AE996FF4E4 sha1 6A90E6627086E13D99BACBCAAFEA7AB2F6ABA8A0 )
)
game (
name "Choplifter X (World) (Aftermarket) (Unl)"
description "Choplifter X (World) (Aftermarket) (Unl)"
rom ( name "Choplifter X (World) (Aftermarket) (Unl).bll" size 34464 crc 8B23867E md5 FE6150443E0BFEDD9B627EE31DB3BD79 sha1 4E4ED7AAA3997B5C044BF9759F34E3D9E959F183 )
)
game (
name "Choplifter X (World) (Aftermarket) (Unl)"
description "Choplifter X (World) (Aftermarket) (Unl)"
rom ( name "Choplifter X (World) (Aftermarket) (Unl).lnx" size 262208 crc F2BC7FF2 md5 19D9DC4678C4D95734F4D1242F2A6399 sha1 0BEAD2C32FBB4C7FFEC8ED507C33D31BFC2063BC )
)
game (
name "Choplifter X (World) (Aftermarket) (Unl)"
description "Choplifter X (World) (Aftermarket) (Unl)"
rom ( name "Choplifter X (World) (Aftermarket) (Unl).lyx" size 262144 crc B0DFD9D7 md5 12DA1C36EA31154EEF48650310092A17 sha1 1D3AA71569F3B3C3F2A5673281ADDD1D4C8A5942 )
)
game (
name "Circuit Dude (World) (Proto) (Aftermarket) (Unl)"
description "Circuit Dude (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Circuit Dude (World) (Proto) (Aftermarket) (Unl).lnx" size 51870 crc 234BC3F1 md5 EFF43609260FC50A0E1FAACDCE4FA0F7 sha1 0FCD548B066D9A6AAAC71071F1DCF977C4030A3C )
)
game (
name "Circuit Dude (World) (Proto) (Aftermarket) (Unl)"
description "Circuit Dude (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Circuit Dude (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc E205D7CA md5 2D301B07CCA228FC50D674B1917305D8 sha1 3B7EA1C115F539A95FF3098B7C90118BF7AF761E )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).bll" size 35183 crc 0ECBFE53 md5 6AC055224917FBA6B39769F01BDDC35E sha1 140A308A72ED20885DEF95F15A14EA9EAC560E75 )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).lnx" size 262208 crc C99DE075 md5 29676018D09B5CEB60AA12DB8FF2ACE4 sha1 565CDC8F04477652133766F3C383883D92F6E0C3 )
)
game (
name "Clicks! (World) (Aftermarket) (Unl)"
description "Clicks! (World) (Aftermarket) (Unl)"
rom ( name "Clicks! (World) (Aftermarket) (Unl).lyx" size 262144 crc 7BDADD44 md5 CB0E6C61CAA2384733B8F203421CE941 sha1 F0B8BF8EB0C8619562B15328FCAF04FDE7E2142D )
)
game (
name "Columns (World) (Proto) (Aftermarket) (Unl)"
description "Columns (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Columns (World) (Proto) (Aftermarket) (Unl).bll" size 12383 crc 77B9B738 md5 2CCE9DE9474B03E9268475FF933A7F4B sha1 87F2F41D742C80BB64C702119726F8091DCBFBD6 )
)
game (
name "Columns (World) (Proto) (Aftermarket) (Unl)"
description "Columns (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Columns (World) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 702E51E3 md5 3BD0F6E50D6D73EA1E7D09818653684B sha1 CF7D23E7F7B7BCBC914B14895D860D8968DB406C )
)
game (
name "Columns (World) (Proto) (Aftermarket) (Unl)"
description "Columns (World) (Proto) (Aftermarket) (Unl)"
rom ( name "Columns (World) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 324DF7C6 md5 A2BFB8C3368FCA135CDF253A576FAA40 sha1 B4F8A4391632498C2DDB5D11AF45DA4AC6921F65 )
)
game (
name "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
description "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Conquistador (World) (v1.0) (Aftermarket) (Unl).bll" size 46414 crc 8CEAC7DD md5 85F74EC751BDCE0ADA934C7502D2F3EE sha1 DC712D88A48511C1128171DCF68F14AEF1D85A0D )
)
game (
name "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
description "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Conquistador (World) (v1.0) (Aftermarket) (Unl).lnx" size 262208 crc F2DF4B90 md5 C7365D949E3D597433B82FB69F5F0D85 sha1 74D71DEE9AACA266A5F8260BA623D29770A81A66 )
)
game (
name "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
description "Conquistador (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Conquistador (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc B96A8E67 md5 3BBFE99FF86CDDB9DD8BB4359B774DDA sha1 85F34BCF53E28ACF1599473D6F7A02B69AAFD574 )
)
game (
name "Conquistador (World) (v1.1) (Aftermarket) (Unl)"
description "Conquistador (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Conquistador (World) (v1.1) (Aftermarket) (Unl).lnx" size 262208 crc 8179896C md5 388A04922513EFCF9850F3A1188855F3 sha1 82F60697BFFF842628FE9D74B996A0D52A00DC83 )
)
game (
name "Conquistador (World) (v1.1) (Aftermarket) (Unl)"
description "Conquistador (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Conquistador (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc CACC4C9B md5 14B3F1FD46DBD54322BCD6A0E70B7C8B sha1 FECB980573429C3AD584BD287D3C3B0EF60D77FC )
)
game (
name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
description "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl).bll" size 19085 crc 43E5FC9B md5 8AF7288271D02D9E1796985FBEE67954 sha1 4281F40B2885013F11404525E87366FF63BF7DB7 )
)
game (
name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
description "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl).lnx" size 19350 crc 41C5C90B md5 A61B03C3C864E9027CA79D40FA606BAA sha1 F9C1C3B2C5E1FA2DD561D8C89DFFA2C253BC304F )
)
game (
name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
description "Crate Challenge (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Crate Challenge (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc B0399E76 md5 AA04D152B553F99EEE095213DE63839B sha1 03A3900E02883A437F783256C5B28DE194503072 )
)
game (
name "Cross Bomber (World) (Aftermarket) (Unl)"
description "Cross Bomber (World) (Aftermarket) (Unl)"
rom ( name "Cross Bomber (World) (Aftermarket) (Unl).lnx" size 9054 crc 83C59F2D md5 29AE1A28F0D9324B2A9E1889F26EC838 sha1 E6B4E868E82C83C5C3767B7353D92E7B0F743EDE )
)
game (
name "Cross Bomber (World) (Aftermarket) (Unl)"
description "Cross Bomber (World) (Aftermarket) (Unl)"
rom ( name "Cross Bomber (World) (Aftermarket) (Unl).lyx" size 262144 crc DFED165D md5 2F8BD10047E8EFE6BF6D3CC09498F32E sha1 6ED5D232F2CF0AE62E047632D75A766FC772C27B )
)
game (
name "Cross Chase (World) (v1.0) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.0) (Aftermarket) (Unl).lnx" size 14619 crc 533AF2B2 md5 D0D40109D1B16A14B638869F180BF366 sha1 C529FFD315706F9E4ED6DC49B93E207EEC7D8220 )
)
game (
name "Cross Chase (World) (v1.0) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc 9658B6ED md5 139E6C7DBD7125731FC8101722BC9E3A sha1 9FAA6A5536D987329CE403CF68DCC16A74BFA1F0 )
)
game (
name "Cross Chase (World) (v1.1) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.1) (Aftermarket) (Unl).lnx" size 14746 crc 89496F19 md5 5E8EB4E047D69D05BDFF2BD57005B49B sha1 B1804C25A59F5E00C8972EBAE337C30DDBE3AF72 )
)
game (
name "Cross Chase (World) (v1.1) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc 7201F4BA md5 98EB863B1A88BB6C00CC8F2790DB1EDC sha1 7A5F4B51CCE8EE360A2FB594165D827352FE6C62 )
)
game (
name "Cross Chase (World) (v1.2) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.2) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.2) (Aftermarket) (Unl).lnx" size 15388 crc 8221E039 md5 CBC54D20B88D5DF62D54F06BE2BC95CD sha1 597DDAD37597EF8C30B34BA35BC714AA0F52C574 )
)
game (
name "Cross Chase (World) (v1.2) (Aftermarket) (Unl)"
description "Cross Chase (World) (v1.2) (Aftermarket) (Unl)"
rom ( name "Cross Chase (World) (v1.2) (Aftermarket) (Unl).lyx" size 262144 crc 6CC58515 md5 44E70176C1B09E637FE3A281205402BA sha1 67065764B8D06C4F5D306C522348470D4BA397D1 )
)
game (
name "Cross Horde (World) (Aftermarket) (Unl)"
description "Cross Horde (World) (Aftermarket) (Unl)"
rom ( name "Cross Horde (World) (Aftermarket) (Unl).lnx" size 12512 crc 944E733A md5 D39A264F274B2721D22087E56BEE0521 sha1 C2BB217F702D0B76943439F73682306240CB80F4 )
)
game (
name "Cross Horde (World) (Aftermarket) (Unl)"
description "Cross Horde (World) (Aftermarket) (Unl)"
rom ( name "Cross Horde (World) (Aftermarket) (Unl).lyx" size 262144 crc 140C018F md5 293DD47DB9C25B44CE2AFA99560FC7E7 sha1 C69FD60FD5BB1BE5FA693D7A11C502ADA984A2B7 )
)
game (
name "Cross Shoot (World) (Aftermarket) (Unl)"
description "Cross Shoot (World) (Aftermarket) (Unl)"
rom ( name "Cross Shoot (World) (Aftermarket) (Unl).lnx" size 21430 crc 87C4C029 md5 106CE92E57D49B1334C8CDD9D08BF071 sha1 95C03450189780A01EB5F0A689552BCD71EDC3B6 )
)
game (
name "Cross Shoot (World) (Aftermarket) (Unl)"
description "Cross Shoot (World) (Aftermarket) (Unl)"
rom ( name "Cross Shoot (World) (Aftermarket) (Unl).lyx" size 262144 crc 0025F4B5 md5 382C4A56F84F8F40D6E394BCE29983F4 sha1 DA3EFBC57EFD6DAD023557FF422C2A2AD85B2301 )
)
game (
name "Cross Snake (World) (Aftermarket) (Unl)"
description "Cross Snake (World) (Aftermarket) (Unl)"
rom ( name "Cross Snake (World) (Aftermarket) (Unl).lnx" size 14595 crc 6EC89559 md5 C33C6052100B7FECAD067BB1DB426A3E sha1 D2451017E868E8ED866896BD9155D6EA71B6FA77 )
)
game (
name "Cross Snake (World) (Aftermarket) (Unl)"
description "Cross Snake (World) (Aftermarket) (Unl)"
rom ( name "Cross Snake (World) (Aftermarket) (Unl).lyx" size 262144 crc 5487A1FE md5 3B5497E65BFBA3EE5FD7885C1237ABF9 sha1 1A2FB17AB60D61A61CCB39E4F3F9BD1FAEC646EF )
)
game (
name "Crystal Mines II (USA, Europe)"
description "Crystal Mines II (USA, Europe)"
rom ( name "Crystal Mines II (USA, Europe).lyx" size 131072 crc AEC474C8 md5 B4ACBD3C544A0D92CC8AD1380BF8A810 sha1 3364BDE38508C5C4FED5575295CC80C6F72EDEBE )
)
game (
name "Crystal Mines II - Buried Treasure (World) (Unl)"
description "Crystal Mines II - Buried Treasure (World) (Unl)"
rom ( name "Crystal Mines II - Buried Treasure (World) (Unl).lnx" size 262208 crc 5ADA9B79 md5 CF28F66FE3E9415E1EE880B6BF3F6AA3 sha1 F74CF43A8E9D58ABF85B4EF95385D4FA804810EA )
)
game (
name "Crystal Mines II - Buried Treasure (World) (Unl)"
description "Crystal Mines II - Buried Treasure (World) (Unl)"
rom ( name "Crystal Mines II - Buried Treasure (World) (Unl).lyx" size 262144 crc 122EC861 md5 B7627B8D70DF9CB3E75DA8E1A035C71A sha1 C0977CE9F22B0182B332AF96290A36F0E7B8FBE6 )
)
game (
name "Cyber Virus (World) (Aftermarket) (Unl)"
description "Cyber Virus (World) (Aftermarket) (Unl)"
rom ( name "Cyber Virus (World) (Aftermarket) (Unl).lnx" size 262208 crc A683A04C md5 84546DDD9B8317F7BDC5537BA3892DF4 sha1 C631441D48A53B229A32E7C0DB5616F1D90F1B22 )
)
game (
name "Cyber Virus (World) (Aftermarket) (Unl)"
description "Cyber Virus (World) (Aftermarket) (Unl)"
rom ( name "Cyber Virus (World) (Aftermarket) (Unl).lyx" size 262144 crc 33E888BB md5 BF0D2F98578FE07694AB8E13FF561AE5 sha1 6CAD3547F1C1E6B981376857E59741B2A05A1775 )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "13"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-13) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 8ECF7C04 md5 ADCED92F3F55FA7D54211BD6A64EF74B sha1 FF12FEA34610F49213509E6C005E9735408AF06D )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "13"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-13) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc DC547198 md5 EBC4450C3F4D8D8679050B04EC75D7D0 sha1 50457301AAB981B33367636F9B3B45B1DDFA1E0F )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "14"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-14) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc DFA90127 md5 6F5618EB54A6DA2172134D9B6836CF11 sha1 54C689C2A3DBCE7FEF0D645AF641F9B1143E8FC0 )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "14"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-14) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 8D320CBB md5 999A509DBAE6735EED971B429450DAD1 sha1 26875BAFD75B74FE43FD52AE0F23727DF226066B )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "21"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-21) (Proto) (Aftermarket) (Unl).lnx" size 262208 crc 06DBE9B9 md5 B0DD4FDC3354454D0CD85217085CD6C7 sha1 BE840A5492296D110384BBF1D3F4777F6FF78BB9 )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "04"
releaseday "21"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-04-21) (Proto) (Aftermarket) (Unl).lyx" size 262144 crc 5440E425 md5 55077CA1FBF74819858FB170812DDFE7 sha1 643378281B105AC76AA40CE97D213376FB15EE4E )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "06"
releaseday "01"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-06-01) (Proto) (Aftermarket) (Unl).lnx" size 524352 crc 6D312A14 md5 5C3C83C88E8B6B4F95DE3B446C296DAE sha1 387074AA2EED381F14A7DECF285390EF88FA8C35 )
)
game (
name "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
description "Cyberpunk Experiment 2037 (World) (Proto) (Aftermarket) (Unl)"
releaseyear "2020"
releasemonth "06"
releaseday "01"
rom ( name "Cyberpunk Experiment 2037 (World) (2020-06-01) (Proto) (Aftermarket) (Unl).lyx" size 524288 crc 69E35D01 md5 ABE8704A54803A69E3BF9CB920AFD115 sha1 170837EFD3E72E26E3EC0B0C0897D5CD7D6A40F2 )
)
game (
name "Daemon's Gate (USA) (Proto 1)"
description "Daemon's Gate (USA) (Proto 1)"
region "USA"
rom ( name "Daemon's Gate (USA) (Proto 1).lyx" size 262144 crc 99729395 md5 F8B4DEBD68EB0D7C578242FA74E1C593 sha1 5A3A21EB5DE37367D294E057F70A1F325BF23C4A )
)
game (
name "Daemon's Gate (USA) (Proto 2)"
description "Daemon's Gate (USA) (Proto 2)"
region "USA"
rom ( name "Daemon's Gate (USA) (Proto 2).lyx" size 262144 crc EF529ED4 md5 F1C12B0C2284E7F7ABE948AA97B34AE1 sha1 4BD08D8EDD5F551782EEDC4D32CF627B9FB16C8B )
)
game (
name "Dance, Bro! (World) (Aftermarket) (Unl)"
description "Dance, Bro! (World) (Aftermarket) (Unl)"
rom ( name "Dance, Bro! (World) (Aftermarket) (Unl).bll" size 36433 crc BA99EEA0 md5 59EC0EEAE6A1A41023B328D086350390 sha1 A4DA788E00CC419E91B8F5ACFFAE6B31FFE3531E )
)
game (
name "Dance, Bro! (World) (Aftermarket) (Unl)"
description "Dance, Bro! (World) (Aftermarket) (Unl)"
rom ( name "Dance, Bro! (World) (Aftermarket) (Unl).lnx" size 36698 crc 76F2EAB8 md5 C37B7D7A152E156AF46FEEB49E9FB7CF sha1 B1EC5A6D91F75AEE32E926EF71515F5B48B2E4DC )
)
game (
name "Dance, Bro! (World) (Aftermarket) (Unl)"
description "Dance, Bro! (World) (Aftermarket) (Unl)"
rom ( name "Dance, Bro! (World) (Aftermarket) (Unl).lyx" size 262144 crc 76195D5B md5 FED0FA386C1DE14DC75B28674870006B sha1 A1BA5A4FC2A48D35FFDE50AA1FA4230ED4D87ACB )
)
game (
name "Desert Strike - Return to the Gulf (USA, Europe)"
description "Desert Strike - Return to the Gulf (USA, Europe)"
rom ( name "Desert Strike - Return to the Gulf (USA, Europe).lyx" size 262144 crc B9AC1FE5 md5 F764B88C44AFA8B5EBEFB8EB2E4D7B97 sha1 3149D8BA5661FD61DC94D518A0CB6D7B3A8F319F )
)
game (
name "Dinolympics (USA, Europe)"
description "Dinolympics (USA, Europe)"
rom ( name "Dinolympics (USA, Europe).lyx" size 262144 crc 50386CFA md5 9496BE61FD0675553F05345C5FC2D15C sha1 0DAD2286934C6A317407DB066F00233C27F54BBE )
)
game (
name "Dirty Larry - Renegade Cop (USA, Europe)"
description "Dirty Larry - Renegade Cop (USA, Europe)"
rom ( name "Dirty Larry - Renegade Cop (USA, Europe).lyx" size 262144 crc D565FBB7 md5 8CD77BEC912C9B4DCEBD8A82DCF91A0B sha1 CA856DC880663D7F105AE5AA2FF160B9FC209F92 )
)
game (
name "Double Dragon (USA, Europe)"
description "Double Dragon (USA, Europe)"
rom ( name "Double Dragon (USA, Europe).lyx" size 262144 crc FBFC0F05 md5 0E91B7ED60BB47D569BA24DF671AD3A3 sha1 7FC3663BEC878B138CFC51F14154823F9701C9E7 )
)
game (
name "Dracula - The Undead (USA, Europe)"
description "Dracula - The Undead (USA, Europe)"
rom ( name "Dracula - The Undead (USA, Europe).lyx" size 262144 crc 33BB74C7 md5 3FF35996887C2FF95E275085EFBBBBED sha1 8F393F0FA8CE832E6298DB72F539CE4B961700E2 )
)
game (
name "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl)"
description "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl).lnx" size 262208 crc 95B4A0E6 md5 1C0B1F336FC16C540E073DCBBBE21967 sha1 0B791C0EE0F71D9A564732AE41398F7193303D02 )
)
game (
name "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl)"
description "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl)"
rom ( name "Dracula - The Undead (World) (Atari Lynx Collection 1) (Unl).lyx" size 262144 crc A9449450 md5 B99E7A58183A90B36F6997655DE9B2E9 sha1 16E2FC5457EC728147247FBD19F3A41049E94026 )
)
game (
name "DrunkWitch (World) (Aftermarket) (Unl)"
description "DrunkWitch (World) (Aftermarket) (Unl)"
rom ( name "DrunkWitch (World) (Aftermarket) (Unl).bll" size 37966 crc 098FFD9C md5 876F6CD47552C892627B9735F210E005 sha1 E6640A77AC5D4ACDDE3876F6111F531AD9F2EDE7 )
)
game (
name "DrunkWitch (World) (Aftermarket) (Unl)"
description "DrunkWitch (World) (Aftermarket) (Unl)"
rom ( name "DrunkWitch (World) (Aftermarket) (Unl).lnx" size 38231 crc E351D205 md5 AF123D0F4ABF87197AB63B3E0ADA3FB9 sha1 2515AB1E9F83DBDAA76991172318BD59F8A6D9F1 )
)
game (
name "DrunkWitch (World) (Aftermarket) (Unl)"
description "DrunkWitch (World) (Aftermarket) (Unl)"
rom ( name "DrunkWitch (World) (Aftermarket) (Unl).lyx" size 262144 crc 061D9270 md5 94519B6553E24ECEFC004D6EB41BF9FC sha1 F03D5EE5425B52581EDB3CE15F484BFEAC6EF911 )
)
game (
name "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
description "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (Beta) (Aftermarket) (Unl).bll" size 31906 crc 6F28CBBA md5 D8D8F9D65739168CB5A3B51D59886012 sha1 795EFFAA848C574EAA6800935F94D753AEFE31AD )
)
game (
name "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
description "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (Beta) (Aftermarket) (Unl).lnx" size 65536 crc 6334DABB md5 844049CEAB769B56502EAEF28ADC463C sha1 D413FA59CA961832FCAFA268BA43504764D47B93 )
)
game (
name "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
description "Dungeddon (World) (Beta) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (Beta) (Aftermarket) (Unl).lyx" size 262144 crc 4C62B125 md5 95F6E4F3B6FFCBD492FA52944E3BA0EA sha1 CA59CBA03ADF4A45F05524DBC7F196748364E8CB )
)
game (
name "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
description "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (v1.1) (Aftermarket) (Unl).bll" size 33256 crc D7B1AD68 md5 CE90FD4F14202B316135F7C1DBD65E68 sha1 0249EC9C3A0BF251D5CE4591A87EEF0FA0717BA4 )
)
game (
name "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
description "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (v1.1) (Aftermarket) (Unl).lnx" size 65536 crc A3BCB0A4 md5 BBBBB8C3CF93C4F21BEE482125A8D851 sha1 111D1658EE324BDF944ACAE5E1CF6E93A8060362 )
)
game (
name "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
description "Dungeddon (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Dungeddon (World) (v1.1) (Aftermarket) (Unl).lyx" size 262144 crc 6A9BD2A8 md5 D823B9D84F5785D7C9CD467E3401365F sha1 6B790A04614340BE7CBE5EE675725E9C4B76A182 )
)
game (
name "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl)"
description "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl).lnx" size 20716 crc BC4737A3 md5 B37A9DF7ACDF21B415AEAC07B7121ED7 sha1 AC4CA076D570366ED9998AA3A1DE896C1CDEB1D4 )
)
game (
name "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl)"
description "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl)"
rom ( name "Eggsavier's Cackleberry Rescue (World) (v1.0) (Aftermarket) (Unl).lyx" size 262144 crc 67FBF545 md5 899D80C0DBC016E8B3B830E69E31C19D sha1 88DFD421E795B3434762DB9D7EB9FB38D7AA7DDE )
)
game (
name "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl)"
description "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl).lnx" size 524352 crc 9AFF55CA md5 055F8D70F6A118776149D57D904D3629 sha1 538F827F3B33F9CE72C39ACFC8C9AE3FF59E70FA )
)
game (
name "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl)"
description "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl)"
rom ( name "Eggsavier's Cackleberry Rescue (World) (v1.1) (Aftermarket) (Unl).lyx" size 524288 crc 3240E8C4 md5 C5F313F1C5060D1CA40209B32BFE5560 sha1 E5FBCDDA795AAD9D42C3A6A7D8AB737E6AC5C668 )
)
game (
name "Electrocop (World)"
description "Electrocop (World)"
rom ( name "Electrocop (World).lyx" size 131072 crc BD97116B md5 C49CA94A908DB219224C6D5BAA206AB6 sha1 5BD6614BC98A882EC2F465278FE4F1ED6A4E972B )
)