forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sinclair - ZX 81.dat
3149 lines (3149 loc) · 155 KB
/
Sinclair - ZX 81.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 "Sinclair - ZX 81"
description "Sinclair - ZX 81"
version "20160505113721"
author ""
comment "extracted from http://www.zx81stuff.org.uk, also with games from http://www.bobs-stuff.co.uk/zx81.html"
)
game (
name "1K Games (Sinclair Research)"
description "1K Games (Sinclair Research)"
manufacturer "Artic"
rom ( name "1KGames.tzx" size 8576 crc 2648f563 md5 915febe842110ada339f53db2a822812 sha1 11562494bb40cef9bcea606b1bd2ad375f47ef75 )
)
game (
name "1K Games Pack (Artic)"
description "1K Games Pack (Artic)"
manufacturer "Artic"
rom ( name "1KGames.tzx" size 8576 crc 2648f563 md5 915febe842110ada339f53db2a822812 sha1 11562494bb40cef9bcea606b1bd2ad375f47ef75 )
)
game (
name "1K ZX Chess (Artic)"
description "1K ZX Chess (Artic)"
manufacturer "Artic"
rom ( name "1KZXChess(Artic).A.ChessQueen.tzx" size 1165 crc 9c750652 md5 d6694fd23f6a9aa6ff644a0d7417332c sha1 ed848d9bd69311536da64c0414f7ae2ec9316622 )
rom ( name "chessqueen.p" size 941 crc 1a82385a md5 5292e4cac70342eed1b350846db0a90f sha1 dfad4c2de72aa4900367dbe92271f126ea192804 )
)
game (
name "1K ZX Chess (Sinclair Research)"
description "1K ZX Chess (Sinclair Research)"
year 1982
manufacturer "Artic"
rom ( name "1KZXChess.tzx" size 2223 crc 2fc225b9 md5 ddf8021eef88111be73fbccf8392439e sha1 055730a794e227e02d6fa780f1bb82a68c1b86bf )
)
game (
name "2K Games Pack (International Publishing and Software Inc.)"
description "2K Games Pack (International Publishing and Software Inc.)"
year 1982
rom ( name "2KGamesPack(IPS).tzx" size 6977 crc c1893b03 md5 25ebafa20015b01a383b70c19394e307 sha1 b33fdc40eb4631617c2687795de02904c92255c3 )
)
game (
name "3D Defender (J. K. Greye)"
description "3D Defender (J. K. Greye)"
year 1981
manufacturer "J. K. Greye"
rom ( name "3ddefender.p" size 11857 crc 4f97cbc6 md5 b344194f7456805b053f3e6786cfcdd5 sha1 bbaf7cd6f122f2508efecca8a8b2e1006b728752 )
rom ( name "3DDefender.tzx" size 12095 crc a9e69d1c md5 cd64e962bfcc000a9e3bd8cdb6e1c3e1 sha1 7c6b0a1fdef5c43aeed21f9d98f4e0c9837214cf )
)
game (
name "3D Defender (New Generation)"
description "3D Defender (New Generation)"
year 1981
manufacturer "M. E. Evans"
rom ( name "3ddefender(ngs).p" size 11857 crc eb8178fd md5 57e5bdeaef06c83ae246bf132618a5ff sha1 1c9205c36224875446de0dc3abf0907200b7b993 )
rom ( name "3DDefender(NGS).tzx" size 12095 crc 0df02e27 md5 b2fe247ea9c9e64ba9fe419c96c9fc9c sha1 6aa9a12e6256bc2657326361c636571faf2cfb83 )
)
game (
name "3D Monster Maze (J. K. Greye)"
description "3D Monster Maze (J. K. Greye)"
year 1981
manufacturer "J. K. Greye"
rom ( name "3dmonstermaze.p" size 10552 crc 8f782725 md5 4e344f938d5600d81b7b0fde756abe7e sha1 cb254b2ce2012140211b641deeaf57177757ac25 )
rom ( name "3DMonsterMaze.tzx" size 10798 crc 436d8b0e md5 c38f7c7e81c6e781a9d665a4e468c6ef sha1 c6c141057d870b114d8844bb7578040ad8c5b151 )
)
game (
name "3D Monster Maze (New Generation)"
description "3D Monster Maze (New Generation)"
year 1982
manufacturer "J. K. Greye"
rom ( name "3dmonstermaze(ngs).p" size 10552 crc f4ce6079 md5 9cd5af6a9a9c61b2ea272f4f35058928 sha1 15093d2b89b5c5c4c0454af917be5554454864a7 )
rom ( name "3DMonsterMaze(NGS).tzx" size 10798 crc 38dbcc52 md5 5912b1261d2ed44f40d80bd6ca813405 sha1 2b0e9cd691979154c2d75ac76f93be076aab3423 )
)
game (
name "5-2K Family Pak (Timeworks)"
description "5-2K Family Pak (Timeworks)"
manufacturer "Timeworks"
rom ( name "52KFamilyPak.tzx" size 7846 crc fa438ced md5 e0b79ae2de178ddab3c3ee2691c68f78 sha1 1d613e0ab6462ab52c757aa1b6b6262311eb6c8e )
)
game (
name "8 Programs by GM4IHJ (Amsat-UK Software Service)"
description "8 Programs by GM4IHJ (Amsat-UK Software Service)"
manufacturer "GM4IHJ (J Branegan)"
rom ( name "8Programs.tzx" size 56578 crc bb788390 md5 4cf8b801597ae314132d8de1d5dc5d9b sha1 e2185c5962d8c89bb020028a22e25470405bef0f )
)
game (
name "10 Games (J. K. Greye)"
description "10 Games (J. K. Greye)"
year 1981
manufacturer "J. K. Greye"
rom ( name "10Games.tzx" size 7636 crc 141cddd1 md5 02eb203cd57645589a158495c2f7cebb sha1 3a776f7dbf4fd169572aad5b775b4ca27c61222a )
)
game (
name "Admiral Graf Spee (Temptation Software)"
description "Admiral Graf Spee (Temptation Software)"
manufacturer "Simon Mansfield"
rom ( name "AdmiralGrafSpee.tzx" size 17024 crc c583887e md5 3bd4fac61bdb6fc0a1bbc04ec7270df9 sha1 741a2b608801fc12705535fa88f2d895af486e80 )
)
game (
name "Advanced Budget Manager (Softsync)"
description "Advanced Budget Manager (Softsync)"
year 1982
manufacturer "Robert E. Davis Jr."
rom ( name "advancedbudgetmanager.p" size 16065 crc 3c9470f1 md5 57f9a0131be02387c11ff873da3c4fd4 sha1 9fff89fe3b70caac516db12f50e35c44fdd2c8e9 )
rom ( name "AdvancedBudgetManager.tzx" size 16291 crc 72a0eeda md5 b27dc1e6bb1a68b163457dad74a83f06 sha1 617af815c0545f0832cd9502ba51a0a5db5dcd1d )
)
game (
name "Advanced Mathematics (W. H. Smith)"
description "Advanced Mathematics (W. H. Smith)"
year 1982
manufacturer "ICL"
rom ( name "advancedmathematics.p" size 13415 crc 53d03118 md5 3057d11d80675cc9910181c915387cc6 sha1 944f9cfd8dbfd6038ae71c1c84343e17a3308f8b )
rom ( name "AdvancedMathematics.tzx" size 13671 crc e6a14eaa md5 0707dca0772a33981eb91f87dfab135d sha1 8caa2805da995945d9153828c921ad4ab96678a5 )
)
game (
name "Adventure (Bug Byte)"
description "Adventure (Bug Byte)"
year 1982
manufacturer "Bug Byte"
rom ( name "adventure.p" size 15783 crc dd2dc75d md5 756ee1b0642b97ec7fa586aa0e8ef519 sha1 e06106ebb14581c6f69b351261f88f24be8c7bd2 )
rom ( name "Adventure.tzx" size 16017 crc 35d4be2a md5 55bae9d8b6d5e7d62ef8f1646c0dcc03 sha1 c5fb1e4aa356ec4a406a2da76495d9f9b368d058 )
)
game (
name "Adventure A - Planet of Death (Artic)"
description "Adventure A: Planet of Death (Artic)"
manufacturer "Artic"
rom ( name "planetofdeath.p" size 13445 crc ab715c00 md5 f0a90c314572232e860a486f47c34cfe sha1 247f37d1b70a0eec9abce64ea094d55e3e59b27c )
rom ( name "PlanetOfDeath.tzx" size 13675 crc cdef18a4 md5 4ecb3f0a3a9a9c9a25520bf1f7d2175e sha1 346412f09b472c931874fd441660ab5435d5f3c1 )
)
game (
name "Adventure A - Planet of Death (Sinclair Research)"
description "Adventure A: Planet of Death (Sinclair Research)"
year 1981
manufacturer "Artic"
rom ( name "planetofdeath.p" size 13445 crc ab715c00 md5 f0a90c314572232e860a486f47c34cfe sha1 247f37d1b70a0eec9abce64ea094d55e3e59b27c )
rom ( name "PlanetOfDeath.tzx" size 13675 crc cdef18a4 md5 4ecb3f0a3a9a9c9a25520bf1f7d2175e sha1 346412f09b472c931874fd441660ab5435d5f3c1 )
)
game (
name "Adventure B - Inca Curse (Artic)"
description "Adventure B: Inca Curse (Artic)"
year 1981
manufacturer "Artic"
rom ( name "incacurse(artic).p" size 11975 crc e5a05a0a md5 e24f9ea9c889a9587479085276980fa1 sha1 b1b85676ade56e51488f2262ee60facc22989967 )
rom ( name "IncaCurse(Artic).tzx" size 12205 crc 76d699e6 md5 15459a76af72151af7309c00ff13abae sha1 c3840c1539239437150d7e300b0bae412ad6a987 )
)
game (
name "Adventure B - Inca Curse (Sinclair Research)"
description "Adventure B: Inca Curse (Sinclair Research)"
year 1981
manufacturer "Artic"
rom ( name "incacurse.p" size 11975 crc e37cddd8 md5 736fd7c4c8854760206a05361299faf1 sha1 acb41012d467f473cb452f3cf1acb8608f108725 )
rom ( name "IncaCurse.tzx" size 12205 crc 700a1e34 md5 438603d7eaed102378af94260a15be1a sha1 8948f63c75c80dffa4e317e4d8ed400bd6b11de9 )
)
game (
name "Adventure C (Monochrome) (Artic)"
description "Adventure C (Monochrome) (Artic)"
year 1982
manufacturer "Artic"
rom ( name "adventurec.p" size 14045 crc 52f0a175 md5 c824db7237c7299477c957becdf39335 sha1 152de35905f06389f06925e5a09cb30183669ad0 )
rom ( name "AdventureC.tzx" size 14275 crc 449ed54f md5 d4bbb25a3eb32b2e063a3ab9b09565ab sha1 ebc2d62e91088447c40bd394aa825acbe2982210 )
)
game (
name "Adventure C - Ship of Doom (Artic)"
description "Adventure C: Ship of Doom (Artic)"
manufacturer "Artic"
rom ( name "shipofdoom(artic).p" size 14045 crc 3e244575 md5 47ae04d2d34190dd2f9d47fb9815f4de sha1 689552ef631facc558c6fc9b902f20495e870936 )
rom ( name "ShipOfDoom(Artic).tzx" size 14275 crc 284a314f md5 ca0bab03eeff0fc9bcc040148e20c7d2 sha1 96221bceba4ff6e90fdc59271da1d7973362e8f8 )
)
game (
name "Adventure C - The Ship of Doom (Sinclair Research)"
description "Adventure C: The Ship of Doom (Sinclair Research)"
year 1982
manufacturer "Artic"
rom ( name "shipofdoom.p" size 14045 crc b8e32f06 md5 2515ba4ad2c1758f83d4e2f2cc81d6ca sha1 c64b4ae9fdbd955695660e6bd6a04ef2a6f91f39 )
rom ( name "ShipOfDoom.tzx" size 14275 crc ae8d5b3c md5 6e53ef483b27d942ff3ad6e69256c116 sha1 a1e5ab55214da2ca312345586f684e65204d52ad )
)
game (
name "Adventure D - Espionage Island (Artic)"
description "Adventure D: Espionage Island (Artic)"
manufacturer "Artic"
rom ( name "espionageisland(artic).p" size 15504 crc ac8df706 md5 348a6b4fbec8e375daf1be03d1c674df sha1 8ad3e1ae97a34a6f6b1e2f653aeed770ba33f01e )
rom ( name "EspionageIsland(Artic).tzx" size 15734 crc 06a3887c md5 30754aa09608d83deb1c0194c04b85cb sha1 7b36f0bce5eccb9fc3dc4fb553516e5e7f5adabe )
)
game (
name "Adventure D - Espionage Island (Sinclair Research)"
description "Adventure D: Espionage Island (Sinclair Research)"
year 1982
manufacturer "Artic"
rom ( name "espionageisland.p" size 15504 crc 81ddf2b0 md5 24c456b967f1b621685579289a656ceb sha1 9c2db35b667f12a155aad2f2e5725b9fcf54e290 )
rom ( name "EspionageIsland.tzx" size 15734 crc 2bf38dca md5 50a59a5a1ca60349959ba2283e4188f8 sha1 1afaa1c3773c78f8f92941d95de226a727cc8822 )
)
game (
name "Adventure One (Abersoft)"
description "Adventure One (Abersoft)"
year 1982
manufacturer "Abersoft"
rom ( name "adventureone.p" size 15612 crc 67617c4d md5 a3ddf09fae32bb1bebc9890bee01e788 sha1 34f97d91871439200f127334a675d01e5a918b4c )
rom ( name "AdventureOne.tzx" size 15848 crc b1cbaaa7 md5 95e5c9663fdd2dae7494826beb4b3d39 sha1 bad2e766140ee0159389ac513f37c0e8372ed5c8 )
)
game (
name "Adventure Tape 1 (Phipps Associates)"
description "Adventure Tape 1 (Phipps Associates)"
year 1983
manufacturer "Phipps Associates"
rom ( name "AdventureTape1.tzx" size 57316 crc f85217cb md5 ebf8c22018a8a88743ce8f926c7a5592 sha1 851fd8d8c082c534766deb7c7d724ed0e9ae9410 )
)
game (
name "Adventure Tape No. 1 (Phipps Associates)"
description "Adventure Tape No. 1 (Phipps Associates)"
year 1982
manufacturer "Phipps Associates"
rom ( name "AdventureTapeNo1.tzx" size 57280 crc 48254758 md5 80d738ef8e9bf92f06760da0bd986cbd sha1 bc8d49cbfa4156fcd10739b8ba17987a6708a2aa )
)
game (
name "Airline (Cases Computer Simulations)"
description "Airline (Cases Computer Simulations)"
year 1982
rom ( name "airline.p" size 15842 crc ee5ebb38 md5 0d2270547b0e378edaa4f22d1058deb4 sha1 88e1c1454ce376710f1ef8d864b20af8d6bb2fd5 )
rom ( name "Airline.tzx" size 16072 crc 844cbaac md5 3f4f3645c603230b8eb3742585c743c3 sha1 56b18d5296da989927c05c0f33dc30d2a3b1ba4c )
)
game (
name "Algebra 1 (Timex)"
description "Algebra 1 (Timex)"
year 1982
manufacturer "Home Computer Software"
rom ( name "Algebra1.tzx" size 3926 crc 11f6af7c md5 06f5ba26638ce245da0d0c622bca75f1 sha1 4cfec3ba12646b6b5cf05860401750fa149fbce9 )
)
game (
name "Alien (PSS)"
description "Alien (PSS)"
year 1982
manufacturer "PSS"
rom ( name "alien.p" size 11735 crc b85d2a16 md5 47ab0a499a9a5558d7b76d9acc02f86f sha1 bbfd196dc9ca7694987fc079c7ba445f29435b3b )
rom ( name "Alien.tzx" size 11961 crc febc8fef md5 bf6d8512bdb99c04e3f0e40157fc6b6a sha1 9545ca45d3440c9a34be3411bc7395f37af82777 )
)
game (
name "Alien Attack (Computer Rentals)"
description "Alien Attack (Computer Rentals)"
manufacturer "Computer Rentals"
rom ( name "alienattack.p" size 6209 crc 946e0ed7 md5 52cdd5d46f020af4a42c898919c866cf sha1 fb0be0363133dcd5dab240253fdcbf21c7f50c65 )
rom ( name "AlienAttack.tzx" size 6429 crc e6ce2fa6 md5 53ff8e58ba83e04522c87e4cb0d54002 sha1 f52df2571903d9aae931b359eabb67e2bbd6fc41 )
)
game (
name "Alien-Dropout (Silversoft)"
description "Alien-Dropout (Silversoft)"
year 1982
manufacturer "Silversoft"
rom ( name "aliendropout.p" size 3192 crc d6570c8d md5 f20b18d295751068432cd101cecab2c9 sha1 a18219e3e44a6cacb38afabd21153a6abf72fe82 )
rom ( name "AlienDropout.tzx" size 3424 crc fe0f33f4 md5 80d3c0c640aa71a3c12691b83b4c26cf sha1 c51813b542dd1432421ad7bb222a6f5cef4cd641 )
)
game (
name "Alphaprobe (Artic)"
description "Alphaprobe (Artic)"
manufacturer "Artic"
rom ( name "alphaprobe.p" size 11016 crc 4b8bb297 md5 0fadaebde9d1d1843b74415333eadc7b sha1 cdaba21f5432945bf9ae06b111804f3c4cd385e2 )
rom ( name "Alphaprobe.tzx" size 11252 crc 7b7603f0 md5 0c36b487eaccb85755604c91d05dd8fe sha1 a71fdaec9225187ad0724bdaaab65b2860e994fb )
)
game (
name "Ant Attack"
description "Ant Attack (2013) - Bob's interpretation of Sandy White's classic isometric title from 1983."
rom ( name "AntAttack.p" size 16167 crc 2e30a8cf md5 1fe5cfe57b540868e31fd73e7e54388b sha1 1b4fc9eb5cd3373a9986fcd395d0117c6b3c4718 )
)
game (
name "Arcade Action (Micromega)"
description "Arcade Action (Micromega)"
manufacturer "Micromega"
rom ( name "ArcadeAction.tzx" size 4651 crc 5cb215e3 md5 5a76c5d34baa6d9aaf3bdd34e5c89597 sha1 04fc1ffa34592f093f1c0eae9d54b3ff31eb3e86 )
)
game (
name "Around Europe in 80 Hours (International Publishing and Software Inc.)"
description "Around Europe in 80 Hours (International Publishing and Software Inc.)"
year 1982
rom ( name "aroundeuropein80hours.p" size 15223 crc 2da984a7 md5 1dd7d90a090b80ea53c1b387b852d497 sha1 5d2a941cd7edca847bfd6c10b41b9025a81d4352 )
rom ( name "AroundEuropeIn80Hours.tzx" size 15451 crc 860758c6 md5 5feee6f195cee427cd9195a1c4462f58 sha1 cb59d966fe38c858df9a002f2eaaae2cb0e1ba73 )
)
game (
name "Asteroids (Silversoft)"
description "Asteroids (Silversoft)"
year 1982
manufacturer "Silversoft"
rom ( name "asteroids.p" size 3542 crc 7484ac13 md5 0a392517e1d78420e0a5b5aafefe0c39 sha1 27d633e47d4e5a6b1594b16103e6a7ea12b5d0a7 )
rom ( name "Asteroids.tzx" size 3776 crc 939e50e5 md5 5f4836d37cb10b4bb5c7c71bb857409a sha1 85047ab187bfcd02195f00150419cee1bfc07a5f )
)
game (
name "Asteroids (Software Farm)"
description "Asteroids (Software Farm)"
manufacturer "Software Farm"
rom ( name "asteroids(sf).p" size 8360 crc 0efcebd4 md5 583c3e31090f678a465c46d0cfcf2ad7 sha1 7f114cd978045301b7c63f7177d2fe2d0ee33264 )
rom ( name "Asteroids(SF).tzx" size 8594 crc 8b6f8743 md5 d7f2518bd65dbd7d99842f5a27aab588 sha1 d56d7e03a545b99607174faec186c42e64618189 )
)
game (
name "Autochef (Cases Computer Simulations)"
description "Autochef (Cases Computer Simulations)"
year 1982
rom ( name "autochef.p" size 15430 crc 575560bb md5 21c42c6c6eaf0866dc56533f89688f4f sha1 dd0ee23e39d50738d91731c427063ac8e59ad9d3 )
rom ( name "Autochef.tzx" size 15648 crc 3869ae07 md5 81856a30f98ccaa2fdbd6c88d8c7897f sha1 2b7416327bdb907108d287f8cd4eaa0fd291ecba )
)
game (
name "Avenger (Abacus)"
description "Avenger (Abacus)"
year 1982
manufacturer "K. Flynn"
rom ( name "avenger.p" size 7138 crc 53621a49 md5 1af4b6a7f31315a701b5dd54068c5596 sha1 0f402a98c52410358f2a3ec94280af6c7375f9ac )
rom ( name "Avenger.tzx" size 7368 crc b545fdae md5 b0e975a6cdff98f667536f3fd4d902bd sha1 529b2a9eb67c50db12494cc0ff7272925e9d18b4 )
)
game (
name "Backgammon (Keith Archer)"
description "Backgammon (Keith Archer)"
year 1982
manufacturer "Keith Archer"
rom ( name "backgammon(ka).p" size 11625 crc f4d9073b md5 b0a388f1b834d98852d96f998c1978cc sha1 c0c4e28934d05735b2200c41f2af8eb7b3abd1cb )
rom ( name "Backgammon(KA).tzx" size 11861 crc 153ed883 md5 71f46d576fe8bfa343d41949dabd2e55 sha1 81f25c1667c8eba6936eabfd080ccad3a3a34add )
)
game (
name "Backgammon (Timex)"
description "Backgammon (Timex)"
year 1982
manufacturer "Psion"
rom ( name "Backgammon(Timex).tzx" size 17108 crc 307aacd2 md5 d068903731302f4dc6c0e7810d1ed944 sha1 5a78754d849fe5284342089159af45588029c0a9 )
)
game (
name "Bank Robber (Romik Software)"
description "Bank Robber (Romik Software)"
year 1983
manufacturer "Roland Stokes"
rom ( name "bankrobber.p" size 6560 crc 2973af44 md5 8ca20ed973a7a1b830087cd30db7edba sha1 5ebdbd6b13b82933c158bd439b89bf6ce69149a7 )
rom ( name "BankRobber.tzx" size 6798 crc f9a7ab7d md5 36e6e97bd4ea83c494b6134e1aeee1c2 sha1 40d0fcc8faaf73b0082d4f1937ef16626d289f66 )
)
game (
name "Baron (Temptation Software)"
description "Baron (Temptation Software)"
manufacturer "Simon Mansfield"
rom ( name "Baron.tzx" size 16716 crc 2813c7a1 md5 c6ae4f6cf29411686bde01114a682498 sha1 fd944cedd638d3a5d6b70a8a4d50f2d41c16ea74 )
)
game (
name "Basicode 2 (BBC)"
description "Basicode 2 (BBC)"
year 1984
manufacturer "The Chip Shop"
rom ( name "Basicode2.A.tzx" size 3570 crc db6f1818 md5 ad1857f473ca1de8ed5d7b855d566c54 sha1 9204245adf3f343e82c43d6ec70117c4dc491908 )
rom ( name "basicode2.p" size 3338 crc 89ce64f1 md5 cab7e8adf644459ce8c1dd54897a184c sha1 07a3de146663d0e77a98a0800fb6f0545d567d77 )
)
game (
name "Bat Cage (Timex)"
description "Bat Cage (Timex)"
year 1982
manufacturer "Thomas J. Burke"
rom ( name "batcage.p" size 1222 crc a1b5d16f md5 0a716ad28c067c5938d776fabadfc176 sha1 e3dbde749ff3618ab07a6c8fc712531be6272bcf )
rom ( name "BatCage.tzx" size 1446 crc 650a94d8 md5 c3b8a71965f8ba025d546b7fe8f1531b sha1 8f6842f02e416e8b66c8d6172f2e852a5e14d2f8 )
)
game (
name "Battleships (JRS Software)"
description "Battleships (JRS Software)"
year 1982
manufacturer "JRS Software"
rom ( name "battleships.p" size 12732 crc a0a631a4 md5 99bdb02395ed7a85c8b13911c0344516 sha1 6897424919c684a7a18235d967c7f621f02d1cf0 )
rom ( name "Battleships.tzx" size 12962 crc a1057bc5 md5 8840352dd5514d5bc84e82f14f6211e2 sha1 0c36982f0243f39c028a21207a2218d40b1cb369 )
)
game (
name "Bigflap Attack (Timex)"
description "Bigflap Attack (Timex)"
manufacturer "Timex"
rom ( name "bigflapattack.p" size 9829 crc 99887648 md5 66c706f432ad9277573b709c913b16a0 sha1 985f2f32ae4478051b5b7d91cb17bbc474fd26f6 )
)
game (
name "Black Star (Quicksilva)"
description "Black Star (Quicksilva)"
year 1983
manufacturer "M. Sudworth"
rom ( name "blackstar.p" size 6811 crc 0407beac md5 d34202b6ac2f39323ad1212ca360e18b sha1 c17aa876dfeef10fd9d8da5bd83cc6fec9396fb9 )
rom ( name "BlackStar.tzx" size 7047 crc f227253f md5 c5b418b890bb6d828ec84d2fb36152ab sha1 0abe2ca4064679c23da82773fab70bf05c245844 )
)
game (
name "Boulder Logic"
description "Boulder Logic (2011) - Bradford Walker-Smythe needs to find the perfect engagement ring to win the heart of his true love Tania when he asks for her hand in marriage. And so, to prove his devotion, he sets off to the Cornish mines in search of the perfect diamond..."
rom ( name "BoulderL.p" size 16240 crc 23cc342f md5 b040c3e750ef06a93c56b53ed299b9ca sha1 3c74569ef70327ecf17db982ef92b4557c17b538 )
)
game (
name "Bouncing Bert (Software Farm)"
description "Bouncing Bert (Software Farm)"
year 1985
manufacturer "S C T"
rom ( name "bouncingbert.p" size 14919 crc fb88ad49 md5 e575aa04406a3f9eb1c095e8c0b6cd3a sha1 a56dddc42a1383c392d6988c9dafb4c8db37007a )
rom ( name "BouncingBert.tzx" size 15151 crc c30caf71 md5 ae2a31c5a4b92c6213b7547608110e86 sha1 ef3be8446d80452a155ed647a55c7d24aee58a6d )
)
game (
name "Breakout 3 (Axis)"
description "Breakout 3 (Axis)"
year 1982
manufacturer "Axis"
rom ( name "breakout3.p" size 5485 crc a836659c md5 9ae6333ad0003617da56543e57a60903 sha1 f226df48cfcabea16956faff21e88e3eeeccf66c )
rom ( name "Breakout3.tzx" size 5705 crc 69b9a5bf md5 595c064a5d18089bec87664dc37ab2da sha1 faf622eff6cca236e0623d7f23cf35bfef74d823 )
)
game (
name "Breakout (CDS Micro Systems)"
description "Breakout (CDS Micro Systems)"
year 1982
manufacturer "CDS Micro Systems"
rom ( name "breakout.p" size 3235 crc 82836ac3 md5 3f4b0e39130be53ae22381f8a82a3081 sha1 eb36d14650c568ed47326dc094392c70fd249b3c )
rom ( name "Breakout.tzx" size 3467 crc 322fafd6 md5 0323a0d24248e0de2dce75c7cd3b71a9 sha1 1cb495c3b751e64e8b1fc38c68fabf0340365f39 )
)
game (
name "Breakout (J. K. Greye)"
description "Breakout (J. K. Greye)"
year 1981
manufacturer "J. K. Greye"
rom ( name "breakout(jkg).p" size 716 crc 15cb56b4 md5 4655a4c1f58c705f303d31d2f2e64f7f sha1 2a4ddae5df3c18192c851be567daeb9ab59aa456 )
rom ( name "Breakout(JKG).tzx" size 948 crc e3f0284a md5 c52f2080dc8e969b4636da6f9d4f1e54 sha1 c8138f8960aedf4d848c65b676d76bf717ec9154 )
)
game (
name "Breakout (New Generation)"
description "Breakout (New Generation)"
year 1982
manufacturer "J. K. Greye"
rom ( name "breakout(ngs).p" size 716 crc d4496e38 md5 e488ef1a3efc25f2abd308f9aef901b5 sha1 bd90a91d1ef17e19802d145dac955d0d34cab5f0 )
rom ( name "Breakout(NGS).tzx" size 948 crc 227210c6 md5 50fe074b25394a62a8fbbb8dac9513fb sha1 86b96863cffca1038110a78b99b4df5fbcc75daa )
)
game (
name "Breakout, Space Invaders and Music (Macronics)"
description "Breakout, Space Invaders and Music (Macronics)"
year 1981
manufacturer "Macronics"
rom ( name "BreakoutSIAndMusic.tzx" size 2734 crc d383db01 md5 13110862adf0b4abb06573a2be710087 sha1 d5582e7a6a79bd6b8a2096ed968c91292b46483b )
)
game (
name "Brick Stop (CDS Micro Systems)"
description "Brick Stop (CDS Micro Systems)"
year 1982
manufacturer "CDS Micro Systems"
rom ( name "brickstop.p" size 3126 crc 8ee66abe md5 b70594c6cb40ac4b3b7706574153563d sha1 fd697ae6ec522406f4e6b91a5c7a5d7c9058a4ff )
rom ( name "BrickStop.tzx" size 3362 crc 2e173afa md5 65a723688c0fd694ad600407fc12ec17 sha1 232822deb023be4037e9864a1ccd01e8c42a32bf )
)
game (
name "Bubble Bugs (Romik Software)"
description "Bubble Bugs (Romik Software)"
year 1983
manufacturer "Roland Stokes"
rom ( name "bubblebugs.p" size 6409 crc 1e09b9ec md5 00b1a8fe3030cf7b4cd91b5eaf986516 sha1 8770497d4db9455f31dc6f422b710ba44dcab096 )
rom ( name "BubbleBugs.tzx" size 6647 crc 368c6f68 md5 3e4feeb96b4ff463ff81be369592c0de sha1 e52ddab32b1183910d1c74ae04999a8fb92dc158 )
)
game (
name "Bumper 7 (Axis)"
description "Bumper 7 (Axis)"
year 1981
manufacturer "Axis"
rom ( name "Bumper7.tzx" size 5179 crc 3c31d394 md5 7a42934f415ad9587a203974bbe2f6f2 sha1 2adc581baca7d49305c0ccd720f594c50618be5e )
)
game (
name "Byter (Protek)"
description "Byter (Protek)"
year 1983
manufacturer "Protek"
rom ( name "byter.p" size 5045 crc 1c53ac02 md5 8db34a0ed323545380ac2eb69190fa18 sha1 c396155336a5f43e908de08c5398b670f694b4f7 )
rom ( name "Byter.tzx" size 5271 crc 540854fe md5 423d68cc0edd3f4c360cc58f167f0e71 sha1 ab1f4d1f13735e7ffe4e143c1ee159a2ca1a0617 )
)
game (
name "Can of Worms (Automata Cartography)"
description "Can of Worms (Automata Cartography)"
manufacturer "Automata Cartography"
rom ( name "CanOfWorms.tzx" size 7150 crc b2e6fa12 md5 3a724f1a32f350922012f1ff6b6e0193 sha1 9bb651b39206913bbe74600997114fcbcd70747c )
)
game (
name "Cassette 3 (M. Orwin)"
description "Cassette 3 (M. Orwin)"
year 1982
manufacturer "Various"
rom ( name "Cassette3.tzx" size 96710 crc f612e596 md5 688fe0bd73cf475d632ebb2bc920f92c sha1 a3a02c88cd119f5acf87ef056a8b26dad0a79390 )
)
game (
name "Cassette 4 (M. Orwin)"
description "Cassette 4 (M. Orwin)"
year 1982
manufacturer "Various"
rom ( name "Cassette4.tzx" size 53160 crc 9c246427 md5 acfc26dd06d2a03808f0ff71e9be96d2 sha1 5cdb627ac5b3498225d7d4d5fb90d80751187218 )
)
game (
name "Castle Adventure (Brown inlay) (CDS Micro Systems)"
description "Castle Adventure (Brown inlay) (CDS Micro Systems)"
year 1982
manufacturer "CDS Micro Systems"
rom ( name "castle.p" size 14488 crc 1d01ed81 md5 239c2112ae0b67a045bfeb0397d4f3e0 sha1 00755932ca214c899b866036e666df6325fdd59a )
rom ( name "Castle.tzx" size 14716 crc ba09cc38 md5 ef3141d3308bcd5dd7831a27e8cc5899 sha1 688abd7300f76e35f69ae025a4411f2767514b94 )
)
game (
name "Castle Adventure (CDS Micro Systems)"
description "Castle Adventure (CDS Micro Systems)"
manufacturer "CDS Micro Systems"
rom ( name "castle.p" size 14488 crc 1d01ed81 md5 239c2112ae0b67a045bfeb0397d4f3e0 sha1 00755932ca214c899b866036e666df6325fdd59a )
rom ( name "Castle.tzx" size 14716 crc ba09cc38 md5 ef3141d3308bcd5dd7831a27e8cc5899 sha1 688abd7300f76e35f69ae025a4411f2767514b94 )
)
game (
name "Catacombs (J. K. Greye)"
description "Catacombs (J. K. Greye)"
year 1981
manufacturer "J. K. Greye"
rom ( name "catacombs.p" size 12506 crc b1ed0b59 md5 5e674ce62efd5ab861bbeef9de75d711 sha1 a5d32e1d50d291c485549c4740e5cc6ba3de36ab )
rom ( name "Catacombs.tzx" size 12740 crc f8d6aee6 md5 6ec147973d7561ede4726bc413409cdd sha1 c872d07e278df997df9a66185852f580fd851151 )
)
game (
name "Cave Crusade (AWA Software)"
description "Cave Crusade (AWA Software)"
manufacturer "S. Hughes"
rom ( name "cavecrusade.p" size 6270 crc a2eb2f80 md5 b6c9c3f387d5ba97d80fe92a03e6d0c5 sha1 5f05d170d3eba9a7c4915eecd7e65bbbb958feca )
rom ( name "CaveCrusade.tzx" size 6510 crc 9dec44e3 md5 4e27965613610224b2c60f824983f7a7 sha1 bc4a46fdec5734a88afc005df4864feae26549e1 )
)
game (
name "Centipede (dktronics) (dK'tronics)"
description "Centipede (dktronics) (dK'tronics)"
year 1982
manufacturer "Jeff Minter"
rom ( name "centipede(dktronics).p" size 9790 crc 1e369ce6 md5 dd7d3f2e2b36ffbd2cc169624fc60421 sha1 7770684a912c0bb2116d9f73f1caafc1796a23df )
rom ( name "Centipede(dktronics).tzx" size 10008 crc f12c5ee1 md5 78b3d51b99fa1b99182d60b206fe2944 sha1 c90d0ca1dd3e1679c9c0e4a359d6b84978c129f7 )
)
game (
name "Centipede (Green cover) (dK'tronics)"
description "Centipede (Green cover) (dK'tronics)"
manufacturer "dK'tronics"
rom ( name "centipede(green).p" size 9733 crc f5f4b919 md5 90610d4fa888969f53204a5ca98f6a20 sha1 418c10220fbf3bcf83c07b2a9c717dd12dc92c53 )
rom ( name "Centipede(Green).tzx" size 9967 crc 0ed972cd md5 9dd33fd4999f2d1de4bf52e4590d2521 sha1 1bf47ef2651d5d09a6971ce9eb931aa41ed846cb )
)
game (
name "Centipede (Llamasoft)"
description "Centipede (Llamasoft)"
year 1982
manufacturer "Jeff Minter"
rom ( name "centipede.p" size 9706 crc f2414d13 md5 eeba50f572e820d43fb3f8d140c673e1 sha1 0f23aa3eac663bd04de225074b80701ba05fcb1b )
rom ( name "Centipede.tzx" size 9940 crc 163cf493 md5 74ac41b73e525977dd00e99e92a46e53 sha1 dd75bbb4ec90c8d054e1c0a41164e02a8f3121e3 )
)
game (
name "Challenge (Micromega)"
description "Challenge (Micromega)"
manufacturer "Micromega"
rom ( name "Challenge.tzx" size 4865 crc 8439c8b1 md5 b963b33677e4e187630608606fecba67 sha1 b3dd53df21a684570b3120a8a996fae738dfb15a )
)
game (
name "Champions! (Peaksoft)"
description "Champions! (Peaksoft)"
manufacturer "Peaksoft"
rom ( name "champions.p" size 14858 crc d363867f md5 806e86a4e8c5807ce53717e4ba441c98 sha1 2148c6108e52c8c33a8c1593c47a1ee89ed711b8 )
rom ( name "Champions.tzx" size 15086 crc 7ae0415b md5 7f738befe88938ae2f5bfaf464cc2c16 sha1 1847183ffcaf74bb7f709d09d1d5fea24c720e6a )
)
game (
name "Chess (Timex)"
description "Chess (Timex)"
year 1982
manufacturer "Psion"
rom ( name "Chess(Timex).tzx" size 10227 crc 8f6bfdc7 md5 c0678ed697e11dfa85e483db93dd053c sha1 bd2a54d8ccb6bd918deaba02b0793cf0372c8f27 )
)
game (
name "Chrs Demo (Quicksilva)"
description "Chrs Demo (Quicksilva)"
manufacturer "Quicksilva"
rom ( name "ChrsDemo.tzx" size 5993 crc 3e8d1da7 md5 b69ea89a89170660517bf2284c791e12 sha1 8509b1fc61dc20c1e9280526858b0e95bd6359b5 )
)
game (
name "City of Xon (Pleasantrees)"
description "City of Xon (Pleasantrees)"
year 1982
manufacturer "Pleasantrees"
rom ( name "cityofxon.p" size 15507 crc e853667c md5 82a04afaf98222545389663888140b7b sha1 2111223fd0cab96c1aca585430336e60d501017f )
rom ( name "CityOfXon.tzx" size 15729 crc 3b72af94 md5 18b114ee78e469ea4b85e858802a716c sha1 0d07fb55913b3495b0c26178c84d010cd5eeb03e )
)
game (
name "City Patrol (Sinclair Research)"
description "City Patrol (Sinclair Research)"
year 1982
manufacturer "Macronics (Don Priestley)"
rom ( name "citypatrol.p" size 9168 crc b9cf2e5f md5 a14424f16ed442e3c0af074f2ea01c95 sha1 333c2e1052dc734d76b19da5dddfaa9835177e12 )
rom ( name "CityPatrol.tzx" size 9388 crc 1ea8841e md5 71c94bc78806c1ea06d1996cbf6d64e8 sha1 99d5ae89cfe7940e67d8ede6dbd860020b1ad9df )
)
game (
name "Clever Clogs Whizz Quiz for age 7+ (Computertutor)"
description "Clever Clogs Whizz Quiz for age 7+ (Computertutor)"
year 1983
manufacturer "Computertutor"
rom ( name "whizzquiz.p" size 16032 crc b8995dc4 md5 7f62be0efdc60665d015473550fafa0e sha1 436c07c66875f854b57a43b543c3002ad6c3e061 )
rom ( name "WhizzQuiz.tzx" size 16252 crc 831e3890 md5 9cb954c3643f9bbdac2f2fd5ee28a79b sha1 81b7fa7bc053ea09617edd5428ea8b9bc7d8e4d2 )
)
game (
name "Club Record Controller (Sinclair Research)"
description "Club Record Controller (Sinclair Research)"
year 1982
manufacturer "ICL"
rom ( name "clubrecordcontroller.p" size 6857 crc 16b8f22f md5 481daf4708c4217ff3c5446f049e5d61 sha1 73048e28d5c2f198a97c1ba33e9a2111a1901465 )
rom ( name "ClubRecordController.tzx" size 7075 crc c1bdaa09 md5 03638152afe7d50f7f3050d42423fb5a sha1 246f887ed316a62311165af8ac7abee59c0cfce6 )
)
game (
name "Club Records (W. H. Smith)"
description "Club Records (W. H. Smith)"
year 1982
manufacturer "ICL"
rom ( name "clubrecords.p" size 7526 crc 770ead60 md5 43274f46a93f29e10650a6c0ea5d6ea6 sha1 06c9b03442650d03948bdd73095ba4541cf4fff4 )
rom ( name "ClubRecords.tzx" size 7744 crc 229bf155 md5 9061510c942e211db25159985fd39a7b sha1 d62dc88512d6dc336dad5637924e6056a19e12a7 )
)
game (
name "Collector's Pack (Sinclair Research)"
description "Collector's Pack (Sinclair Research)"
year 1982
manufacturer "ICL"
rom ( name "collectorspack.p" size 7447 crc ad2faa57 md5 dc7c428a0df6b6140dd71f0924f80316 sha1 67ff172b4ec0b7b088b17ee62df3860851748705 )
rom ( name "CollectorsPack.tzx" size 7665 crc 4998a5d6 md5 8fd43049ae5c0246d79c82d59cef6cd4 sha1 bb2b43893119eabf30754be20992bf32e05e6832 )
)
game (
name "Collector's Recording System (W. H. Smith)"
description "Collector's Recording System (W. H. Smith)"
manufacturer "ICL"
rom ( name "collectorsrecordingsystem.p" size 7447 crc fe3eb9cc md5 8af2b0e4d7a7480859b978aff6b8954d sha1 bf4b5d5c78b6a1e68784296567aa655362d6a552 )
rom ( name "CollectorsRecordingSystem.tzx" size 7665 crc 1a89b64d md5 d0735fc71d39a879e80fe130f3ca8226 sha1 7fb6cf85c4a0e47a2ad78f5f4371deeebadcb923 )
)
game (
name "Community Chest (Artic)"
description "Community Chest (Artic)"
manufacturer "Artic"
rom ( name "communitychest.p" size 14048 crc 0fe4512d md5 a40b1c79c5b578238002454f2a4b92bc sha1 941725aeef9136f7b105bd1e8c21245ec671ac86 )
rom ( name "CommunityChest.tzx" size 14270 crc bf585c82 md5 a4b42d6021ceca0f9c09aa0e6596c110 sha1 c95af3f37795adabe7f251643efff51cb7e2579f )
)
game (
name "ComputaCalc ZX (Alternative cover) (Silicon Tricks)"
description "ComputaCalc ZX (Alternative cover) (Silicon Tricks)"
year 1981
manufacturer "S. C. Stephens"
rom ( name "computacalc.p" size 8990 crc 45eaf966 md5 7d48eecd455038a643e84cfd5feab476 sha1 d765d5c3aa5e516e07eb9465e222a777ed540fa8 )
rom ( name "ComputaCalc.tzx" size 9228 crc 06066afc md5 fe153257a523703b95488a6cdb4640bc sha1 496065dbc17d2461647bb76933ad9247f03cd1de )
)
game (
name "ComputaCalc ZX (Silicon Tricks)"
description "ComputaCalc ZX (Silicon Tricks)"
year 1981
manufacturer "S. C. Stephens"
rom ( name "computacalc.p" size 8990 crc 45eaf966 md5 7d48eecd455038a643e84cfd5feab476 sha1 d765d5c3aa5e516e07eb9465e222a777ed540fa8 )
rom ( name "ComputaCalc.tzx" size 9228 crc 06066afc md5 fe153257a523703b95488a6cdb4640bc sha1 496065dbc17d2461647bb76933ad9247f03cd1de )
)
game (
name "Constellation (Bug Byte)"
description "Constellation (Bug Byte)"
manufacturer "Bug Byte"
rom ( name "constellation.p" size 12385 crc 82892356 md5 b7ff958c98e6955281aed8d50ce4a8b2 sha1 b020cec9fd14f00882de28165f4f2a207e020306 )
rom ( name "Constellation.tzx" size 12611 crc a0146b49 md5 500508c55bfae7c20d1191cf95b37e5d sha1 fb8bbc99988812c5ef372a7358a36ceadb53ae73 )
)
game (
name "Constellation (Gladstone) (Gladstone Electronics)"
description "Constellation (Gladstone) (Gladstone Electronics)"
manufacturer "Bug Byte"
rom ( name "constellation(ge).p" size 15452 crc ca46cb85 md5 7eb28d1ad0f29be00794f00be04ff1e7 sha1 58f35fb046a9e20052dc7b838e1754c593fcdb53 )
rom ( name "Constellation(GE).tzx" size 15694 crc 89092de9 md5 e76748a332503ed9799fb76a16cf24f2 sha1 69da2b7f7a1f311a73858f4787f05c31460e7172 )
)
game (
name "Control Technology Tapes 1,2,3 (Control Technology)"
description "Control Technology Tapes 1,2,3 (Control Technology)"
manufacturer "Control Technology"
rom ( name "ControlTechnology123.tzx" size 48433 crc d9610ea9 md5 1c5691270a4f2ef50a859f6eefe7891f sha1 8e630dbc2725862733cd138e69a7c8ca9eeed84f )
)
game (
name "Conversational German (Timex)"
description "Conversational German (Timex)"
year 1983
manufacturer "D. E. Hagan"
rom ( name "conversationalgerman.p" size 15375 crc 2a3a859e md5 b73d18d611af33ad7c555f03f0cc597d sha1 f03403678a5b6caa88cedee89aee74ba8d4270ab )
rom ( name "ConversationalGerman.tzx" size 15603 crc 810bdcc4 md5 1e27801fd4db30240671c6f1ecbbe73d sha1 ddb421fe807557a6f4a2eb7ea78e15c249b15de1 )
)
game (
name "Cosmic Guerilla (Quicksilva)"
description "Cosmic Guerilla (Quicksilva)"
year 1983
manufacturer "C. K. Tame"
rom ( name "cosmicguerilla.p" size 7333 crc 8594884e md5 37c438dbf7ec1a61b574c870ab04b375 sha1 1f0226f4de15f5ee393761631a6d3aad46c75a10 )
rom ( name "CosmicGuerilla.tzx" size 7561 crc 001ef96d md5 de8ca35128d7ec90516dd6ee759e65a6 sha1 ef8e79312d0dc7efec6bf2a9a6ca785b0e4a94a0 )
)
game (
name "Counter Attack (Woodside Software)"
description "Counter Attack (Woodside Software)"
manufacturer "P. Hennessy"
rom ( name "counterattack.p" size 6975 crc 4095691a md5 846be5d9faf79197323d5c2b05b82136 sha1 45aae62dc5ed72ecba3c33b280b2c3d7310cf942 )
rom ( name "CounterAttack.tzx" size 7219 crc 6b8852ca md5 dfe0270c48c5af69bd0652f723f6c5b2 sha1 286cd36a713f95ffcc5e847539a59de6c55f6c42 )
)
game (
name "Critical Path Analysis (Hilderbay)"
description "Critical Path Analysis (Hilderbay)"
year 1981
manufacturer "Hilderbay"
rom ( name "criticalpathanalysis.p" size 6053 crc 10fb4d01 md5 30f5b565eebb684d446a1d9073860bd2 sha1 e6e505e111c04a395e8a946cf2c5b7bbed948ba1 )
rom ( name "CriticalPathAnalysis.tzx" size 6275 crc 28ee5886 md5 47b2d99a813ea1744ad5a41d15016a8d sha1 3ee5a82dec70e4bd7eb1d514cdd4538cb433f24a )
)
game (
name "Critical Path Analysis (Timex)"
description "Critical Path Analysis (Timex)"
year 1982
manufacturer "W. Emery"
rom ( name "CriticalPathAnalysis(Timex).tzx" size 6720 crc c1835895 md5 af015196bc37c30e8f529da34262ed28 sha1 469f80fbf8e3979b8534e28dabd9d7089e55425e )
)
game (
name "Croaka-Crawla (Quicksilva)"
description "Croaka-Crawla (Quicksilva)"
year 1983
manufacturer "Quicksilva"
rom ( name "croakacrawla.p" size 14666 crc 2e8a9af1 md5 96fdeaf0f549a9198b633a19510be1fe sha1 4bb58b01e86aaf1dc21999e77ec7d557f4353ffe )
rom ( name "CroakaCrawla.tzx" size 14896 crc 1e07d1c3 md5 51e05750eda73cbd667e52d945c742d9 sha1 3489fd97ee769b1b59e0b74ccdeb667f135dbcbd )
)
game (
name "CroZXy Road"
description "CroZXy Road (2015) - Bob's interpretation of Hipster Whale's iconic 'Crossy Road'"
rom ( name "CrozxyRoad.p" size 16058 crc 38885a68 md5 dee3fff6ce7789a7a4a4c38cffdb7a5d sha1 98ef4e7a24f87c9d253da0dc68698850dcd2752f )
)
game (
name "D Coder (Cosma)"
description "D Coder (Cosma)"
manufacturer "Cosma"
rom ( name "DCoder.A.tzx" size 7680 crc 1684ba79 md5 229d7eb3cd3c17b82a1fb4e5daec5370 sha1 39f16bb21b52c566218f38aa07b1951e38c0f8bd )
)
game (
name "Dallas (French) (Cases Computer Simulations)"
description "Dallas (French) (Cases Computer Simulations)"
year 1983
manufacturer "Cases Computer Simulations"
rom ( name "dallas(french).p" size 16151 crc 6fc5f7ec md5 c76bd00587e4017e445c023ad12fdfcb sha1 1d1cd2f2ce3cdfc7a8c18e8bdd1cd0cdc8f2797e )
rom ( name "Dallas(French).tzx" size 16379 crc 4a65562e md5 6ea358b625c6deecce8b906983884a27 sha1 499bee247f3bdc37eca67e95eee1624de11ec5d6 )
)
game (
name "Dictator (Bug Byte)"
description "Dictator (Bug Byte)"
year 1982
manufacturer "Bug Byte"
rom ( name "dictator.p" size 16074 crc 9ef1b3cf md5 8aa9775f53f519ded0ae7f7a2c5b3f60 sha1 42b98d75f715b69c1c54722a05a8d0d7b07783ec )
rom ( name "Dictator.tzx" size 16306 crc b01e01a7 md5 2e2e96ed20915990eb8280021ce7838e sha1 c14608ecc904b6ad8141d64bb4eed66c43b6316d )
)
game (
name "Do Not Pass Go (Work Force)"
description "Do Not Pass Go (Work Force)"
manufacturer "Work Force"
rom ( name "donotpassgo.p" size 13355 crc 292a5505 md5 0480349fbee60fd0939f31cc6d210c2b sha1 a05ba8ad8560a15c5ecffff289d10daa421b5cb8 )
rom ( name "DoNotPassGo.tzx" size 13587 crc a2dd0f0c md5 d4cdfcee0472c465483738b520960d65 sha1 45ded58ce3255e5239722c956eef084bac20ad6d )
)
game (
name "Dodgems and Connect 4 (Brown inlay) (CDS Micro Systems)"
description "Dodgems and Connect 4 (Brown inlay) (CDS Micro Systems)"
year 1982
manufacturer "CDS Micro Systems"
rom ( name "DodgemsAndConnect4(Brown).tzx" size 9488 crc 39d4e107 md5 b6110b1177643dfb269784ee01902964 sha1 de9f3293e482ac4f92b3278d262e45321450fe79 )
)
game (
name "Domin8tr1s"
description "Domin8tr1s (2010) - Arrange the dominoes as they tumble from the sky so that matching digits are adjacent, either horizontally or vertically, to each other. Align the same number of digits as the digit itself to make those dominoes disappear."
rom ( name "DOMIN8TR1S.P" size 6581 crc 96911e31 md5 d3e69b3bba27f609f426a6434f3a93ac sha1 8e8ee9c4fc589f386596ef3b3e8fab9b9ee799ef )
)
game (
name "Dominoes (Phipps Associates)"
description "Dominoes (Phipps Associates)"
year 1983
manufacturer "D. G. Cross"
rom ( name "dominoes.p" size 15143 crc f53499e9 md5 7c250a09c6e3e1fe996ab0df7fc312ff sha1 cd00bf0a030844133f39fbbac4712ba1c8591dca )
rom ( name "Dominoes.tzx" size 15375 crc 4fc4e410 md5 c9ec351812095d3a1a91e4db7926a5d8 sha1 b780954c535ccd6f6a778999b7244de33bb3ad53 )
)
game (
name "Dr. Floyd (Apropos Technology)"
description "Dr. Floyd (Apropos Technology)"
manufacturer "Apropos Technology"
rom ( name "drfloyd.p" size 14062 crc d16282da md5 4e26541f29e46baba6beac4ad8bccc31 sha1 c5531613742a634a5b41503198ae567adc6a42ab )
rom ( name "DrFloyd.tzx" size 14294 crc d5b0408f md5 5e0b05b046b113239ec5efdb9e23589e sha1 6982c898304a0e319434984a019b96682d177661 )
)
game (
name "Dragon Maze (Macronics)"
description "Dragon Maze (Macronics)"
year 1981
manufacturer "Macronics"
rom ( name "dragonmaze.p" size 4750 crc b252b048 md5 d5520c004ecd8e8d15d36fa70fddec8e sha1 f6f90b253527935b27ce3674c49b33d914b37dfc )
rom ( name "DragonMaze.tzx" size 4970 crc c2a29e0d md5 3aaaadd623df3a672361715bb3b9c6f3 sha1 58e77f8d47f0a0061f0545e3d95485d9041d7025 )
)
game (
name "Dungeons of Doom (Temptation Software)"
description "Dungeons of Doom (Temptation Software)"
year 1982
manufacturer "Simon Mansfield"
rom ( name "DungeonsOfDoom.tzx" size 15074 crc d5034066 md5 747215bd1afebf2217addc18b14b1e36 sha1 b2884c73af5da39e4c32d9a11206769e006f456f )
)
game (
name "E.E. 1 - Filter Design (Timex)"
description "E.E. 1 - Filter Design (Timex)"
year 1982
manufacturer "American Micro Products"
rom ( name "ee1filterdesign.p" size 11825 crc a6a157c9 md5 5e5b10ecc426f5820f3dab25b7c6ad92 sha1 152342a49020a5740a50650d9b2bbf9c5d66c9b7 )
rom ( name "EE1FilterDesign.tzx" size 12047 crc 1159b6aa md5 0a3fb9fd79259c485b0df31a4d387d20 sha1 d6714fe623f9e444c22cde90f56488a58fce0d33 )
)
game (
name "Electric Cost Analyzer (Timex)"
description "Electric Cost Analyzer (Timex)"
year 1983
manufacturer "Tim Rossetti"
rom ( name "electriccostanalyzer.p" size 15557 crc bccae88d md5 adca050f5154d5e1107ca72433db06e1 sha1 dd7ae4f987b76d764d60d5a0fd95cf879310dde2 )
rom ( name "ElectricCostAnalyzer.tzx" size 15789 crc d6745b7a md5 ca1d14bad434d1ad36f829aaac3939a1 sha1 f5f5c2a8038df69484937ce4b853b4e83dfcf5f5 )
)
game (
name "Electronics (Spectre)"
description "Electronics (Spectre)"
manufacturer "Spectre"
rom ( name "electronics.p" size 15899 crc b18d5d28 md5 8d3ee1b1eb0d3df446f50731c6659279 sha1 2f56472672d41361c60591d7cf177eb18148976b )
rom ( name "Electronics.tzx" size 16121 crc e777753a md5 48b223d7a2e94415ad4dc381b6a33fe8 sha1 d3a41d3aa66db93144eef927a1c37fc8bb9fab90 )
)
game (
name "Encounter (Quicksilva)"
description "Encounter (Quicksilva)"
year 1982
manufacturer "Pixel"
rom ( name "Encounter.tzx" size 17612 crc af150f3f md5 d526d1745135dcc2bc1f357fa2cab910 sha1 ec8355c006d83dfc367a166ee6f33cb3530381ab )
)
game (
name "Escape From Manhattan (Computer Rentals)"
description "Escape From Manhattan (Computer Rentals)"
year 1983
manufacturer "N. Taylor"
rom ( name "escapefrommanhattan.p" size 16102 crc 63f8023f md5 135b8483bb5b316c8744d824acbb86c1 sha1 53799e5ea4da7a6c5ebba8537126f25ebbeb8285 )
rom ( name "EscapeFromManhattan.tzx" size 16320 crc 2cacbb72 md5 2b526ba624af0fdfc1733099ccec82ab sha1 975c976e36b9dbd47fcf5312fae4ad5c2521d6d7 )
)
game (
name "Escape from Shazzar (International Publishing and Software Inc.)"
description "Escape from Shazzar (International Publishing and Software Inc.)"
year 1983
manufacturer "A. F. Nuttall"
rom ( name "escapefromshazzar.p" size 16146 crc c587593d md5 b2dc9a81ac27d4bc267c8d4a0236acb5 sha1 48fa28f6b637e59f48a58e618617a98f83fe6813 )
rom ( name "EscapeFromShazzar.tzx" size 16376 crc 78075b95 md5 0854165d7caa9f5d43203e5f9c999fa0 sha1 992dfcece29b42c729bbca05422bf090dc7c275c )
)
game (
name "Fast Load Save (Musamy Software)"
description "Fast Load Save (Musamy Software)"
year 1982
manufacturer "Musamy Software"
rom ( name "FastLoadSave.tzx" size 11000 crc 939f03cb md5 be316fadc3492e475e6d07bdf9ae310e sha1 616dfc2662d46f415277990bebf0b09e187ed36e )
)
game (
name "Flight Simulation (Sinclair Research)"
description "Flight Simulation (Sinclair Research)"
year 1982
manufacturer "Psion"
rom ( name "flightsimulation.p" size 13627 crc 7b1bb76a md5 7279ffb7409871741475587b3f707e70 sha1 f80f7b67fb2a629fa1492f67756ea2078e6d28d7 )
rom ( name "FlightSimulation.tzx" size 13855 crc 945da3c1 md5 cad45e8938878607ed1a6ca38f08c3c5 sha1 de020d7531c0904a8a152193e7b3d5203e5c1017 )
)
game (
name "Flug-Simulation (Sinclair Research)"
description "Flug-Simulation (Sinclair Research)"
year 1982
manufacturer "Psion"
rom ( name "flightsimulation.p" size 13627 crc 7b1bb76a md5 7279ffb7409871741475587b3f707e70 sha1 f80f7b67fb2a629fa1492f67756ea2078e6d28d7 )
rom ( name "FlightSimulation.tzx" size 13855 crc 945da3c1 md5 cad45e8938878607ed1a6ca38f08c3c5 sha1 de020d7531c0904a8a152193e7b3d5203e5c1017 )
)
game (
name "Football (Tyrant)"
description "Football (Tyrant)"
manufacturer "Tyrant"
rom ( name "football.p" size 15626 crc 33233387 md5 ef4f6c235f9017f7b4c83f19ffc72818 sha1 f0ee8a1607a606d22b7c2ba518a06bd2cd387fd9 )
rom ( name "Football.tzx" size 15858 crc 8503533c md5 673dfecb1920d35fcd55f23aab95dbf8 sha1 d75dfc7310f08160f7ff61f2e08f2ed4fa5aabb0 )
)
game (
name "Football Manager (Addictive Games)"
description "Football Manager (Addictive Games)"
year 1982
manufacturer "Kevin J. Toms"
rom ( name "footballmanager.p" size 14736 crc fff630de md5 192646c148629b8f4b21cd9497c7c906 sha1 5a9fb7c31e7049ed46d1fce4f68551bb063d857d )
rom ( name "FootballManager.tzx" size 14968 crc 34e09721 md5 2c766ddb245dfa7cd4821b49875f63bd sha1 56180074fe4bbc0f6c0189b88482affd537b5645 )
)
game (
name "Football Manager (Black inlay) (Addictive Games)"
description "Football Manager (Black inlay) (Addictive Games)"
year 1981
manufacturer "Kevin J. Toms"
rom ( name "footballmanager.p" size 14736 crc fff630de md5 192646c148629b8f4b21cd9497c7c906 sha1 5a9fb7c31e7049ed46d1fce4f68551bb063d857d )
rom ( name "FootballManager.tzx" size 14968 crc 34e09721 md5 2c766ddb245dfa7cd4821b49875f63bd sha1 56180074fe4bbc0f6c0189b88482affd537b5645 )
)
game (
name "Football Manager (Red) (Addictive Games)"
description "Football Manager (Red) (Addictive Games)"
year 1981
manufacturer "Kevin J. Toms"
rom ( name "footballmanager.p" size 14736 crc fff630de md5 192646c148629b8f4b21cd9497c7c906 sha1 5a9fb7c31e7049ed46d1fce4f68551bb063d857d )
rom ( name "FootballManager.tzx" size 14968 crc 34e09721 md5 2c766ddb245dfa7cd4821b49875f63bd sha1 56180074fe4bbc0f6c0189b88482affd537b5645 )
)
game (
name "Football Pools Program (Hartland Software)"
description "Football Pools Program (Hartland Software)"
manufacturer "Hartland Software"
rom ( name "FootballPools.tzx" size 24422 crc 2d0ed98b md5 387bb8707269de22cfb13b4c8781d20c sha1 a2ae0611ad434600777c2ba0df4cc48d8109d9f8 )
)
game (
name "Football-League (Video Software)"
description "Football-League (Video Software)"
year 1981
manufacturer "Video Software"
rom ( name "FootballLeague.A.tzx" size 14343 crc 78694c75 md5 64ad8a73b7b3b45c35aa937b09e14817 sha1 4887f03b6e5725d1acb156a485ddc9c450607d88 )
rom ( name "footballleague.p" size 14097 crc 9e4623c5 md5 b430448d983a97c6de8d0fd776bef9c8 sha1 c8b1bd7a85d2981ec2b6478e0c58b36dccb42ac3 )
)
game (
name "Forth (Sinclair Research)"
description "Forth (Sinclair Research)"
year 1983
manufacturer "Artic"
rom ( name "Forth.tzx" size 14183 crc 376c5750 md5 5ad0f910d2987e3a51716dd82e6f4113 sha1 012a7e585c3f2d245e3d7ffba935ea1962be21c4 )
)
game (
name "Fortress of Zorlac (Timex)"
description "Fortress of Zorlac (Timex)"
year 1982
manufacturer "Paul Carlson"
rom ( name "fortressofzorlac.p" size 7214 crc aded8203 md5 0852a128df135af9f240356567d626b8 sha1 872b7049cab2fea166921ba30d93fccdaf63f840 )
rom ( name "FortressOfZorlac.tzx" size 7442 crc 30d3ba7d md5 05b14472e34f62f64d40e71f0001f900 sha1 13f8969e92932f3f6e4c6f177bbe34512780b96f )
)
game (
name "Forty Niner (Software Farm)"
description "Forty Niner (Software Farm)"
manufacturer "Software Farm"
rom ( name "fortyniner.p" size 13868 crc b8650da4 md5 9729d9b8a4faee1d12f4384f789c0b44 sha1 694ac6d1410eade17ecc9e06a3c39191e8dda352 )
rom ( name "FortyNiner.tzx" size 14106 crc 1c4eff0a md5 fba0b998270a673af60ede6b1f6da4ff sha1 e563342e858b8c38a384ebfd695c479feb01a4a5 )
)
game (
name "Frogger (DJL Software)"
description "Frogger (DJL Software)"
manufacturer "DJL Software"
rom ( name "frogger.p" size 13493 crc 8d24d478 md5 db791414f02377a0b2bb60e1539401f3 sha1 29d815b98770a1fbae3714642c5c70583d02ed17 )
rom ( name "Frogger.tzx" size 13723 crc bd7df880 md5 9a8c77a4c24e8e67f7308be91a2b95aa sha1 75499b16de8dfbabf668328109d0a36963bfd11b )
)
game (
name "Frogger (Sega) (Timex)"
description "Frogger (Sega) (Timex)"
year 1981
manufacturer "Cornsoft/Sega"
rom ( name "frogger(sega).p" size 10638 crc 3993108b md5 1e6fdfe09452ba5609c693a7683c94f7 sha1 b17facf22bb6f66fe8eef0977cbdf1b1ecde6c6c )
rom ( name "Frogger(Sega).tzx" size 10868 crc 95952886 md5 e8ebe732890b6dc7d39674e7bf527716 sha1 08999372caf4a07b532e7360f1573c5262b56ed7 )
)
game (
name "Froggy (DJL Software)"
description "Froggy (DJL Software)"
year 1982
manufacturer "DJL Software"
rom ( name "froggy.p" size 10394 crc 5624f4f4 md5 c0408bb2b6d716d9643fa64670d7c241 sha1 9f45088a30fdbddffccb01f55690cde7276df088 )
rom ( name "Froggy.tzx" size 10622 crc e84f00da md5 8a827657ccd27300bafaa4af1076045a sha1 c0d7d2db94e8fb84bb22428b0b6a5c5ccc11c52b )
)
game (
name "Frogs (Mikro-Gen)"
description "Frogs (Mikro-Gen)"
manufacturer "Mikro-Gen"
rom ( name "frogs.p" size 4223 crc b5335a99 md5 55d1b367c05a5f9259da78aad2b072da sha1 d3edabf6c4e7e88cb1224ace1c63b2735dbf2f0f )
rom ( name "Frogs.tzx" size 4453 crc efd0f05e md5 9409197480d2e19da908b0594580ee89 sha1 899d5cdf74208e30d17c5d34f5733d207222daaa )
)
game (
name "Fun Fair Adventure (Fawkes Computing)"
description "Fun Fair Adventure (Fawkes Computing)"
year 1983
manufacturer "Fawkes Computing"
rom ( name "funfairadventure.p" size 15670 crc f5238943 md5 4f267d0ad39d72853cbb7ff914a491b0 sha1 d654cca3195f48a50e1391bc5bc8db72a1d4215f )
rom ( name "FunFairAdventure.tzx" size 15892 crc 477b0e8f md5 8b00dde0094158be9fa735e62bc99bf9 sha1 c828c69e2a899e1b15968dafeaeb19b6045b360b )
)
game (
name "FUNdamentals of Math (Timex)"
description "FUNdamentals of Math (Timex)"
year 1983
manufacturer "ATM"
rom ( name "FUNdamentalsOfMath.tzx" size 39312 crc 75ade9a1 md5 fbe76752ce6fd550c78f7116e8472d37 sha1 0c1fd6d5034fa73e8d1d3dd525e088cd96971bd7 )
)
game (
name "Galactic Gunner (Timex)"
description "Galactic Gunner (Timex)"
year 1983
manufacturer "Paul W. Carlson"
rom ( name "galacticgunner.p" size 8786 crc fef205ce md5 35300ca762e104fc8c6efba2280feb96 sha1 cbb2fb7c55caa311826d2a2481c6dffad40b5863 )
rom ( name "GalacticGunner.tzx" size 9014 crc 1ee1c007 md5 9e6d42b5ba230a9e298dfe1c49744b23 sha1 93f8f8b5fde8de8305d0946f25296da88e26d720 )
)
game (
name "Galactic Patrol (Computer Rentals)"
description "Galactic Patrol (Computer Rentals)"
year 1983
manufacturer "Richard Brisbourne"
rom ( name "galacticpatrol.p" size 6063 crc 6fc3b9b1 md5 d88dcbd760136c7635c3cd44fc2f7548 sha1 e3c8afbb3e1dfd637aa974f33a887293965f573e )
rom ( name "GalacticPatrol.tzx" size 6295 crc 25cb9c4e md5 03a02bf71f85c41298c99424a97c1ffd sha1 ed32fc48477d367e241b4a7f311f7d0c7caa615a )
)
game (
name "Galactic Patrol (Omega re-release) (Omega)"
description "Galactic Patrol (Omega re-release) (Omega)"
year 1984
manufacturer "CRL"
rom ( name "galacticpatrol.p" size 6063 crc 6fc3b9b1 md5 d88dcbd760136c7635c3cd44fc2f7548 sha1 e3c8afbb3e1dfd637aa974f33a887293965f573e )
rom ( name "GalacticPatrol.tzx" size 6295 crc 25cb9c4e md5 03a02bf71f85c41298c99424a97c1ffd sha1 ed32fc48477d367e241b4a7f311f7d0c7caa615a )
)
game (
name "Galactic Trooper (Romik Software)"
description "Galactic Trooper (Romik Software)"
year 1983
manufacturer "Ian Morrison and David Anderson"
rom ( name "galactictrooper.p" size 4269 crc ae87f0a7 md5 74661343c5098f10bf44fdf40dc02f04 sha1 e6ba889b1f3d97366cc829d07e9d13fd665d40f5 )
rom ( name "GalacticTrooper.tzx" size 4517 crc 95146c5f md5 86cd07956e3d37c94d5cc19c7753f152 sha1 ee48ee10e53adbbbfe6d62c8b4fbadea8bc1eb16 )
)
game (
name "Galaxians (Artic)"
description "Galaxians (Artic)"
manufacturer "Artic"
rom ( name "galaxians.p" size 3562 crc b5fc1488 md5 ef30971ad58c33fe200bb36f95470350 sha1 190a30b1b54c09e681b8f07c196999e80105da98 )
rom ( name "Galaxians.tzx" size 3788 crc 1cb67cb3 md5 d81a74c24c6e4b923d3cde71b05ee5e0 sha1 8bec4c27d81da870a63ee5da3205855c27acb802 )
)
game (
name "Galaxians (Monochrome) (Artic)"
description "Galaxians (Monochrome) (Artic)"
manufacturer "Artic"
rom ( name "galaxians.p" size 3562 crc b5fc1488 md5 ef30971ad58c33fe200bb36f95470350 sha1 190a30b1b54c09e681b8f07c196999e80105da98 )
rom ( name "Galaxians.tzx" size 3788 crc 1cb67cb3 md5 d81a74c24c6e4b923d3cde71b05ee5e0 sha1 8bec4c27d81da870a63ee5da3205855c27acb802 )
)
game (