forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnterprise - 128.dat
16623 lines (14694 loc) · 729 KB
/
Enterprise - 128.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 "Enterprise - 128"
description "Enterprise 128 custom converted from TOSEC, genres from World of Spectrum"
version "2024.02.09"
homepage "http://github.com/robloach/libretro-dats"
)
game (
name "007 - Licence to Kill (Domark)[h Sandor, G.][ZX Spectrum]"
description "007 - Licence to Kill (Domark)[h Sandor, G.][ZX Spectrum]"
releaseyear "1989"
publisher "Domark"
rom ( name "007 - Licence to Kill (1989)(Domark)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc BDE31837 md5 19e329e39ab931560e6416edff329fd4 sha1 011e7ac750636236121f39eb19565987a854de68 )
)
game (
name "007 - The Living Daylights (Domark)(GB)[h Attus][ZX Spectrum]"
description "007 - The Living Daylights (Domark)(GB)[h Attus][ZX Spectrum]"
releaseyear "1987"
publisher "Domark"
region "United Kingdom"
rom ( name "007 - The Living Daylights (1987)(Domark)(GB)[h Attus][unreleased][ZX Spectrum].com" crc 3D1E9373 md5 d69f28bbd6440135798795a62eb9b304 sha1 22441f1bb2a9dc4ec5dd35853ea736b24b601986 )
)
game (
name "10th Frame (U.S. Gold)[h Attus][a][ZX Spectrum]"
description "10th Frame (U.S. Gold)[h Attus][a][ZX Spectrum]"
releaseyear "1987"
publisher "U.S. Gold"
genre "Sport: Action"
rom ( name "10th Frame (1987)(U.S. Gold)[h Attus][a][unreleased][ZX Spectrum].com" crc 17FC6714 md5 b82e2f0ef2bde10c73a3f4503612d0fe sha1 9e38b09352a3c36068ff377c791a864e76f7de18 )
)
game (
name "10th Frame (U.S. Gold)[h Attus][ZX Spectrum]"
description "10th Frame (U.S. Gold)[h Attus][ZX Spectrum]"
releaseyear "1987"
publisher "U.S. Gold"
genre "Sport: Action"
rom ( name "10th Frame (1987)(U.S. Gold)[h Attus][unreleased][ZX Spectrum].COM" crc 63E7E0CC md5 38a51d1a94162c8c85281ce2308ed251 sha1 f7b84acc81b2c36d34e11915ebc4b04888f1a954 )
)
game (
name "10th Frame (U.S. Gold)[h Attus][ZX Spectrum][EP-Compression]"
description "10th Frame (U.S. Gold)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1987"
publisher "U.S. Gold"
genre "Sport: Action"
rom ( name "10th Frame (1987)(U.S. Gold)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 1A7C0575 md5 a9a2b91489592d7bb2ccc1c21885b01e sha1 aab08a41a1639ae65b28861cd7951c1361778ac6 )
)
game (
name "180 (Mastertronic Added Dimension)[h BAM][ZX Spectrum]"
description "180 (Mastertronic Added Dimension)[h BAM][ZX Spectrum]"
releaseyear "1986"
publisher "Mastertronic Added Dimension"
genre "Sport: Action"
rom ( name "180 (1986)(Mastertronic Added Dimension)[h BAM][unreleased][ZX Spectrum].com" crc 2334FD53 md5 ae816eb5a6db1ccc4a17b1f80e859327 sha1 eb9d9ce722ff9011dc6ded004e4719c4a40d572a )
)
game (
name "19 Part 1 - Boot Camp (Cascade Games)[h][ZX Spectrum]"
description "19 Part 1 - Boot Camp (Cascade Games)[h][ZX Spectrum]"
releaseyear "1988"
publisher "Cascade Games"
rom ( name "19 Part 1 - Boot Camp (1988)(Cascade Games)[h][unreleased][ZX Spectrum].com" crc 500F5C91 md5 85ea715ebb0cbbd3260ff4c62fd47d46 sha1 cd0f0b9304754636b8845109911449c3d1da7b33 )
)
game (
name "1942 (Elite Systems)[h BAM][t][ZX Spectrum]"
description "1942 (Elite Systems)[h BAM][t][ZX Spectrum]"
releaseyear "1986"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "1942 (1986)(Elite Systems)[h BAM][t][unreleased][ZX Spectrum].COM" crc 3A1F0A9D md5 e1d1cad63b7a217a47b1df36a6ddf306 sha1 1b1c1ca449a9e76e476cb2b682f994783889a99b )
)
game (
name "1942 (Elite Systems)[h BAM][ZX Spectrum]"
description "1942 (Elite Systems)[h BAM][ZX Spectrum]"
releaseyear "1986"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "1942 (1986)(Elite Systems)[h BAM][unreleased][ZX Spectrum].COM" crc 5CD798F9 md5 a4ab681b46f59a0d2d686a87b45c5750 sha1 2a070001431c4e98d56d468df8a43c854bb97810 )
)
game (
name "3D Lunattack (Hewson Consultants)[h Attus][ZX Spectrum]"
description "3D Lunattack (Hewson Consultants)[h Attus][ZX Spectrum]"
releaseyear "1984"
publisher "Hewson Consultants"
genre "Arcade: Shoot-em-up"
rom ( name "3D Lunattack (1984)(Hewson Consultants)[h Attus][unreleased][ZX Spectrum].COM" crc 66452B37 md5 8c54b7a2e0cee47a6e99e27f478e365f sha1 fff2aff838f1f88dc4c0e5322357d207fbc4d056 )
)
game (
name "3D Lunattack (Hewson Consultants)[h Attus][ZX Spectrum][EP-Compression]"
description "3D Lunattack (Hewson Consultants)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1984"
publisher "Hewson Consultants"
genre "Arcade: Shoot-em-up"
rom ( name "3D Lunattack (1984)(Hewson Consultants)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 68759F56 md5 bf477aa1965475852acb7d158e14c7f8 sha1 aaa29d5cda4a705657618b447e2eaf70b930d229 )
)
game (
name "3D Starfighter (Code Masters)[h Coorsore][ZX Spectrum]"
description "3D Starfighter (Code Masters)[h Coorsore][ZX Spectrum]"
releaseyear "1988"
publisher "Code Masters"
genre "Arcade: Shoot-em-up"
rom ( name "3D Starfighter (1988)(Code Masters)[h Coorsore][unreleased][ZX Spectrum].COM" crc 5E0EAF53 md5 59ec654a50f4e23f55b4e0f97b652d62 sha1 35e7b3974e5231e1ec764ff9cc826c84dabeb85d )
)
game (
name "4 Soccer Simulators (Codemasters)[h Bill - Jano]"
description "4 Soccer Simulators (Codemasters)[h Bill - Jano]"
releaseyear "1988"
publisher "Codemasters"
genre "Compilation"
rom ( name "4 Soccer Simulators - Street Soccer (1988)(Codemasters)[h Bill - Jano].COM" crc B5E0C435 md5 f8c004e1e94bdab0ba0dba9cb197055d sha1 b095a7ad00fb0396656fdc28a9549cc22e667893 )
)
game (
name "720 Degrees (U.S. Gold)[h Sandor, G.][ZX Spectrum]"
description "720 Degrees (U.S. Gold)[h Sandor, G.][ZX Spectrum]"
releaseyear "1987"
publisher "U.S. Gold"
genre "Arcade: Action"
rom ( name "720 Degrees (1987)(U.S. Gold)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc B8836B06 md5 8a72574d9cadf3914c3a3585806c3407 sha1 cd508aa7344a7e7fb0f5b0423c8f4245438be7c6 )
)
game (
name "720 Degrees (U.S. Gold)[h Zozosoft][ZX Spectrum]"
description "720 Degrees (U.S. Gold)[h Zozosoft][ZX Spectrum]"
releaseyear "1987"
publisher "U.S. Gold"
genre "Arcade: Action"
rom ( name "720 Degrees (1987)(U.S. Gold)[h Zozosoft][unreleased][ZX Spectrum].COM" crc 4BDE980E md5 3a86dd7ad757bff7a915e4b3d9182520 sha1 7f0815331e11b585d0e6b8c6f2585f53c53126e1 )
)
game (
name "A-Team, The (Zafiro Software Division)(es)(Part 1 of 2)[h Attus][ZX Spectrum]"
description "A-Team, The (Zafiro Software Division)(es)(Part 1 of 2)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Zafiro Software Division"
rom ( name "A-Team, The (1988)(Zafiro Software Division)(es)(Part 1 of 2)[h Attus][unreleased][ZX Spectrum].COM" crc B0ACD267 md5 ac5b1834fb52332e016dd7c4f43e01e8 sha1 0d35a2f95445e348b9aeeb444ea00d9fbd754853 )
)
game (
name "A-Team, The (Zafiro Software Division)(es)(Part 1 of 2)[h Attus][ZX Spectrum][EP-Compression]"
description "A-Team, The (Zafiro Software Division)(es)(Part 1 of 2)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Zafiro Software Division"
rom ( name "A-Team, The (1988)(Zafiro Software Division)(es)(Part 1 of 2)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 810552F6 md5 bcd425d9adf7056381ebbaf05488ed6e sha1 bce3fa301c19c54e437261a11fbc6d4c8156146d )
)
game (
name "A-Team, The (Zafiro Software Division)(es)(Part 2 of 2)[h Attus][ZX Spectrum]"
description "A-Team, The (Zafiro Software Division)(es)(Part 2 of 2)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Zafiro Software Division"
rom ( name "A-Team, The (1988)(Zafiro Software Division)(es)(Part 2 of 2)[h Attus][unreleased][ZX Spectrum].COM" crc 6A794983 md5 6edef9b9be2ff893b1b72587cffea261 sha1 857046af2436dc42318fb3a0f2de90d042fa1e96 )
)
game (
name "A-Team, The (Zafiro Software Division)(es)(Part 2 of 2)[h Attus][ZX Spectrum][EP-Compression]"
description "A-Team, The (Zafiro Software Division)(es)(Part 2 of 2)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Zafiro Software Division"
rom ( name "A-Team, The (1988)(Zafiro Software Division)(es)(Part 2 of 2)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc C6A52826 md5 d60603cc5f2c1ede1793ea2f2a766ae8 sha1 e958e3fb6eef3e6fb5d6f348a2ff40a6de8a8979 )
)
game (
name "Abyss (Artificial Intelligence)"
description "Abyss (Artificial Intelligence)"
releaseyear "1985"
publisher "Artificial Intelligence"
genre "Arcade: Adventure"
rom ( name "Abyss (1985)(Artificial Intelligence).COM" crc D11F45AD md5 c7e02749bda0ce19eda40a7d453c0ac4 sha1 06cfe5cada1baec592e5687e42ef3490f6d1a46d )
)
game (
name "Abyss (Artificial Intelligence)[a]"
description "Abyss (Artificial Intelligence)[a]"
releaseyear "1985"
publisher "Artificial Intelligence"
genre "Arcade: Adventure"
rom ( name "Abyss (1985)(Artificial Intelligence)[a].COM" crc 9907E606 md5 6bc66c46f021914402184db531a82c77 sha1 dd99c0a08632ba8a0590402e97b8fbdb234aa58d )
)
game (
name "Academy - Tau Ceti II (CRL Group)[h][a][ZX Spectrum]"
description "Academy - Tau Ceti II (CRL Group)[h][a][ZX Spectrum]"
releaseyear "1987"
publisher "CRL Group"
rom ( name "Academy - Tau Ceti II (1987)(CRL Group)[h][a][unreleased][ZX Spectrum].com" crc 887C0422 md5 14c105fe84273535c69906f79b365ffa sha1 40717bb6e7eb25ee1d4299982e19024535df7496 )
)
game (
name "Academy - Tau Ceti II (CRL Group)[h][ZX Spectrum]"
description "Academy - Tau Ceti II (CRL Group)[h][ZX Spectrum]"
releaseyear "1987"
publisher "CRL Group"
rom ( name "Academy - Tau Ceti II (1987)(CRL Group)[h][unreleased][ZX Spectrum].COM" crc E6E5EF32 md5 8152aa2f3f918ddeb873c6b3ff3ebb31 sha1 2d76b9e4bea0767486e8d07364cc2d93a33a3f72 )
)
game (
name "ACE - Air Combat Emulator (Cascade Games)[h][ZX Spectrum]"
description "ACE - Air Combat Emulator (Cascade Games)[h][ZX Spectrum]"
releaseyear "1986"
publisher "Cascade Games"
rom ( name "ACE - Air Combat Emulator (1986)(Cascade Games)[h][unreleased][ZX Spectrum].COM" crc 233E4274 md5 09dddb20eb227d760ac6b152948f3813 sha1 4c051fefd8446a422df3e9be7b27cd83ad905dd7 )
)
game (
name "Action Force (Virgin Games)[h][t][ZX Spectrum]"
description "Action Force (Virgin Games)[h][t][ZX Spectrum]"
releaseyear "1987"
publisher "Virgin Games"
genre "Arcade: Shoot-em-up"
rom ( name "Action Force (1987)(Virgin Games)[h][t][unreleased][ZX Spectrum].COM" crc 5ABBE8E2 md5 102b84f095f850752156a2d5b6de4556 sha1 43c690dc4c41b392970689b0d53217227f52071c )
)
game (
name "Action Force (Virgin Games)[h][ZX Spectrum]"
description "Action Force (Virgin Games)[h][ZX Spectrum]"
releaseyear "1987"
publisher "Virgin Games"
genre "Arcade: Shoot-em-up"
rom ( name "Action Force (1987)(Virgin Games)[h][unreleased][ZX Spectrum].COM" crc 0205D119 md5 6952e332d6a3f5e2b362e107c3628eda sha1 8b16210352b14953153f8dd00bac787f1e3186a1 )
)
game (
name "Action Force II (Virgin Games)[h Attus][ZX Spectrum]"
description "Action Force II (Virgin Games)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Virgin Games"
genre "Arcade: Shoot-em-up"
rom ( name "Action Force II (1988)(Virgin Games)[h Attus][unreleased][ZX Spectrum].COM" crc 5211ECF8 md5 f5ab007fad6bf8abff0534c3c7947fb2 sha1 1eba2b5c8035b7b9f871de7930b8ffd39c63e939 )
)
game (
name "Action Force II (Virgin Games)[h Attus][ZX Spectrum][EP-Compression]"
description "Action Force II (Virgin Games)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Virgin Games"
genre "Arcade: Shoot-em-up"
rom ( name "Action Force II (1988)(Virgin Games)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 69D1FDCF md5 7d1499fb14e78523773fb50d179f805e sha1 1d882fd7855a84d52d46bfa67daffeb4bd10f6ef )
)
game (
name "Action Reflex (Mirrorsoft)[h BAM][ZX Spectrum]"
description "Action Reflex (Mirrorsoft)[h BAM][ZX Spectrum]"
releaseyear "1986"
publisher "Mirrorsoft"
genre "Arcade: Action"
rom ( name "Action Reflex (1986)(Mirrorsoft)[h BAM][unreleased][ZX Spectrum].COM" crc B2E38036 md5 eaee7711c168d28b5cfb87c8496e7110 sha1 e384d9a74527c8d40dec8f9c6164960dd26ebd68 )
)
game (
name "Advanced Pinball Simulator (Codemasters)[h][ZX Spectrum]"
description "Advanced Pinball Simulator (Codemasters)[h][ZX Spectrum]"
releaseyear "1990"
publisher "Codemasters"
genre "Arcade: Pinball"
rom ( name "Advanced Pinball Simulator (1990)(Codemasters)[h][unreleased][ZX Spectrum].COM" crc 62FD7064 md5 7d06e93aacf22d5dd95cac24001bffd8 sha1 89cb39955eb2ca43bb56dec0116c1542a5b40d27 )
)
game (
name "Adventure Quest (Level 9 Computing)[basic]"
description "Adventure Quest (Level 9 Computing)[basic]"
releaseyear "1984"
publisher "Level 9 Computing"
genre "Adventure: Text"
rom ( name "Adventure Quest (1984)(Level 9 Computing)[basic].BAS" crc E72923B4 md5 275827fcafc3fd2d43386760612b039a sha1 4ee473b6e60d029f3e1ec2d3241c74657fc39b3b )
)
game (
name "African Trail Simulator (Positive)(ES)[h SEM][1991][ZX Spectrum]"
description "African Trail Simulator (Positive)(ES)[h SEM][1991][ZX Spectrum]"
releaseyear "1990"
publisher "Positive"
region "Spain"
genre "Arcade: Race 'n' Chase"
rom ( name "African Trail Simulator (1990)(Positive)(ES)[h SEM][1991][unreleased][ZX Spectrum].com" crc 7DA0C6E5 md5 b15fa1bad698001c2d6eb2b3651c21c4 sha1 12a465d64a0639114eeb9e3a45fc1ff3ae5885c6 )
)
game (
name "After the War - Part 1 (Dinamic Software)(es)[h GunSoft][t][ZX Spectrum]"
description "After the War - Part 1 (Dinamic Software)(es)[h GunSoft][t][ZX Spectrum]"
releaseyear "1989"
publisher "Dinamic Software"
rom ( name "After the War - Part 1 (1989)(Dinamic Software)(es)[h GunSoft][t][unreleased][ZX Spectrum].COM" crc 69F115EF md5 c1319458dbad56e984cfcebfe8beaee6 sha1 9c7a340b3cbd8c447a871dc699a45f7dfc63c1eb )
)
game (
name "Afterburner (Activision)[h][ZX Spectrum]"
description "Afterburner (Activision)[h][ZX Spectrum]"
releaseyear "1988"
publisher "Activision"
genre "Arcade: Shoot-em-up"
rom ( name "Afterburner (1988)(Activision)[h][unreleased][ZX Spectrum].COM" crc 7AA32D00 md5 8b90c0404bcddde4477c077b562b2bee sha1 2d015fc8c6dcce05edd2ca8811acc5fd432e0de6 )
)
game (
name "Agent Orange (A & F Software)[h SEM][1991][ZX Spectrum]"
description "Agent Orange (A & F Software)[h SEM][1991][ZX Spectrum]"
releaseyear "1987"
publisher "A & F Software"
genre "Arcade: Action"
rom ( name "Agent Orange (1987)(A & F Software)[h SEM][1991][unreleased][ZX Spectrum].COM" crc 136A8683 md5 78c6af54aa84f017f5ef4d439e940a2a sha1 9f821481f0eb4768f86b95896b8f46ddff7894b7 )
)
game (
name "Airborne Ranger (Microprose Software)[h SEM][1991][ZX Spectrum]"
description "Airborne Ranger (Microprose Software)[h SEM][1991][ZX Spectrum]"
releaseyear "1988"
publisher "Microprose Software"
genre "Tactical Combat"
rom ( name "Airborne Ranger (1988)(Microprose Software)[h SEM][1991][unreleased][ZX Spectrum].COM" crc 446D3185 md5 b21353760023111040c3c31bcbab7085 sha1 d026f624ba2d87bc69e228e0caf93c56fc15f398 )
)
game (
name "Airbrush (Soft Hits)[h][ZX Spectrum]"
description "Airbrush (Soft Hits)[h][ZX Spectrum]"
releaseyear "1983"
publisher "Soft Hits"
genre "Arcade: Action"
rom ( name "Airbrush (1983)(Soft Hits)[h][unreleased][ZX Spectrum].COM" crc EBF72A7E md5 70bbeca2f1199b8d58f07eabced42159 sha1 ddde7b80e80529d7a3a48701b294c13079d343c3 )
)
game (
name "Airwolf (Elite Systems)"
description "Airwolf (Elite Systems)"
releaseyear "1985"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "Airwolf (1985)(Elite Systems).COM" crc 9FB48B78 md5 6a21ba4bbd2b39947bd8a4786b65217b sha1 a35bb4eb60ad446bc8ed91bfde34a0dd545e44b5 )
)
game (
name "Airwolf (Elite Systems)[a2]"
description "Airwolf (Elite Systems)[a2]"
releaseyear "1985"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "Airwolf (1985)(Elite Systems)[a2].com" crc 7A7012E6 md5 83c602ae4d686bf0344aa04edc5c658f sha1 f23d99fb85c91ae83c78412167e9ad523bf85d4f )
)
game (
name "Airwolf (Elite Systems)[a]"
description "Airwolf (Elite Systems)[a]"
releaseyear "1985"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "Airwolf (1985)(Elite Systems)[a].COM" crc C6BA15EC md5 cf2aa111fa2ca657f14ca2532bf314cc sha1 e8e1f6194fbf04cce19d17ed2a8f5a919c263fcb )
)
game (
name "Airwolf (Elite Systems)[t]"
description "Airwolf (Elite Systems)[t]"
releaseyear "1985"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "Airwolf (1985)(Elite Systems)[t].COM" crc F11C8E6D md5 0ef324f540120a63be4739352739c00b sha1 8c78d6bf022eaeb52f678af67b7af4fb8776a346 )
)
game (
name "Airwolf II (Elite Systems)[h SEM][1991][ZX Spectrum]"
description "Airwolf II (Elite Systems)[h SEM][1991][ZX Spectrum]"
releaseyear "1986"
publisher "Elite Systems"
genre "Arcade: Shoot-em-up"
rom ( name "Airwolf II (1986)(Elite Systems)[h SEM][1991][unreleased][ZX Spectrum].COM" crc 38F4A1F9 md5 6ab175e97ed4a4b19382ace067dd332d sha1 fcfddd14346688d2f05cef3b13b2a2c26396d537 )
)
game (
name "Alchemist (Imagine Software)[h Attus][ZX Spectrum][EP-Compression]"
description "Alchemist (Imagine Software)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1983"
publisher "Imagine Software"
genre "Arcade: Adventure"
rom ( name "Alchemist (1983)(Imagine Software)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc F206C57E md5 6d68ff77f685afb092969f08fe1a78b8 sha1 15fb67e38b3de5e0b3323aac79390ec4f1811a39 )
)
game (
name "Alchemist (Imagine Software)[h][ZX Spectrum]"
description "Alchemist (Imagine Software)[h][ZX Spectrum]"
releaseyear "1983"
publisher "Imagine Software"
genre "Arcade: Adventure"
rom ( name "Alchemist (1983)(Imagine Software)[h][unreleased][ZX Spectrum].COM" crc AB534615 md5 91cace69e157ee068b0c791330774b3c sha1 ab82994f7e4baa332e0249d7c29b79bcc7fb47d1 )
)
game (
name "Alien 8 (Ultimate Play The Game)[h][a][ZX Spectrum]"
description "Alien 8 (Ultimate Play The Game)[h][a][ZX Spectrum]"
releaseyear "1985"
publisher "Ultimate Play The Game"
genre "Arcade: Adventure"
rom ( name "Alien 8 (1985)(Ultimate Play The Game)[h][a][unreleased][ZX Spectrum].COM" crc 653EFB51 md5 cc7af1a0ee5a0536a86b707577ca7f37 sha1 c93f65c064aee492817d5a190bbfb4e2134ab268 )
)
game (
name "Alien 8 (Ultimate Play The Game)[h][ZX Spectrum]"
description "Alien 8 (Ultimate Play The Game)[h][ZX Spectrum]"
releaseyear "1985"
publisher "Ultimate Play The Game"
genre "Arcade: Adventure"
rom ( name "Alien 8 (1985)(Ultimate Play The Game)[h][unreleased][ZX Spectrum].COM" crc 898C5A93 md5 02a36f11a9ea1474b43714162ff84b71 sha1 d52cceff5862c61e8717e751ea6148ab0ac9661a )
)
game (
name "Alien Attack (Mr. X)[h Geco][2006][Amstrad CPC]"
description "Alien Attack (Mr. X)[h Geco][2006][Amstrad CPC]"
releaseyear "1988"
publisher "Mr. X"
genre "Arcade: Shoot-em-up"
rom ( name "Alien Attack (1988)(Mr. X)[h Geco][2006][unreleased][Amstrad CPC].COM" crc D3E5EB29 md5 3e460072e945c684127b4d01b8dd0a8a sha1 9fbbd9dd592543bc4a0cdfd37bf6c68ceeb9c199 )
)
game (
name "Alien Evolution (Gremlin Graphics Software)[h Attus][ZX Spectrum]"
description "Alien Evolution (Gremlin Graphics Software)[h Attus][ZX Spectrum]"
releaseyear "1987"
publisher "Gremlin Graphics Software"
genre "Arcade: Action"
rom ( name "Alien Evolution (1987)(Gremlin Graphics Software)[h Attus][unreleased][ZX Spectrum].COM" crc 58468EDF md5 7a499325a9107fef9e8cb30df793bd5a sha1 c79c43c158bfde100ca6d00a7c957425cc01e805 )
)
game (
name "Alien Evolution (Gremlin Graphics Software)[h Attus][ZX Spectrum][EP-Compression]"
description "Alien Evolution (Gremlin Graphics Software)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1987"
publisher "Gremlin Graphics Software"
genre "Arcade: Action"
rom ( name "Alien Evolution (1987)(Gremlin Graphics Software)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 2D7E2A1C md5 7b602c8da72de48265865eecb3a2bc02 sha1 d4e96d92a6bad18044f2886c58d961ce9389f9a5 )
)
game (
name "Alien Highway - Encounter 2 (Vortex Software)[h Zozosoft - Apuci][1994][ZX Spectrum]"
description "Alien Highway - Encounter 2 (Vortex Software)[h Zozosoft - Apuci][1994][ZX Spectrum]"
releaseyear "1986"
publisher "Vortex Software"
rom ( name "Alien Highway - Encounter 2 (1986)(Vortex Software)[h Zozosoft - Apuci][1994][unreleased][ZX Spectrum].COM" crc DC625EF8 md5 f1ebd071a1935d5224ceceb50df24dfc sha1 a072f6866a6540dbea6cde5b908778231919a92c )
)
game (
name "Altered Beast (Activision)[h GunSoft][t][ZX Spectrum]"
description "Altered Beast (Activision)[h GunSoft][t][ZX Spectrum]"
releaseyear "1989"
publisher "Activision"
genre "Arcade: Gang beat-em-up"
rom ( name "Altered Beast (1989)(Activision)[h GunSoft][t][unreleased][ZX Spectrum].COM" crc B2B69F30 md5 9e22e6c50a7cd5fc620e35df1865ea50 sha1 e4332e2df0191b46742539eb1f960322120faf70 )
)
game (
name "Alternative World Games (A Studio)"
description "Alternative World Games (A Studio)"
releaseyear "1990"
publisher "A Studio"
genre "Sport: Action"
rom ( name "Alternative World Games (1990)(A Studio).COM" crc 95A8A924 md5 49522375a105ee1fd23cd666078965a8 sha1 da5d7af7120fb13523ea61a27b6ef7eb54c9581a )
)
game (
name "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][128K]"
description "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][128K]"
releaseyear "1987"
publisher "Mastertronic Added Dimension"
genre "Arcade: Action"
rom ( name "Amaurote (1987)(Mastertronic Added Dimension)[h Attus][unreleased][ZX Spectrum][128K].COM" crc 5339B50C md5 3868e44e1349d62e967eafd02d094798 sha1 ecf1dd586ef38148d7821f9427a3f906c03c0979 )
)
game (
name "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][128K][EP-Compression]"
description "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][128K][EP-Compression]"
releaseyear "1987"
publisher "Mastertronic Added Dimension"
genre "Arcade: Action"
rom ( name "Amaurote (1987)(Mastertronic Added Dimension)[h Attus][unreleased][ZX Spectrum][128K][EP-Compression].COM" crc C826522A md5 c24996a3f2d6c009b6afdd22711bc63d sha1 9548036f9f0716ae42e114511a0f9ff275e064f6 )
)
game (
name "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][48K]"
description "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][48K]"
releaseyear "1987"
publisher "Mastertronic Added Dimension"
genre "Arcade: Action"
rom ( name "Amaurote (1987)(Mastertronic Added Dimension)[h Attus][unreleased][ZX Spectrum][48K].COM" crc E3329445 md5 4b645e35b3e076f4d77a618e9a6aa086 sha1 89fa47fe666f529c6af007b927db882ca20faaa6 )
)
game (
name "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][48K][EP-Compression]"
description "Amaurote (Mastertronic Added Dimension)[h Attus][ZX Spectrum][48K][EP-Compression]"
releaseyear "1987"
publisher "Mastertronic Added Dimension"
genre "Arcade: Action"
rom ( name "Amaurote (1987)(Mastertronic Added Dimension)[h Attus][unreleased][ZX Spectrum][48K][EP-Compression].COM" crc DBFB35D9 md5 3e250e577286df503653bcafb8f6c7d5 sha1 b778b15aabb5602b5bc619b7388cad9bbc94f6ed )
)
game (
name "Amoto's Puf (SPE)(es)[h Coorsore][ZX Spectrum]"
description "Amoto's Puf (SPE)(es)[h Coorsore][ZX Spectrum]"
releaseyear "1988"
publisher "SPE"
genre "Arcade: Maze"
rom ( name "Amoto's Puf (1988)(SPE)(es)[h Coorsore][unreleased][ZX Spectrum].COM" crc F5EACD53 md5 885961cf4f181441784959e7ea352a41 sha1 d547342a95c446fbc551fe5f8dd21eb47d538eb5 )
)
game (
name "Angel Nieto Pole 500cc (Opera Soft)(es)[h Attus][ZX Spectrum]"
description "Angel Nieto Pole 500cc (Opera Soft)(es)[h Attus][ZX Spectrum]"
releaseyear "1990"
publisher "Opera Soft"
rom ( name "Angel Nieto Pole 500cc (1990)(Opera Soft)(es)[h Attus][unreleased][ZX Spectrum].COM" crc FF25E283 md5 8877f5795853bbc8e9e3361aa0b7e9ed sha1 447ddb1fba7f21ff46786da62bdd82e93d028f54 )
)
game (
name "Animal Vegetable Mineral (Bourne Educational)(hu)[basic]"
description "Animal Vegetable Mineral (Bourne Educational)(hu)[basic]"
releaseyear "1985"
publisher "Bourne Educational"
rom ( name "Animal Vegetable Mineral (1985)(Bourne Educational)(hu)[basic].BAS" crc 8F27E155 md5 a22cb643674af707e125321273dcd78b sha1 8c50aba5109cc5ee2c77a754de14fda7d1405fd5 )
)
game (
name "Animal Vegetable Mineral (Bourne Educational)[basic]"
description "Animal Vegetable Mineral (Bourne Educational)[basic]"
releaseyear "1985"
publisher "Bourne Educational"
rom ( name "Animal Vegetable Mineral (1985)(Bourne Educational)[basic].BAS" crc D9D44DEB md5 d17819f78436852dd02c7dab6be709a5 sha1 99b6c3eed0afd3907f12437c8d4a9c0b8c9ebe54 )
)
game (
name "Aquaplane (Quicksilva)[h Attus][ZX Spectrum]"
description "Aquaplane (Quicksilva)[h Attus][ZX Spectrum]"
releaseyear "1983"
publisher "Quicksilva"
genre "Arcade: Action"
rom ( name "Aquaplane (1983)(Quicksilva)[h Attus][unreleased][ZX Spectrum].com" crc C1AA0B3E md5 7edaaa2a06e195cb60b9df415d0108fb sha1 3a534743ffe79b2cf1e18b4120b35f2195a949a0 )
)
game (
name "Arcadia (Imagine Software)[h][ZX Spectrum]"
description "Arcadia (Imagine Software)[h][ZX Spectrum]"
releaseyear "1982"
publisher "Imagine Software"
genre "Compilation"
rom ( name "Arcadia (1982)(Imagine Software)[h][unreleased][ZX Spectrum].COM" crc D8EAC138 md5 ada564ecf6948d0561910f3ca1439f27 sha1 09270fc1b240c8e34ee05afbfa9056162683bac3 )
)
game (
name "Archon II - Adept (Electronic Arts)[h Jano][ZX Spectrum]"
description "Archon II - Adept (Electronic Arts)[h Jano][ZX Spectrum]"
releaseyear "1989"
publisher "Electronic Arts"
rom ( name "Archon II - Adept (1989)(Electronic Arts)[h Jano][unreleased][ZX Spectrum].COM" crc 2192086C md5 fe9c09621a2fdbc8f936a58b1fd49bf2 sha1 d996645185f72a5bd46f8c5bce69de704ab08c94 )
)
game (
name "Arkanoid II - Revenge of Doh (Imagine Software)[h Sandor, G.][ZX Spectrum]"
description "Arkanoid II - Revenge of Doh (Imagine Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1988"
publisher "Imagine Software"
rom ( name "Arkanoid II - Revenge of Doh (1988)(Imagine Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 253A1240 md5 1c743d88aa694138787f961d35769cf6 sha1 e52c01b9583ab006caceb8f9e6bece3d1fbefc59 )
)
game (
name "Arkos (Zigurat Software)(es)(Part 2 of 3)[h Attus][ZX Spectrum]"
description "Arkos (Zigurat Software)(es)(Part 2 of 3)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Zigurat Software"
genre "Arcade: Action"
rom ( name "Arkos (1988)(Zigurat Software)(es)(Part 2 of 3)[h Attus][unreleased][ZX Spectrum].COM" crc E33F881E md5 cee1fa72d51c600bb352bf11d3085db3 sha1 17f49babfd3d7f883e644fe4a6ceb517aaa4d50c )
)
game (
name "Arkos (Zigurat Software)(es)(Part 2 of 3)[h Attus][ZX Spectrum][EP-Compression]"
description "Arkos (Zigurat Software)(es)(Part 2 of 3)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Zigurat Software"
genre "Arcade: Action"
rom ( name "Arkos (1988)(Zigurat Software)(es)(Part 2 of 3)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc C9D65B28 md5 3677fc39bfae26baa7df0759d5400263 sha1 c38027260f6680e734986cfac18dc6537b7ee024 )
)
game (
name "Arkos (Zigurat Software)(es)(Part 3 of 3)[h Attus][ZX Spectrum]"
description "Arkos (Zigurat Software)(es)(Part 3 of 3)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Zigurat Software"
genre "Arcade: Action"
rom ( name "Arkos (1988)(Zigurat Software)(es)(Part 3 of 3)[h Attus][unreleased][ZX Spectrum].COM" crc 7BD431A0 md5 cbc690648c7d9f3ea60cf10c3da153b3 sha1 2139d18340dfa0dd227380f66b256f7f6ad19cae )
)
game (
name "Arkos (Zigurat Software)(es)(Part 3 of 3)[h Attus][ZX Spectrum][EP-Compression]"
description "Arkos (Zigurat Software)(es)(Part 3 of 3)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Zigurat Software"
genre "Arcade: Action"
rom ( name "Arkos (1988)(Zigurat Software)(es)(Part 3 of 3)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc F4B67298 md5 949f5daae471db0449762cfa3a1766ec sha1 badeb36f421fcd6f72c3f79d9ae0dc688ebf6d10 )
)
game (
name "Armageddon (Ocean Software)[h BeZo][ZX Spectrum]"
description "Armageddon (Ocean Software)[h BeZo][ZX Spectrum]"
releaseyear "1983"
publisher "Ocean Software"
genre "Arcade: Shoot-em-up"
rom ( name "Armageddon (1983)(Ocean Software)[h BeZo][unreleased][ZX Spectrum].COM" crc 1747AC04 md5 d5fa8f0f24cec11e382ea20c86507c9a sha1 ea928621b3548c471a468e5ab54d96a14966d4f6 )
)
game (
name "Army Moves (Dinamic Software)(es)[h][ZX Spectrum]"
description "Army Moves (Dinamic Software)(es)[h][ZX Spectrum]"
releaseyear "1986"
publisher "Dinamic Software"
genre "Arcade: Shoot-em-up"
rom ( name "Army Moves (1986)(Dinamic Software)(es)[h][unreleased][ZX Spectrum].COM" crc 0682531D md5 a08cfdd47b93e16e718e8d2f9892de67 sha1 3ae1748bbea96fb4e3e23409dc075be7c44ae854 )
)
game (
name "Arnhem (CCS)(hu)[h][ZX Spectrum]"
description "Arnhem (CCS)(hu)[h][ZX Spectrum]"
releaseyear "1985"
publisher "CCS"
genre "Strategy: War"
rom ( name "Arnhem (1985)(CCS)(hu)[h][unreleased][ZX Spectrum].COM" crc 2A9EFF4A md5 7e73dbbb3749ffb9c64a99cbacd02dff sha1 3e16655d2a20c9f5c9465d65f5acf0885fd0be7e )
)
game (
name "Arnhem (CCS)[h][ZX Spectrum]"
description "Arnhem (CCS)[h][ZX Spectrum]"
releaseyear "1985"
publisher "CCS"
genre "Strategy: War"
rom ( name "Arnhem (1985)(CCS)[h][unreleased][ZX Spectrum].COM" crc E885880B md5 bcb89be513868bb0966f853a1772fe51 sha1 6feee3f6719ba7555c7129903ee7186d99ac1771 )
)
game (
name "Asterix and the Magic Cauldron (Melbourne House)[h Sandor, G.][t][ZX Spectrum]"
description "Asterix and the Magic Cauldron (Melbourne House)[h Sandor, G.][t][ZX Spectrum]"
releaseyear "1986"
publisher "Melbourne House"
genre "Arcade: Adventure"
rom ( name "Asterix and the Magic Cauldron (1986)(Melbourne House)[h Sandor, G.][t][unreleased][ZX Spectrum].COM" crc 2250A582 md5 84ad20b03ea1213c40ab8e9ba14a9ad3 sha1 6ef5ab844190864e91b5f52d8d4540249e31f913 )
)
game (
name "Asterix and the Magic Cauldron (Melbourne House)[h Sandor, G.][ZX Spectrum]"
description "Asterix and the Magic Cauldron (Melbourne House)[h Sandor, G.][ZX Spectrum]"
releaseyear "1986"
publisher "Melbourne House"
genre "Arcade: Adventure"
rom ( name "Asterix and the Magic Cauldron (1986)(Melbourne House)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 9F039CB8 md5 69e6f25ffd4a4a21f41a8dc87467e347 sha1 dbea4249725fbee32e262b5fc9f1fc8c678a7541 )
)
game (
name "Astro Blaster (Quicksilva)[h][ZX Spectrum]"
description "Astro Blaster (Quicksilva)[h][ZX Spectrum]"
releaseyear "1983"
publisher "Quicksilva"
genre "Arcade: Shoot-em-up"
rom ( name "Astro Blaster (1983)(Quicksilva)[h][unreleased][ZX Spectrum].COM" crc 333003BC md5 15f99dd16ea504c46231c8e42c58cd7b sha1 e5cd26ce679fb1537a3f66b728a9297458f11e64 )
)
game (
name "Astronut (Software Projects)[h Attus][ZX Spectrum]"
description "Astronut (Software Projects)[h Attus][ZX Spectrum]"
releaseyear "1984"
publisher "Software Projects"
genre "Arcade: Platform"
rom ( name "Astronut (1984)(Software Projects)[h Attus][unreleased][ZX Spectrum].com" crc 0C96756D md5 158e7e18b7de9a3210719d0ada618476 sha1 9ccffb47bd62f6443ad90d978865b5e0f208b758 )
)
game (
name "ATF - Advanced Tactical Fighter (Digital Integration)[h Attus][ZX Spectrum]"
description "ATF - Advanced Tactical Fighter (Digital Integration)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Digital Integration"
rom ( name "ATF - Advanced Tactical Fighter (1988)(Digital Integration)[h Attus][unreleased][ZX Spectrum].com" crc 94BB3F43 md5 6c6ad5a7d69aa73c27e5180aa329dce8 sha1 15de85a433d6a5723f55eb9eefc66935c7579bca )
)
game (
name "ATF - Advanced Tactical Fighter (Digital Integration)[h IstvanV][t][2010][Amstrad CPC]"
description "ATF - Advanced Tactical Fighter (Digital Integration)[h IstvanV][t][2010][Amstrad CPC]"
releaseyear "1988"
publisher "Digital Integration"
rom ( name "ATF - Advanced Tactical Fighter (1988)(Digital Integration)[h IstvanV][t][2010][unreleased][Amstrad CPC].COM" crc 7ACE0814 md5 3a7076a2db341c36bf0572ee8bcb7e12 sha1 b42b86c17c0d23081f240b08949381b06d157b34 )
)
game (
name "Athena (Imagine Software)[h Sandor, G.][ZX Spectrum]"
description "Athena (Imagine Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1987"
publisher "Imagine Software"
genre "Arcade: Platform"
rom ( name "Athena (1987)(Imagine Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc D7C70527 md5 2cfa723ec1ad891334963a8fd8af6c89 sha1 e3166f73d9d0b17361923157e0ef07a8dec4bebb )
)
game (
name "Atic Atac (Ultimate Play The Game)[h Attus][ZX Spectrum]"
description "Atic Atac (Ultimate Play The Game)[h Attus][ZX Spectrum]"
releaseyear "1983"
publisher "Ultimate Play The Game"
genre "Arcade: Adventure"
rom ( name "Atic Atac (1983)(Ultimate Play The Game)[h Attus][unreleased][ZX Spectrum].COM" crc FFD12477 md5 414f1fee36cd30b1cd668f2a9a654fd0 sha1 cc54a2e107411abfbf653d88ba36753fef9e8d02 )
)
game (
name "Atic Atac (Ultimate Play The Game)[h Attus][ZX Spectrum][EP-Compression]"
description "Atic Atac (Ultimate Play The Game)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1983"
publisher "Ultimate Play The Game"
genre "Arcade: Adventure"
rom ( name "Atic Atac (1983)(Ultimate Play The Game)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 89FB2CEC md5 67081ef4015103938f5e60866175fada sha1 87274fc7447fac43527eea3ee215e5fa6a06b893 )
)
game (
name "Atom Ant (Hi-Tec Software)[h][ZX Spectrum]"
description "Atom Ant (Hi-Tec Software)[h][ZX Spectrum]"
releaseyear "1990"
publisher "Hi-Tec Software"
genre "Arcade: Action"
rom ( name "Atom Ant (1990)(Hi-Tec Software)[h][unreleased][ZX Spectrum].COM" crc C5ADBC03 md5 7a7c18d139034ac1cd24d98d484dd4b4 sha1 f005b9fd7307ef7c0ebc38c701338a938a71a0a1 )
)
game (
name "Atomix (PoviSoft)"
description "Atomix (PoviSoft)"
releaseyear "2006"
publisher "PoviSoft"
genre "Puzzle"
rom ( name "Atomix (2006)(PoviSoft).COM" crc B8AE3484 md5 222d228aededcd0142823b1ff849a47f sha1 e54a775e13d56039f6a71ecc83c333df15fd0189 )
)
game (
name "Attores v1.0 (Novotrade)"
description "Attores v1.0 (Novotrade)"
releaseyear ""
publisher "Novotrade"
rom ( name "Attores v1.0 (198x)(Novotrade).COM" crc 022DAC93 md5 0b94390ed1abc4a2c05126efb84aa527 sha1 478769fa3aadea8030103beedb0a9600472f18d2 )
)
game (
name "Attores v2.0 (Novotrade)"
description "Attores v2.0 (Novotrade)"
releaseyear ""
publisher "Novotrade"
rom ( name "Attores v2.0 (198x)(Novotrade).COM" crc BF5E857F md5 af0d0a2bb7789a3411ab6991968a5ced sha1 4118673cb8df35230710dc9a2000f801aee85434 )
)
game (
name "ATV Simulator - All Terrain Vehicle (Codemasters)[h Attus][ZX Spectrum]"
description "ATV Simulator - All Terrain Vehicle (Codemasters)[h Attus][ZX Spectrum]"
releaseyear "1987"
publisher "Codemasters"
rom ( name "ATV Simulator - All Terrain Vehicle (1987)(Codemasters)[h Attus][unreleased][ZX Spectrum].COM" crc 4E68862B md5 eadc1e9e6ec912d87a4bcb43a5caff24 sha1 e75be1b9e63ebec1430941158dbe39d14e44480c )
)
game (
name "ATV Simulator - All Terrain Vehicle (Codemasters)[h Attus][ZX Spectrum][EP-Compression]"
description "ATV Simulator - All Terrain Vehicle (Codemasters)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1987"
publisher "Codemasters"
rom ( name "ATV Simulator - All Terrain Vehicle (1987)(Codemasters)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc 24C3A601 md5 6e06f5869dd42fd3c6f1d8e09818e870 sha1 5bf6764ecbff023f9e8de70caf1320e298a44c76 )
)
game (
name "Auf Wiedersehen Monty (Gremlin Graphics Software)[h Sandor, G.][ZX Spectrum]"
description "Auf Wiedersehen Monty (Gremlin Graphics Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1987"
publisher "Gremlin Graphics Software"
genre "Arcade: Platform"
rom ( name "Auf Wiedersehen Monty (1987)(Gremlin Graphics Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 8225AE8A md5 a2fd8bfdde2ca46f12a069bb3e4f9158 sha1 4fdb3e41b33a5540746f616454903834ae9aa100 )
)
game (
name "Automania (Mikro-Gen)[h BAM][ZX Spectrum]"
description "Automania (Mikro-Gen)[h BAM][ZX Spectrum]"
releaseyear "1985"
publisher "Mikro-Gen"
genre "Arcade: Platform"
rom ( name "Automania (1985)(Mikro-Gen)[h BAM][unreleased][ZX Spectrum].COM" crc FAC14F45 md5 61353cfe03c9d793d5c672a803766256 sha1 da5b8d49303d5f6b42852ed2e34676008e3c2828 )
)
game (
name "Autoverseny (RLS)(hu)[req zrom][basic]"
description "Autoverseny (RLS)(hu)[req zrom][basic]"
releaseyear "2000"
publisher "RLS"
rom ( name "Autoverseny (2000)(RLS)(hu)(PD)[req zrom][basic].BAS" crc 4F2B14C4 md5 62f6d3b58c4240405ff972f9d5842987 sha1 35314cdfe8d916ba7e602894af71d0a53a51f005 )
)
game (
name "Avalon (Hewson Consultants)[h Attus][ZX Spectrum]"
description "Avalon (Hewson Consultants)[h Attus][ZX Spectrum]"
releaseyear "1984"
publisher "Hewson Consultants"
genre "Arcade: Adventure"
rom ( name "Avalon (1984)(Hewson Consultants)[h Attus][unreleased][ZX Spectrum].COM" crc D25BF3DB md5 275ad9b48c0ca00eafb1b4829b934d49 sha1 3e6a940cbd2c1358d5a1668461f17214e32cb6a2 )
)
game (
name "Avenger (Gremlin Graphics Software)[h Jano - Bill][1989][ZX Spectrum]"
description "Avenger (Gremlin Graphics Software)[h Jano - Bill][1989][ZX Spectrum]"
releaseyear "1986"
publisher "Gremlin Graphics Software"
genre "Arcade: Maze"
rom ( name "Avenger (1986)(Gremlin Graphics Software)[h Jano - Bill][1989][unreleased][ZX Spectrum].COM" crc 7BDC505D md5 327234793ac0baec37f1b1dcc39a6416 sha1 7c97768a2b3c1918f26a8cb6db850f261e789df4 )
)
game (
name "Back to the Future III (Image Works)[h][ZX Spectrum]"
description "Back to the Future III (Image Works)[h][ZX Spectrum]"
releaseyear "1991"
publisher "Image Works"
rom ( name "Back to the Future III (1991)(Image Works)[h][unreleased][ZX Spectrum].COM" crc 050FDDE2 md5 41c129e9f23e1de39e48cca5d61f0f0e sha1 a80ceb4033817275fa250fc90246c9c7e23f23fc )
)
game (
name "Backgammon (Sinclair Research)[h GISO 93 ][ZX Spectrum]"
description "Backgammon (Sinclair Research)[h GISO 93 ][ZX Spectrum]"
releaseyear "1983"
publisher "Sinclair Research"
genre "Board Game"
rom ( name "Backgammon (1983)(Sinclair Research)[h GISO 93 ][unreleased][ZX Spectrum].COM" crc 3967FF22 md5 9b710f8de374f82759310077d456c344 sha1 0783c70001b383fc83133879aefe1026596da759 )
)
game (
name "Ball Breaker (CRL Group)[h Attus][ZX Spectrum]"
description "Ball Breaker (CRL Group)[h Attus][ZX Spectrum]"
releaseyear "1987"
publisher "CRL Group"
genre "Arcade: Action"
rom ( name "Ball Breaker (1987)(CRL Group)[h Attus][unreleased][ZX Spectrum].COM" crc E2AD8EEA md5 728c43f49e93cdf2938eb8b2c68979e6 sha1 d2145b196eb956d21b39c705df2c1085f9009c90 )
)
game (
name "Ball Breaker (CRL Group)[h Attus][ZX Spectrum][EP-Compression]"
description "Ball Breaker (CRL Group)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1987"
publisher "CRL Group"
genre "Arcade: Action"
rom ( name "Ball Breaker (1987)(CRL Group)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc F379F63A md5 b4c0b758ea52ce3fcef45da37e2416ea sha1 cfab8c6c9b1f24d9570f59a00980a5f07a95420f )
)
game (
name "Ball Breaker II (CRL Group)[h Attus][ZX Spectrum]"
description "Ball Breaker II (CRL Group)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "CRL Group"
rom ( name "Ball Breaker II (1988)(CRL Group)[h Attus][unreleased][ZX Spectrum].com" crc 931722B2 md5 4f0f9586856a19edf9ca977be47a9247 sha1 ff654123615d44b00daa40fba12a8b902dc53921 )
)
game (
name "Barbarian (Melbourne House)[h][ZX Spectrum]"
description "Barbarian (Melbourne House)[h][ZX Spectrum]"
releaseyear "1988"
publisher "Melbourne House"
genre "Arcade: Action"
rom ( name "Barbarian (1988)(Melbourne House)[h][unreleased][ZX Spectrum].COM" crc 509A1F06 md5 95638a414eb26bb3ca947b68f654522d sha1 1cdb3c8d3c8a662f79ea4d6ea8850fcdf3f0c260 )
)
game (
name "Barbarian - 1 Player (Palace Software)[h BAM][ZX Spectrum]"
description "Barbarian - 1 Player (Palace Software)[h BAM][ZX Spectrum]"
releaseyear "1987"
publisher "Palace Software"
rom ( name "Barbarian - 1 Player (1987)(Palace Software)[h BAM][unreleased][ZX Spectrum].COM" crc FDD1B7C3 md5 60693cdb46486ac292d6886fe6b3115b sha1 7fd997ace35451c268aeb830b3d1454b94699510 )
)
game (
name "Barbarian - 2 Players (Palace Software)[h Sandor, G.][ZX Spectrum]"
description "Barbarian - 2 Players (Palace Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1987"
publisher "Palace Software"
rom ( name "Barbarian - 2 Players (1987)(Palace Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc F498E056 md5 65bd282d0eb804e837071df59812be75 sha1 dc1942ecb4088e84a8e4628005befef8d88d7eb8 )
)
game (
name "Barbarian II - The Dungeon of Drax (Palace Software)[h IstvanV][t][2010][Amstrad CPC]"
description "Barbarian II - The Dungeon of Drax (Palace Software)[h IstvanV][t][2010][Amstrad CPC]"
releaseyear "1987"
publisher "Palace Software"
rom ( name "Barbarian II - The Dungeon of Drax (1987)(Palace Software)[h IstvanV][t][2010][unreleased][Amstrad CPC].COM" crc BBA5EF16 md5 97f2fa3e05b15b6738cc9d484e97e4a6 sha1 e193cf16cfa5c53f5aba8ea538aa6e877d5789ab )
)
game (
name "Barbarian II - The Dungeon of Drax (Palace Software)[h Sandor, G.][ZX Spectrum]"
description "Barbarian II - The Dungeon of Drax (Palace Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1988"
publisher "Palace Software"
rom ( name "Barbarian II - The Dungeon of Drax (1988)(Palace Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 4B4B0C4B md5 924e816907b7f0d13cc0f56543ff5d54 sha1 0f16c32ce3d507c5a08afcf8c23bf5bcbebf51e3 )
)
game (
name "Basket Master (Imagine Software)[h Sandor, G.][aka Fernando Martin Basket Master][ZX Spectrum]"
description "Basket Master (Imagine Software)[h Sandor, G.][aka Fernando Martin Basket Master][ZX Spectrum]"
releaseyear "1987"
publisher "Imagine Software"
rom ( name "Basket Master (1987)(Imagine Software)[h Sandor, G.][aka Fernando Martin Basket Master][unreleased][ZX Spectrum].COM" crc 8CABDFD3 md5 928c3ce64a6c5be9d81ae8f963405d39 sha1 79873a1d17c231c435976f5c9b10eeddddbb690e )
)
game (
name "Batman (Ocean Software)"
description "Batman (Ocean Software)"
releaseyear "1986"
publisher "Ocean Software"
genre "Arcade: Platform"
rom ( name "Batman (1986)(Ocean Software).COM" crc F1A620AA md5 d37fc735e7d125d83f0ca26190b0370f sha1 602dc972a8aeb129e4bf47ad7754789f23446bec )
)
game (
name "Batman (Ocean Software)[t]"
description "Batman (Ocean Software)[t]"
releaseyear "1986"
publisher "Ocean Software"
genre "Arcade: Platform"
rom ( name "Batman (1986)(Ocean Software)[t].COM" crc F201CE35 md5 9550c8674de2bd336327add214bc7e9a sha1 54ab2d10a6562777e2291e7cc65d269f4fb8b8c3 )
)
game (
name "Batman - The Caped Crusader - Part 1 - A Bird in the Hand (Ocean Software)[h Sandor, G.][ZX Spectrum]"
description "Batman - The Caped Crusader - Part 1 - A Bird in the Hand (Ocean Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1988"
publisher "Ocean Software"
rom ( name "Batman - The Caped Crusader - Part 1 - A Bird in the Hand (1988)(Ocean Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 5B7F4CBB md5 4cabeec087e7982b955132d918712f1f sha1 0f1115bbba15eeb640faff2bafcd1cfb42331c47 )
)
game (
name "Batman - The Caped Crusader - Part 2 - A Fete Worse than Death (Ocean Software)[h Sandor, G.][ZX Spectrum]"
description "Batman - The Caped Crusader - Part 2 - A Fete Worse than Death (Ocean Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1988"
publisher "Ocean Software"
rom ( name "Batman - The Caped Crusader - Part 2 - A Fete Worse than Death (1988)(Ocean Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 919A8333 md5 d0eb512e42eb0a6e82a30e10532a2215 sha1 4f124eed0a6cce65b45f91d80b88adb85159af51 )
)
game (
name "Batman - The Movie (Ocean Software)[h Sandor, G.][ZX Spectrum]"
description "Batman - The Movie (Ocean Software)[h Sandor, G.][ZX Spectrum]"
releaseyear "1989"
publisher "Ocean Software"
rom ( name "Batman - The Movie (1989)(Ocean Software)[h Sandor, G.][unreleased][ZX Spectrum].COM" crc 57B6E3EB md5 1d6b02e8e2d65c77b786b97dabaf3c57 sha1 fe058201b7c742ab9474fc3b574be0450e141dcd )
)
game (
name "Batman - The Movie (Ocean Software)[h Sandor, G.][ZX Spectrum][EP-Compression]"
description "Batman - The Movie (Ocean Software)[h Sandor, G.][ZX Spectrum][EP-Compression]"
releaseyear "1989"
publisher "Ocean Software"
rom ( name "Batman - The Movie (1989)(Ocean Software)[h Sandor, G.][unreleased][ZX Spectrum][EP-Compression].COM" crc 20BA54D2 md5 5e62a63bc71c7d758ff9cc10b619bd2f sha1 5924b1160ef52e1c605f6aa8e5bd71b9c63495a0 )
)
game (
name "Battle Command (Ocean Software)[h Exosworm][1992][ZX Spectrum]"
description "Battle Command (Ocean Software)[h Exosworm][1992][ZX Spectrum]"
releaseyear "1991"
publisher "Ocean Software"
genre "Arcade: Shoot-em-up"
rom ( name "Battle Command (1991)(Ocean Software)[h Exosworm][1992][unreleased][ZX Spectrum].com" crc 821E5175 md5 d726879e034271a798f8f619ea0dfffe sha1 f0eba83fddd279a9c4936e8cb2c8a4eaa3a5e8cd )
)
game (
name "Battle of Britain (PSS)[h SEM][1991][ZX Spectrum]"
description "Battle of Britain (PSS)[h SEM][1991][ZX Spectrum]"
releaseyear "1986"
publisher "PSS"
genre "Strategy: War"
rom ( name "Battle of Britain (1986)(PSS)[h SEM][1991][unreleased][ZX Spectrum].COM" crc 8C7D96A9 md5 fb03224c3aaf37c45e0629cfee43bdf0 sha1 e41fd5935cd4f2b3eeaf3d133d4e85f5f5b0abd6 )
)
game (
name "Battle of Britain (PSS)[h Zozosoft][2006][ZX Spectrum]"
description "Battle of Britain (PSS)[h Zozosoft][2006][ZX Spectrum]"
releaseyear "1986"
publisher "PSS"
genre "Strategy: War"
rom ( name "Battle of Britain (1986)(PSS)[h Zozosoft][2006][unreleased][ZX Spectrum].COM" crc A36EB907 md5 1fe88e67b8212d292eef4201fad56dde sha1 1ccf8120461306f676575fb2c68cb9d3b65d75b9 )
)
game (
name "Battle Ships (Encore)[h Attus][ZX Spectrum]"
description "Battle Ships (Encore)[h Attus][ZX Spectrum]"
releaseyear "1988"
publisher "Encore"
genre "Strategy: War"
rom ( name "Battle Ships (1988)(Encore)[h Attus][unreleased][ZX Spectrum].COM" crc 06B03B7B md5 efdc4e3bb982b0214338f5a42d6d3ab2 sha1 a90f34e41038c233edc8705b0a1e87e0a1e5c5be )
)
game (
name "Battle Ships (Encore)[h Attus][ZX Spectrum][EP-Compression]"
description "Battle Ships (Encore)[h Attus][ZX Spectrum][EP-Compression]"
releaseyear "1988"
publisher "Encore"
genre "Strategy: War"
rom ( name "Battle Ships (1988)(Encore)[h Attus][unreleased][ZX Spectrum][EP-Compression].COM" crc FA03EAE2 md5 df3207aac4abce0ae56b44e1aa515221 sha1 81176b5b57d1e8f8b3dfe3c95e0c5861374d370c )
)