forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommodore - Amiga.dat
20336 lines (16947 loc) · 683 KB
/
Commodore - Amiga.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
clrmamepro (
name "Commodore - Amiga - WHDLoad"
description "Commodore - Amiga - WHDLoad"
date "2023-02-13"
author "libretro"
comment "Retroplay"
)
game (
name "1000cc Turbo (Europe)"
description "1000cc Turbo (Europe)"
rom ( name "1000ccTurbo_v1.0.lha" size 207532 crc 33067126 sha1 6997ff430c6381d7fe46b78ea37a6a2c0bdcdb71 )
)
game (
name "1000 Miglia - 1927-1933 Volume 1 (Europe)"
description "1000 Miglia - 1927-1933 Volume 1 (Europe)"
rom ( name "1000Miglia_v1.2.lha" size 779415 crc 754B8A10 sha1 2a82b5f47c00de451ea14ca9fe82880a79c08a7f )
)
game (
name "1869 - History Experience Part I (Europe) (AGA)"
description "1869 - History Experience Part I (Europe) (AGA)"
rom ( name "1869_v1.0_AGA.lha" size 1839850 crc 505BE129 sha1 b93b0f7096d32c3aeb24b49390a8787d3bc41a63 )
)
game (
name "1869 - History Experience Part I (Germany) (AGA)"
description "1869 - History Experience Part I (Germany) (AGA)"
rom ( name "1869_v1.0_De_AGA_1653.lha" size 1841278 crc 47BD143D sha1 92c9eb7c945bfb2bec87cd637c32a2e53baf3b27 )
)
game (
name "1869 - History Experience Part I (Europe)"
description "1869 - History Experience Part I (Europe)"
rom ( name "1869_v1.2.lha" size 1347194 crc E5528301 sha1 d46efad47f75ab570cf2f6a99fa8a82b9815c386 )
)
game (
name "1869 - History Experience Part I (Germany)"
description "1869 - History Experience Part I (Germany)"
rom ( name "1869_v1.2_De_0417.lha" size 1347664 crc B9E2FB36 sha1 5eb989b3be6318870d956b045b72e5618cd62bd6 )
)
game (
name "1869 - History Experience Part I (Poland)"
description "1869 - History Experience Part I (Poland)"
rom ( name "1869_v1.2_Pl.lha" size 1347393 crc 9A74B3F4 sha1 af43b70e194d2910826d1bb4617be1ffce4e0d85 )
)
game (
name "1943 - The Battle of Midway (Europe)"
description "1943 - The Battle of Midway (Europe)"
rom ( name "1943_v1.3.lha" size 209712 crc CF7FFB99 sha1 5b5b883c600f865478c7346915b841c6cd4509ac )
)
game (
name "1st Division Manager (Europe)"
description "1st Division Manager (Europe)"
rom ( name "1stDivisionManager_v1.0_1800.lha" size 260492 crc 004E50D9 sha1 793cde4e8984c86b64c11eb754f6f9f6f65fe4ba )
)
game (
name "20 000 Leagues Under the Sea (Europe)"
description "20 000 Leagues Under the Sea (Europe)"
rom ( name "20000LeaguesUnderTheSea_v0.4.lha" size 473382 crc CA07600E sha1 df2f43c020cab48ebdb212c1a1f2f5a938fd9a57 )
)
game (
name "3001 O'Connor's Fight (Europe)"
description "3001 O'Connor's Fight (Europe)"
rom ( name "3001OConnorsFight_v1.0.lha" size 147007 crc EF826734 sha1 7368b9d90a238be01b994603ed02a939cf8e2e00 )
)
game (
name "3D Construction Kit (Europe)"
description "3D Construction Kit (Europe)"
rom ( name "3DConstructionKit_v1.0_1765.lha" size 240329 crc DDC267BC sha1 1f4d185e8d8bb867e0d2093431ebfff7c4fdce26 )
)
game (
name "3D Galax (Europe)"
description "3D Galax (Europe)"
rom ( name "3DGalax_v1.0_1085.lha" size 277687 crc 84E96B2A sha1 b015e8813fcca4eba28cf0f54e8a74e730896386 )
)
game (
name "3D Pool (Europe)"
description "3D Pool (Europe)"
rom ( name "3DPool_v1.2_0621.lha" size 284993 crc 52AAA918 sha1 7b9fd79599497231c6d9859068dc4ca764622871 )
)
game (
name "3D World Soccer (Europe)"
description "3D World Soccer (Europe)"
rom ( name "3DWorldSoccer_v1.0.lha" size 1497761 crc 74C1F56D sha1 2b214c26987db5536821988c9fe33c98df3f2762 )
)
game (
name "3D World Tennis (Europe)"
description "3D World Tennis (Europe)"
rom ( name "3DWorldTennis_v1.0_2224.lha" size 631670 crc F08B9446 sha1 59a970dcbbd8074e2d688fe633a477d9a21c9978 )
)
game (
name "4D Sports Boxing (Europe)"
description "4D Sports Boxing (Europe)"
rom ( name "4DSportsBoxing_v1.2_0421.lha" size 486738 crc AC816E29 sha1 d0754c2137f9c87b6ab06453e8b57e8402279079 )
)
game (
name "4D Sports Driving Master Tracks I (Europe)"
description "4D Sports Driving Master Tracks I (Europe)"
rom ( name "4DSportsDriving&MasterTracks_v1.0_1461.lha" size 912508 crc 1D8C7A3F sha1 4396e05097950ab91fa832ba340129c1644b0a35 )
)
game (
name "4D Sports Driving (Europe)"
description "4D Sports Driving (Europe)"
rom ( name "4DSportsDriving_v1.0_1461.lha" size 907326 crc 0CB2C962 sha1 3c254ed51503105a76831a161e900c2dd0d15d92 )
)
game (
name "4th & Inches (Europe)"
description "4th & Inches (Europe)"
rom ( name "4th&Inches_v1.1_1230.lha" size 187359 crc 911DBA07 sha1 37e24f5e72fbc8fc518360e8b1dd2ed160e145b7 )
)
game (
name "4x4 Off-Road Racing (USA)"
description "4x4 Off-Road Racing (USA)"
rom ( name "4x4OffRoadRacing_v1.0_NTSC_1480.lha" size 366249 crc 03DE47A6 sha1 3e3c10fff7873264ded9456c217ad550284db28f )
)
game (
name "5th Gear (Europe)"
description "5th Gear (Europe)"
rom ( name "5thGear_v1.0_1001.lha" size 444558 crc 181C10D7 sha1 de0423323b4b4150d4595c504a22b5c8ab171292 )
)
game (
name "688 Attack Sub (Europe)"
description "688 Attack Sub (Europe)"
rom ( name "688AttackSub_v1.2_0093.lha" size 484300 crc 4AC6F39C sha1 6123f6e3cd63f5fc3287e5306b3ac2f03f0a3b64 )
)
game (
name "7 Colors (Europe) (En,Fr,De,Es,It)"
description "7 Colors (Europe) (En,Fr,De,Es,It)"
rom ( name "7Colors_v1.1_0956.lha" size 246830 crc A8336422 sha1 3b9609c588d56c83f52b82a3d95b67ee9dc3132d )
)
game (
name "9 Lives (Europe)"
description "9 Lives (Europe)"
rom ( name "9Lives_v1.0.lha" size 560143 crc DA478E57 sha1 70981d349d715f7cf3218892c98992d361560f39 )
)
game (
name "A-10 Tank Killer (2 Disk) (Europe)"
description "A-10 Tank Killer (2 Disk) (Europe)"
rom ( name "A10TankKiller_v2.0_2Disk_1396.lha" size 906728 crc 914623D7 sha1 7f19c4e6bef29af991ddc736b4ce63cb941e80b7 )
)
game (
name "A-10 Tank Killer (Europe)"
description "A-10 Tank Killer (Europe)"
rom ( name "A10TankKiller_v2.0_3Disk.lha" size 1835853 crc FDCAEC68 sha1 e3587869de432f33d4f7eba60b33cec490fabc3c )
)
game (
name "AAARGH! (Arcadia) (Europe)"
description "AAARGH! (Arcadia) (Europe)"
rom ( name "Aaargh!_v0.1_Arcadia.lha" size 677038 crc CDD9419E sha1 7ff80d99ff66d5ad6667f7880ac85f0ec7c9b02c )
)
game (
name "AAARGH! (Europe)"
description "AAARGH! (Europe)"
rom ( name "Aaargh!_v1.0a_0511.lha" size 513362 crc E46CC5EA sha1 341d0ff55ca82066e908060808c24716ed1d1a63 )
)
game (
name "Abandoned Places 2 (Europe)"
description "Abandoned Places 2 (Europe)"
rom ( name "AbandonedPlaces2_v2.0.lha" size 2975982 crc 72D5863F sha1 c060e37208e78e3a783dde8deb5d15552efa19fb )
)
game (
name "Abandoned Places - A Time for Heroes (Europe)"
description "Abandoned Places - A Time for Heroes (Europe)"
rom ( name "AbandonedPlaces_v1.3_1000.lha" size 3789038 crc D0395F89 sha1 ca66889af248d79f1b0687c83f9ff3faf1e67b18 )
)
game (
name "Abandoned Places - A Time for Heroes (Germany)"
description "Abandoned Places - A Time for Heroes (Germany)"
rom ( name "AbandonedPlaces_v1.3_De_0999.lha" size 3792468 crc ABC6A160 sha1 08d8293b5ff0df9b02ffb8b1969c05d7333d25f6 )
)
game (
name "Abandoned Places - A Time for Heroes (Spain)"
description "Abandoned Places - A Time for Heroes (Spain)"
rom ( name "AbandonedPlaces_v1.3_Es.lha" size 3648576 crc A5724719 sha1 c4a72c2c73b88e79756577dc60e8dad9e6c9eb1b )
)
game (
name "ABC Monday Night Football (USA)"
description "ABC Monday Night Football (USA)"
rom ( name "ABCMondayNightFootball_v1.01_NTSC_1495.lha" size 1525187 crc 251AF4B9 sha1 f0adef06c52f4b6852fa7aaa84f53d1eedf07c75 )
)
game (
name "Abracadabra (Europe)"
description "Abracadabra (Europe)"
rom ( name "Abracadabra_v1.1_2451.lha" size 943669 crc C041E4AA sha1 34db03ba407961adc1afbda32189f001cf5ca97f )
)
game (
name "Academy - Tau Ceti II (Europe)"
description "Academy - Tau Ceti II (Europe)"
rom ( name "Academy_v1.1.lha" size 130112 crc D4E90399 sha1 8b77ee73dc8f5bb5a4bf6cb5ce6f4c97fd2d2268 )
)
game (
name "Ace Ball (Poland)"
description "Ace Ball (Poland)"
rom ( name "AceBall_v1.0_Pl.lha" size 441781 crc E8D8EA92 sha1 13a5facfff9df5ac6386cfcce0c3a9b135cdd69c )
)
game (
name "Ace Ball (Poland) (AGA)"
description "Ace Ball (Poland) (AGA)"
rom ( name "AceBall_v1.0_Pl_AGA.lha" size 784660 crc E3327936 sha1 997dc0d8fc14b4e99cbdffbb48487a5ef29fffbd )
)
game (
name "ACSYS - Autonomous Cybernetic System (Europe) (AGA) (Demo)"
description "ACSYS - Autonomous Cybernetic System (Europe) (AGA) (Demo)"
rom ( name "ACSYSDemo_v1.11_AGA.lha" size 640044 crc 7089CD51 sha1 ce9654de055160cde0d8aafd2cdc2aea3fef3ff4 )
)
game (
name "Action Fighter (Europe)"
description "Action Fighter (Europe)"
rom ( name "ActionFighter_v1.3.1_1243.lha" size 163817 crc 0CA32B82 sha1 a6def9b3054faa26687d4beb0a2f0bb5251a5d5d )
)
game (
name "Addams Family, The (Europe)"
description "Addams Family, The (Europe)"
rom ( name "AddamsFamily_v1.3_0419.lha" size 748319 crc 4476D5FB sha1 a54a35018bb1d7928de291f70a0adae7cf94b0a4 )
)
game (
name "Adrenalynn (Europe)"
description "Adrenalynn (Europe)"
rom ( name "Adrenalynn_v1.1a.lha" size 434136 crc 1432F1BD sha1 26d7daa442e8cd6db3493b1c83b58a785de442dc )
)
game (
name "ADS - Advanced Destroyer Simulator (Europe)"
description "ADS - Advanced Destroyer Simulator (Europe)"
rom ( name "AdvancedDestroyerSimulator_v1.0_2151.lha" size 241777 crc 9760D3FD sha1 a52d266b6bd4e69235982a48a00a5988d6724cf7 )
)
game (
name "Advanced Ski Simulator (Europe)"
description "Advanced Ski Simulator (Europe)"
rom ( name "AdvancedSkiSimulator_v1.1_0094.lha" size 567083 crc 11582336 sha1 e68f8bc7b6b100561b857998484833c0605e37bf )
)
game (
name "Advantage Tennis (Europe)"
description "Advantage Tennis (Europe)"
rom ( name "AdvantageTennis_v1.0.lha" size 588113 crc 88E1F4E9 sha1 d732bfb2179b262721019009d2e2f17096067e32 )
)
game (
name "Adventure Construction Set (USA)"
description "Adventure Construction Set (USA)"
rom ( name "AdventureConstructionSet_v1.1_NTSC_0904.lha" size 474200 crc 19DDDC46 sha1 74b7db638eac2e885dabf367d5341f78f66f570b )
)
game (
name "Adventures of Genlock Holmes, The (MicroEd) (Europe)"
description "Adventures of Genlock Holmes, The (MicroEd) (Europe)"
rom ( name "AdventuresOfGenlockHolmes_v1.0.lha" size 241293 crc 0847DE93 sha1 3286724780bf321908057c058755e6b020a284f1 )
)
game (
name "Adventures of Quik and Silva, The (Europe)"
description "Adventures of Quik and Silva, The (Europe)"
rom ( name "AdventuresOfQuik&Silva_v1.1.lha" size 269828 crc 37DE8C7E sha1 8807d26284334f07a11868313827779d9920e42c )
)
game (
name "Adventures of Robin Hood, The (Europe)"
description "Adventures of Robin Hood, The (Europe)"
rom ( name "AdventuresOfRobinHood_v1.1.lha" size 781333 crc 6D3D09CD sha1 f85d1b202a50a07e1120a7a1de4cc4c4afc11b03 )
)
game (
name "Adventures of Willy Beamish, The (Europe)"
description "Adventures of Willy Beamish, The (Europe)"
rom ( name "AdventuresOfWillyBeamish_v1.2_1814.lha" size 6885694 crc E2FC5E0D sha1 1d9c34e9aa1a80c985ea1394285dd6ac2424a2cc )
)
game (
name "African Raiders-01 (Europe)"
description "African Raiders-01 (Europe)"
rom ( name "AfricanRaiders01_v1.01_1169.lha" size 256936 crc 3DE26561 sha1 098853b931afb374aa228765902a724be8c78903 )
)
game (
name "After Burner (Activision) (Europe)"
description "After Burner (Activision) (Europe)"
rom ( name "AfterBurner_v1.0_0095.lha" size 834571 crc DD662BF0 sha1 68a17f1a5c0dc029929d14442231ab5dc7b0c414 )
)
game (
name "After Burner (Sega) (USA)"
description "After Burner (Sega) (USA)"
rom ( name "AfterBurner_v1.4_NTSC_0947.lha" size 827315 crc C1288608 sha1 2460c87dbc7b78501230102e6af8cdc9bd8c6a2a )
)
game (
name "After the War (Europe)"
description "After the War (Europe)"
rom ( name "AfterTheWar_v1.3_1084.lha" size 805743 crc E506F912 sha1 4ad8aec04b80daf4912426eeeee111e5ff1448f8 )
)
game (
name "A.G.E. - Advanced Galactic Empire (Europe) (En,Fr,De,Es,It)"
description "A.G.E. - Advanced Galactic Empire (Europe) (En,Fr,De,Es,It)"
rom ( name "AGE_v1.2.lha" size 805980 crc 08B9A23E sha1 531d8c2cc9d302ac5a1dd6f78d46a80686ac6c77 )
)
game (
name "Agony (Europe)"
description "Agony (Europe)"
rom ( name "Agony_v2.1_0960.lha" size 2303123 crc D57EB8F9 sha1 e7d8b1b2e11c0cfe8a54c1f90d89450b14172214 )
)
game (
name "Agony (USA)"
description "Agony (USA)"
rom ( name "Agony_v2.1_NTSC_2701.lha" size 2303167 crc 461382BF sha1 f8ac25895ea2a84fcf3e1105c8f9b724636ab15d )
)
game (
name "Agony (Europe) (Demo)"
description "Agony (Europe) (Demo)"
rom ( name "AgonyDemo_v1.1.lha" size 815801 crc 547A270C sha1 7489ac1163a0888115a350e93e38d719668c257c )
)
game (
name "Aigle d'Or - Le Retour, L' (France)"
description "Aigle d'Or - Le Retour, L' (France)"
rom ( name "AigleDOr_v1.1_Fr_2600.lha" size 1563863 crc 55B9AA66 sha1 8c603e8ec30561c6d18d803b52849bc1fb1dbd47 )
)
game (
name "Airball (Europe)"
description "Airball (Europe)"
rom ( name "Airball_v1.1.lha" size 352166 crc BADBFB9A sha1 64af7bea5cfb9e6d8ecf664728ce2fd418c9da10 )
)
game (
name "Airborne Ranger (Europe)"
description "Airborne Ranger (Europe)"
rom ( name "AirborneRanger_v1.1_0100.lha" size 428085 crc 609A0937 sha1 dc3cd73ed5f9ec72e08420664e269df3835ae440 )
)
game (
name "Air Support (Europe)"
description "Air Support (Europe)"
rom ( name "AirSupport_v1.1_1320.lha" size 842057 crc 6C4AABFB sha1 2dcba06581bbc9760ff3889d6c9c161fbe241bf7 )
)
game (
name "Air Support (USA)"
description "Air Support (USA)"
rom ( name "AirSupport_v1.1_NTSC_1325.lha" size 843038 crc C17A2557 sha1 3125046c56e141a298deb5ef1ed30fabcf4a967c )
)
game (
name "Akira (Europe)"
description "Akira (Europe)"
rom ( name "Akira_v1.2.lha" size 2222057 crc E675E255 sha1 968bf988c7b6d2ecd8be97081545e344698561de )
)
game (
name "Akira (Europe) (CD32)"
description "Akira (Europe) (CD32)"
rom ( name "Akira_v1.2_CD32.lha" size 5476000 crc 6D5B64A0 sha1 81540b452a9709852c4f4a7d2ca5ac3afffa081a )
)
game (
name "Aladdin (Europe) (AGA)"
description "Aladdin (Europe) (AGA)"
rom ( name "Aladdin_v1.7_AGA_0420.lha" size 1982160 crc 154146AE sha1 aafd52f82bf09dd4be55b00749e7928d1f2a7c30 )
)
game (
name "Alcatraz (Europe)"
description "Alcatraz (Europe)"
rom ( name "Alcatraz_v1.3_2073.lha" size 1020005 crc F3B60DFA sha1 7c0197761e2af6c5a9ec06ca31b31935127a5812 )
)
game (
name "Alchemy (Unreleased) (Europe) (Demo)"
description "Alchemy (Unreleased) (Europe) (Demo)"
rom ( name "AlchemyDemo_v1.0.lha" size 286711 crc 70E2EDE8 sha1 6b9b3fcd88890e13406ec266eb026bfc82774141 )
)
game (
name "Alfabet Śmierci (Poland) (AGA)"
description "Alfabet Śmierci (Poland) (AGA)"
rom ( name "AlfabetSmierci_v1.0a_AGA_Pl.lha" size 2889974 crc 35279C34 sha1 a42d8a12f69feb6914602a04a8d5f22a96554117 )
)
game (
name "Alfred Chicken (Europe) (AGA)"
description "Alfred Chicken (Europe) (AGA)"
rom ( name "AlfredChicken_v1.01_AGA_0623.lha" size 558646 crc 44B8ED2B sha1 63a87df19d1281a7aef740d2c560e3674f2957c5 )
)
game (
name "Alfred Chicken (Europe) (CD32)"
description "Alfred Chicken (Europe) (CD32)"
rom ( name "AlfredChicken_v1.01_CD32.lha" size 569176 crc 58377B59 sha1 3437a9df9b0324c5508971233b991d592429477a )
)
game (
name "Alfred Chicken (Europe)"
description "Alfred Chicken (Europe)"
rom ( name "AlfredChicken_v1.0_0422.lha" size 586880 crc 3750996E sha1 e3c8cc3a20d10e13f021c67677a3d84ab24e0e32 )
)
game (
name "Alien³ (Europe)"
description "Alien³ (Europe)"
rom ( name "Alien3_v2.1_0261.lha" size 1552709 crc B03095EB sha1 a02e37aa72bd6eecd3aa732bd88fbbfabd861c16 )
)
game (
name "Alianator (Europe)"
description "Alianator (Europe)"
rom ( name "Alienator_v1.0_1905.lha" size 220644 crc 5D45DD5E sha1 eb5ea2b399a04598ca2941d0e8d0ce2adf1269d7 )
)
game (
name "Alien Bash II (Europe)"
description "Alien Bash II (Europe)"
rom ( name "AlienBash2_v1.2.lha" size 569416 crc 8F112AD7 sha1 75bd030263de13a4a510eefdf49ed1cdec1a52cc )
)
game (
name "Alien Bash (Europe)"
description "Alien Bash (Europe)"
rom ( name "AlienBash_v1.0.lha" size 119936 crc CBC596FD sha1 48ee0455b607da42408a9099e1df55aaa748e4d8 )
)
game (
name "Alien Breed II - The Horror Continues (Europe)"
description "Alien Breed II - The Horror Continues (Europe)"
rom ( name "AlienBreed2_v1.4_0278.lha" size 2815582 crc 0B5EBEFD sha1 1d000090bc9f2a4818b43fcecbcea7c1647460af )
)
game (
name "Alien Breed II - The Horror Continues (Europe) (AGA)"
description "Alien Breed II - The Horror Continues (Europe) (AGA)"
rom ( name "AlienBreed2_v1.4_AGA_0044.lha" size 2826399 crc C7C638BF sha1 39a2af01c8cce51cf0aeda4b48a3cbf26f7e5c0f )
)
game (
name "Alien Breed 3D II - The Killing Grounds (Europe) (AGA)"
description "Alien Breed 3D II - The Killing Grounds (Europe) (AGA)"
rom ( name "AlienBreed3D2_v1.1_AGA_0280.lha" size 1918704 crc 495ACBD2 sha1 d9a1a1f82ac848c531443b45d7d541e7d256c2ee )
)
game (
name "Alien Breed 3D (Europe) (AGA)"
description "Alien Breed 3D (Europe) (AGA)"
rom ( name "AlienBreed3D_v1.2_AGA_0624.lha" size 1638904 crc F1C4F788 sha1 f4210972334715f45a2464252d425c6511855625 )
)
game (
name "Alien Breed 3D (Europe) (CD32)"
description "Alien Breed 3D (Europe) (CD32)"
rom ( name "AlienBreed3D_v1.2_CD32.lha" size 1643126 crc 8463AF32 sha1 f25cf4c52464f9c1d5235388913445fc4c7706ca )
)
game (
name "Alien Breed 3D (No Music) (Europe) (AGA)"
description "Alien Breed 3D (No Music) (Europe) (AGA)"
rom ( name "AlienBreed3D_v1.2_NoMusic_AGA_0624.lha" size 1530440 crc 0320F5BC sha1 0bbc89e65a77a0450ee5186076f6954459b53ed6 )
)
game (
name "Alien Breed 3D (No Music) (Europe) (CD32)"
description "Alien Breed 3D (No Music) (Europe) (CD32)"
rom ( name "AlienBreed3D_v1.2_NoMusic_CD32.lha" size 1534619 crc E6A2C677 sha1 3b012a3b76ef69abde76cd7d4acea29cb84a627c )
)
game (
name "Alien Breed 3D (Europe) (AGA) (Demo)"
description "Alien Breed 3D (Europe) (AGA) (Demo)"
rom ( name "AlienBreed3DDemoLatestDemo_v1.0_AGA.lha" size 663644 crc 134460C8 sha1 d9d46792f60860842f3d53a16d57b4605f26c85b )
)
game (
name "Alien Breed 3D (Europe) (AGA) (Demo)"
description "Alien Breed 3D (Europe) (AGA) (Demo)"
rom ( name "AlienBreed3DDemoPlayableDemo_v1.0_AGA.lha" size 443638 crc D8B5BB53 sha1 69fe0d3ca9bc1affc84b8465503e77e4b5502a18 )
)
game (
name "Alien Breed 3D (Europe) (AGA) (Demo)"
description "Alien Breed 3D (Europe) (AGA) (Demo)"
rom ( name "AlienBreed3DDemoRollingDemo_v1.0_AGA.lha" size 357151 crc F835D487 sha1 1ad25da549357bd0523d0d298ff2c6d0ecd8b879 )
)
game (
name "Alien Breed (Europe)"
description "Alien Breed (Europe)"
rom ( name "AlienBreed_v2.3a_0998.lha" size 1595499 crc FFF0BF1E sha1 9aa6724131263425368c9fb7599fb70f33873001 )
)
game (
name "Alien Breed - Special Edition 92 (Europe)"
description "Alien Breed - Special Edition 92 (Europe)"
rom ( name "AlienBreedSpecialEdition_v1.0_0615.lha" size 1196440 crc F6F69A17 sha1 3099858bb663e7f16ebbcd52c876a385be655daf )
)
game (
name "Alien Breed Story (Europe)"
description "Alien Breed Story (Europe)"
rom ( name "AlienBreedStory_v1.1_0998.lha" size 795755 crc 3ABE92B5 sha1 2f52776b4a7a751c0da4dd57a9579994b748257d )
)
game (
name "Alien Breed - Tower Assault (Europe)"
description "Alien Breed - Tower Assault (Europe)"
rom ( name "AlienBreedTowerAssault_v1.3_2331.lha" size 2931495 crc 64E99DB7 sha1 739d3f969c227a65cf10a7507828d19d2253667a )
)
game (
name "Alien Breed - Tower Assault (Europe) (AGA)"
description "Alien Breed - Tower Assault (Europe) (AGA)"
rom ( name "AlienBreedTowerAssault_v1.3_AGA_2331.lha" size 2931987 crc 91D5D8AC sha1 0899b69f2b171c7dfc636a15afacdf7b5e0130ac )
)
game (
name "Alien Breed - Tower Assault (Europe) (CD32)"
description "Alien Breed - Tower Assault (Europe) (CD32)"
rom ( name "AlienBreedTowerAssault_v1.3_CD32.lha" size 1935414 crc BF9F0E27 sha1 f564cf7c901e243ce365e6a7b91ab5da3a626955 )
)
game (
name "Alien Drug Lords - The Chyropian Connection (Europe)"
description "Alien Drug Lords - The Chyropian Connection (Europe)"
rom ( name "AlienDrugLords_v1.0_1004.lha" size 1723109 crc 1B6C1336 sha1 b9d3fe33308917d7cb0d1260aa50ab7657015c92 )
)
game (
name "Alien Fish Finger (Europe)"
description "Alien Fish Finger (Europe)"
rom ( name "AlienFishFinger_v1.0.lha" size 213312 crc 321037A0 sha1 2c4254696c912cf9c1976858c29ef0b3beaf770d )
)
game (
name "Alien Legion (Europe)"
description "Alien Legion (Europe)"
rom ( name "AlienLegion_v1.0.lha" size 314869 crc 48E2FC98 sha1 531b079a2f1039b532d8f5d706dacf39c27c7fca )
)
game (
name "Alien Storm (Europe)"
description "Alien Storm (Europe)"
rom ( name "AlienStorm_v1.4_0096.lha" size 453453 crc 9B853478 sha1 d93e98a326c47fe5e3b1762cd8390b8d780835b2 )
)
game (
name "Alien Syndrome (USA)"
description "Alien Syndrome (USA)"
rom ( name "AlienSyndrome_v1.2_NTSC_2353.lha" size 269523 crc D6C8959C sha1 fd7dd278256a7a84f08e2c8e18b96786541e41c3 )
)
game (
name "Alien World (Europe)"
description "Alien World (Europe)"
rom ( name "AlienWorld_v1.0_1398.lha" size 636198 crc 2A841C22 sha1 94257ad7dfb1c1b5c916da64863f55d9a1f83064 )
)
game (
name "Aliex (Europe)"
description "Aliex (Europe)"
rom ( name "Aliex_v1.1.lha" size 336496 crc E149580D sha1 69540abac0919e0b1b1c242daf353f992391b197 )
)
game (
name "Allan Border's Cricket (Europe)"
description "Allan Border's Cricket (Europe)"
rom ( name "AllanBordersCricket_v1.0.lha" size 582418 crc 73F8AEEE sha1 e43848a3518a3aff7f1950622832aa97ab3b9547 )
)
game (
name "All New World of Lemmings (Europe) (AGA)"
description "All New World of Lemmings (Europe) (AGA)"
rom ( name "AllNewWorldOfLemmings_v1.0_AGA_0625.lha" size 2424590 crc FC99483D sha1 b8917503e62444b876a1912b8dd67effeb4b7517 )
)
game (
name "'Allo 'Allo - Cartoon Fun! (Europe)"
description "'Allo 'Allo - Cartoon Fun! (Europe)"
rom ( name "AlloAllo_v1.0.lha" size 1139829 crc ACE98030 sha1 83e2111eb291ea911e5ec0789b772718de222bb0 )
)
game (
name "ATR - All Terrain Racing (Europe)"
description "ATR - All Terrain Racing (Europe)"
rom ( name "AllTerrainRacing_v1.2.lha" size 649072 crc 9AF4141D sha1 d47515627b95b8bb5970751f0166fa617b40b427 )
)
game (
name "ATR - All Terrain Racing Christmas Edition (Europe) (Demo)"
description "ATR - All Terrain Racing Christmas Edition (Europe) (Demo)"
rom ( name "AllTerrainRacingXmasDemo_v1.3.lha" size 398708 crc A2CBE550 sha1 1b708b1f54987026d3032277105399fb9bb24af0 )
)
game (
name "Alpha-1 (Europe)"
description "Alpha-1 (Europe)"
rom ( name "Alpha1_v1.0_1921.lha" size 136951 crc FBD26D42 sha1 4f41fc71c67a9852fe16e25c069be544c4132f57 )
)
game (
name "Alpha Waves (Europe)"
description "Alpha Waves (Europe)"
rom ( name "AlphaWaves_v1.0_0626.lha" size 227865 crc C2BED176 sha1 dca8bd8d2f1e509a320a32e24c13951ff33dc93f )
)
game (
name "Altered Beast (Europe)"
description "Altered Beast (Europe)"
rom ( name "AlteredBeast_v2.0_0819.lha" size 675422 crc 85C9C6A3 sha1 7dbb3cc774edbb7fa65118da0e6b0c7e5b9cc721 )
)
game (
name "Altered Destiny (Europe)"
description "Altered Destiny (Europe)"
rom ( name "AlteredDestiny_v1.1b_0237.lha" size 3701202 crc 3CFE63FD sha1 505e68b4d3ee965d49054365fe1b620766e988b8 )
)
game (
name "Amazing Spider-Man, The (Europe) (En,Fr,De,Es,It)"
description "Amazing Spider-Man, The (Europe) (En,Fr,De,Es,It)"
rom ( name "AmazingSpiderMan_v2.0_1006.lha" size 288970 crc 368E778B sha1 6cc46f92db40288934fd770b85005138bba7cf89 )
)
game (
name "Amazing Spider-Man, The (USA)"
description "Amazing Spider-Man, The (USA)"
rom ( name "AmazingSpiderMan_v2.0_NTSC.lha" size 286583 crc B8B9E4C7 sha1 df434e9f02e9e3060b8e348ecf981554de055a40 )
)
game (
name "Ambermoon (Europe)"
description "Ambermoon (Europe)"
rom ( name "Ambermoon_v2.0.lha" size 6094044 crc CEDE8011 sha1 467498408dbc76b4356e83a37cb1111f3d5ff6eb )
)
game (
name "Ambermoon (Germany)"
description "Ambermoon (Germany)"
rom ( name "Ambermoon_v2.0_De.lha" size 6072814 crc D3265FBB sha1 14cf0a78a4b54dda1f89fd94606f559c5837cc86 )
)
game (
name "Amberstar (Europe)"
description "Amberstar (Europe)"
rom ( name "Amberstar_v1.2_1969.lha" size 1510527 crc 54FF2F96 sha1 4187e5f9f259b85053a7ab1b8de4720e199708fd )
)
game (
name "Amberstar (Germany)"
description "Amberstar (Germany)"
rom ( name "Amberstar_v1.2_De.lha" size 1523635 crc 44FE750E sha1 7d93276e96e8491af45081f4dd8414d245982839 )
)
game (
name "Amberstar (Fast) (Germany)"
description "Amberstar (Fast) (Germany)"
rom ( name "Amberstar_v1.2_De_Fast.lha" size 1523802 crc 0C3D1B4C sha1 49bef560baee0d0a758cd0228bfd16b629a32a9b )
)
game (
name "Amberstar (Fast) (Europe)"
description "Amberstar (Fast) (Europe)"
rom ( name "Amberstar_v1.2_Fast_1969.lha" size 1510685 crc 964D3B7E sha1 42cc3a9aa58ab476de4263925362de4d99ece254 )
)
game (
name "Amegas (Europe)"
description "Amegas (Europe)"
rom ( name "Amegas_v1.0_1655.lha" size 384638 crc 8FF80DB4 sha1 3b55ece34a8ef62367de5eea674c26e3b37aa75d )
)
game (
name "American Gladiators (Europe)"
description "American Gladiators (Europe)"
rom ( name "AmericanGladiators_v1.2.lha" size 1527169 crc F6D41B62 sha1 9c83718fdb1bc19e7cc4c961bdb1b29956abca07 )
)
game (
name "American Poker (Poland)"
description "American Poker (Poland)"
rom ( name "AmericanPoker_v1.0_Pl.lha" size 836379 crc 9417BD83 sha1 21451b5d39cd9997a75ec25782df137dff420b46 )
)
game (
name "American Tag-Team Wrestling (Europe)"
description "American Tag-Team Wrestling (Europe)"
rom ( name "AmericanTagTeamWrestling_v1.0_2211.lha" size 422986 crc 9A076BD1 sha1 7a5f1f6db0315a63fe90aced09132c2e53c1f3f1 )
)
game (
name "Amiga Karate (USA)"
description "Amiga Karate (USA)"
rom ( name "AmigaKarate_v2.1_NTSC_0045.lha" size 588419 crc C2090061 sha1 c358ec391f2294378160f12bad3e75ab028e54df )
)
game (
name "AmiRobbo (Poland)"
description "AmiRobbo (Poland)"
rom ( name "AmiRobbo_v1.0_Pl.lha" size 351077 crc 3F8690A0 sha1 af343849342c4ff02a2c344b138ca9cee7eb467f )
)
game (
name "Amnios (Europe)"
description "Amnios (Europe)"
rom ( name "Amnios_v1.3_0423.lha" size 1451078 crc B3B53F35 sha1 d97d5e3838d47887c8928131d8ae514ab8c231cc )
)
game (
name "Anarchy (Europe)"
description "Anarchy (Europe)"
rom ( name "Anarchy_v1.5.lha" size 935461 crc 6D53A089 sha1 72c87a7c93f002ae2b066a3807e2a75ace59d428 )
)
game (
name "Ancient Art of War in the Skies, The (Europe)"
description "Ancient Art of War in the Skies, The (Europe)"
rom ( name "AncientArtOfWarInTheSkies_v1.0_1666.lha" size 2063086 crc 7A440793 sha1 7f65928e41912f44b755b597a22d02924dbf0510 )
)
game (
name "Another World (Europe)"
description "Another World (Europe)"
rom ( name "AnotherWorld_v2.4_0425.lha" size 994984 crc AD184D5F sha1 6996e93d543fde5944a7789039ce73310d143753 )
)
game (
name "Another World (France)"
description "Another World (France)"
rom ( name "AnotherWorld_v2.4_Fr_2377.lha" size 995008 crc 5F7AA79E sha1 604972744dff543f3ab27a7c8d7dfec289915be3 )
)
game (
name "Another World (Italy)"
description "Another World (Italy)"
rom ( name "AnotherWorld_v2.4_It.lha" size 991080 crc 1027E081 sha1 a1bd7bacb48a89fba945931a8d247a98e4d6cee8 )
)
game (
name "Anstoss (Germany)"
description "Anstoss (Germany)"
rom ( name "Anstoss_v1.2_De_0798.lha" size 2450148 crc B11C9BAD sha1 efcdebad62e796968c02143f407a695580b9c58d )
)
game (
name "Antago (Europe)"
description "Antago (Europe)"
rom ( name "Antago_v1.1_0857.lha" size 284630 crc A01E24F9 sha1 4fadc26cab5a91cdb4e059307fe574ab911cba1a )
)
game (
name "Antares - Der Griff Nach Den Sternen (Germany)"
description "Antares - Der Griff Nach Den Sternen (Germany)"
rom ( name "AntaresDerGriffNachDenSternen_v1.0_De.lha" size 1828283 crc 252E4635 sha1 d4b7ef3bc56b933bfbdb8763226857516c00fcfb )
)
game (
name "Apache + Overdrive (Europe) (Demo)"
description "Apache + Overdrive (Europe) (Demo)"
rom ( name "Apache&OverdriveDemo_v1.1_0426.lha" size 935428 crc FD582C7B sha1 bed38ad593c099db7bb41b64bc4c823be2144ffc )
)
game (
name "Apache Flight (Europe)"
description "Apache Flight (Europe)"
rom ( name "ApacheFlight_v1.0.lha" size 278101 crc 302E9BC1 sha1 6b8367828848bd5bb3d1f58344568aa6adbc9f98 )
)
game (
name "Apano Sin (Europe)"
description "Apano Sin (Europe)"
rom ( name "ApanoSin_v1.3.lha" size 4517816 crc EAB4DAB8 sha1 93392ce46eb6a021ba5e8c34684292c3d12c481d )
)
game (
name "Apano Sin (Germany)"
description "Apano Sin (Germany)"
rom ( name "ApanoSin_v1.3_De.lha" size 4517829 crc 43876DE8 sha1 62854f6772fdbe3d874b87da3c6f4d7dac8e384e )
)
game (
name "APB (Europe)"
description "APB (Europe)"
rom ( name "APB_v1.1_Files_1708.lha" size 414465 crc B50ABEB6 sha1 aa8ff120ab799427674274cf7cbc15b8f0bcdeb0 )
)
game (
name "APB (Image) (Europe)"
description "APB (Image) (Europe)"
rom ( name "APB_v1.1_Image_1240.lha" size 459903 crc A63C998F sha1 3c02f2963c4602a9a23a82fa86971a1893330892 )
)
game (
name "Apidya (Audios) (Europe)"
description "Apidya (Audios) (Europe)"
rom ( name "Apidya_v2.05_Audios_2465.lha" size 1628364 crc 5E391298 sha1 0ab897aa36ccdd2bb5ec8c9c8a37858ade79bbd4 )
)
game (
name "Apidya (Europe)"
description "Apidya (Europe)"
rom ( name "Apidya_v2.05_Kaiko_0764.lha" size 1622182 crc BDF5E98B sha1 facc9b3ebc56417571a2710355a02bf4a85ae383 )
)
game (
name "Apocalypse (Europe)"
description "Apocalypse (Europe)"
rom ( name "Apocalypse_v1.0_1813.lha" size 1669256 crc 5119303E sha1 361a82c1e68de708e04d75a36031f35c80c10de8 )
)
game (
name "Apple Hunt (Ecthelion) (Europe)"
description "Apple Hunt (Ecthelion) (Europe)"
rom ( name "AppleHunt_v1.0.lha" size 125055 crc 2C1E4861 sha1 89dcd6317de8e1aecd6715fd6627c13cbc38e588 )
)
game (
name "Apprentice (Europe)"
description "Apprentice (Europe)"
rom ( name "Apprentice_v1.3_2288.lha" size 876074 crc 2B3147C7 sha1 39d97b0d129136ce9afe6f0adc290ef81701f0e6 )
)
game (
name "Aquablast (USA)"
description "Aquablast (USA)"
rom ( name "Aquablast_v1.1_NTSC.lha" size 556538 crc 4622E031 sha1 7951354ebde65afc1306383c61a23bb16db60708 )
)
game (
name "Aquanaut (F1 Licenceware) (Europe)"
description "Aquanaut (F1 Licenceware) (Europe)"
rom ( name "Aquanaut_v1.3.1_F1Licenceware.lha" size 440725 crc A4DC68D0 sha1 af3b94db90c35bf4ef675ece7c4aec3757c4d871 )
)
game (
name "Aquatic Games Starring James Pond and the Aquabats, The (Europe)"
description "Aquatic Games Starring James Pond and the Aquabats, The (Europe)"
rom ( name "AquaticGames_v1.1a_1351.lha" size 374797 crc 7EB98A3F sha1 8ee4e722ce2377a3659ffe44ea10d0072891362e )
)
game (
name "Aquaventura (Europe)"
description "Aquaventura (Europe)"
rom ( name "Aquaventura_v1.3_0427.lha" size 1419424 crc 0F856A5E sha1 2383b0ff09cde811b3f85fdf0476fce67d4998e0 )
)
game (
name "Aquaventura (USA)"
description "Aquaventura (USA)"
rom ( name "Aquaventura_v1.3_NTSC_2330.lha" size 1420000 crc 2C8F8634 sha1 ed1c8ab840563834f6435a80089bd78dd51da418 )
)
game (
name "Arabian Nights (Europe)"
description "Arabian Nights (Europe)"
rom ( name "ArabianNights_v1.4_1454.lha" size 1334033 crc E37BFA37 sha1 7918d5a5acd381e6161819705d11eeb88096e19e )
)
game (
name "Arabian Nights (Europe) (CD32)"
description "Arabian Nights (Europe) (CD32)"
rom ( name "ArabianNights_v1.4_CD32.lha" size 1326756 crc AF9F005B sha1 cf54e73d550016804cf4d93f52a62f53ae743cc9 )
)
game (
name "Arachnophobia (Europe)"
description "Arachnophobia (Europe)"
rom ( name "Arachnophobia_v1.0.lha" size 1232616 crc 30611042 sha1 a98c77f19576e362538d44bf12e272124d1bb5a0 )
)
game (
name "Arcade Fruit Machine (Europe)"
description "Arcade Fruit Machine (Europe)"
rom ( name "ArcadeFruitMachine_v1.0.lha" size 400593 crc 1EC9F817 sha1 04294df53abac3dfc362b2ee9a7a6233a0dabefb )
)
game (
name "Arcade Pool (Europe)"
description "Arcade Pool (Europe)"
rom ( name "ArcadePool_v3.0_0298.lha" size 683446 crc 19097A51 sha1 21431328839e45c90da3b5379fe0dc7b03cb89c8 )
)
game (
name "Arcade Pool (Europe) (AGA)"
description "Arcade Pool (Europe) (AGA)"
rom ( name "ArcadePool_v3.0_AGA_0298.lha" size 683482 crc 4011A846 sha1 e5c7b584470e8a0effb159fbdfe5240610d26c8a )
)
game (
name "Arcade Pool (Europe) (CD32)"
description "Arcade Pool (Europe) (CD32)"
rom ( name "ArcadePool_v3.0_CD32.lha" size 538849 crc 0C4B1A7C sha1 c5ef4ceb433c1cebf651a2b828d553ed931734e9 )
)
game (
name "Arcade Snooker (Europe) (AGA)"
description "Arcade Snooker (Europe) (AGA)"
rom ( name "ArcadeSnooker_v1.1_AGA.lha" size 385517 crc 0769F06E sha1 9109ffe454c74f3fb75f05b874ea5098b65391fd )
)
game (
name "Arcade Trivia Quiz (Europe)"
description "Arcade Trivia Quiz (Europe)"
rom ( name "ArcadeTriviaQuiz_v1.2_0936.lha" size 181432 crc F6158171 sha1 3cce3a311df8acc9fcfd8fc71440fb80a3bebbb6 )
)
game (
name "Billard Americain (Europe)"
description "Billard Americain (Europe)"
rom ( name "ArcherMacLeansBillardAmericain_v1.2.lha" size 221466 crc 5D827474 sha1 6daef347ec5256805b689b5e92066e1c99de0c87 )
)
game (
name "Archer Maclean's Pool (Europe)"
description "Archer Maclean's Pool (Europe)"
rom ( name "ArcherMacLeansPool_v1.2_1096.lha" size 220089 crc C84EB697 sha1 3985f6e1ca76a5b926fd8fb8ba5e449c1025a92d )
)
game (
name "Archipelagos (Europe)"
description "Archipelagos (Europe)"
rom ( name "Archipelagos_v1.2_0627.lha" size 158625 crc 045BD9EC sha1 2735b0cbabc4d68311351da86a503c3c45f7973e )
)
game (
name "Archipelagos (USA)"
description "Archipelagos (USA)"
rom ( name "Archipelagos_v1.2_NTSC_0628.lha" size 165778 crc 902F690D sha1 ba381a75ad3f6882859db6e4c875c85532da8f83 )
)
game (
name "Archon II - Adept (USA)"
description "Archon II - Adept (USA)"
rom ( name "Archon2_v1.1_NTSC_0905.lha" size 484450 crc 63818AF9 sha1 890b129de38525d28e6c6957da95819f0a58282d )
)
game (
name "Archon - The Light and the Dark (USA)"
description "Archon - The Light and the Dark (USA)"
rom ( name "Archon_v1.2_NTSC_0914.lha" size 432980 crc 7D8D782B sha1 ed4ab773830aca76a2553a4fb8883133fea02f43 )
)
game (
name "Arctic Fox (Europe)"
description "Arctic Fox (Europe)"
rom ( name "Arcticfox_v1.2.lha" size 360696 crc 1BDA04F5 sha1 22ee76395af33b8d38746a95ad1f8b1f0e18b596 )
)
game (
name "Arctic Fox (USA)"
description "Arctic Fox (USA)"
rom ( name "Arcticfox_v1.2_NTSC_0909.lha" size 355627 crc 60CEBB59 sha1 f686264aa46a6d1ade971b32ade7215d861d3f13 )
)
game (
name "Arena (Europe)"
description "Arena (Europe)"
rom ( name "Arena_v1.2.lha" size 324355 crc A30FA461 sha1 76df7e440b9903cf0378e9d8b67e663aca6e3e8e )
)
game (
name "Arkanoid (Europe)"