forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSinclair - ZX 81.dat
7303 lines (6087 loc) · 295 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 "2021.9.6"
author "libretro"
comment "Converted from Sinclair ZX81 - Games - [P] (TOSEC-v2021-07-25_CM)"
)
game (
name "2D Labyrinth (19xx)(-)"
description "2D Labyrinth (19xx)(-)"
rom ( name "2D Labyrinth (19xx)(-).p" size 1378 crc 8b2bfb37 md5 80f9704f7d6ca109b1e44f78ccf8bd02 sha1 197ae77428df30a3b7b69fa87c38ce72c7bc5cea )
)
game (
name "2D Labyrinth (19xx)(-)[a]"
description "2D Labyrinth (19xx)(-)[a]"
rom ( name "2D Labyrinth (19xx)(-)[a].p" size 1433 crc 5d6cc3f4 md5 2b8faf0a2450632917a2ed1077b8ee91 sha1 43d4f50e4489e91bdc28fa303aa13aa539e791f1 )
)
game (
name "3D 3D (1981)(DK'Tronics)"
description "3D 3D (1981)(DK'Tronics)"
rom ( name "3D 3D (1981)(DK'Tronics).p" size 12366 crc 572b34bb md5 d281834dd53609d4f977086a2a5d7a65 sha1 738ad81449bfa32fd05bc0da3a7035f7c9a9728d )
)
game (
name "3D Defender (19xx)(J.K. Greye Software)"
description "3D Defender (19xx)(J.K. Greye Software)"
rom ( name "3D Defender (19xx)(J.K. Greye Software).p" size 11857 crc d9c0479c md5 1da932d29f72bcd722ac2cb83945d562 sha1 47297536f28f61708649c7abe0a1d2fbca9def12 )
)
game (
name "3D Defender (19xx)(J.K. Greye Software)(nl)"
description "3D Defender (19xx)(J.K. Greye Software)(nl)"
rom ( name "3D Defender (19xx)(J.K. Greye Software)(nl).p" size 11893 crc 913e624b md5 45d9059f6fce222575bd07fe7bef6a70 sha1 73dde0e2f6e2b5fc684ab89cb8f0e862f4e8fc84 )
)
game (
name "3D Defender (19xx)(J.K. Greye Software)(nl)[a]"
description "3D Defender (19xx)(J.K. Greye Software)(nl)[a]"
rom ( name "3D Defender (19xx)(J.K. Greye Software)(nl)[a].p" size 11857 crc 6dbc99ff md5 90952fb3f16f84c5b70fbdf66e046b18 sha1 c14897aa16fc09c1ea04df1dd14b20bb5b00b8b1 )
)
game (
name "3D Defender (19xx)(J.K. Greye Software)[a]"
description "3D Defender (19xx)(J.K. Greye Software)[a]"
rom ( name "3D Defender (19xx)(J.K. Greye Software)[a].p" size 11857 crc 46df0343 md5 6095d19b9b4fcfccf4e70a7e289d678c sha1 d04c0bcea590bac85bcb353e7e5485522887b4a5 )
)
game (
name "3D Escape (19xx)(-)"
description "3D Escape (19xx)(-)"
rom ( name "3D Escape (19xx)(-).p" size 9616 crc 6c8079cf md5 f68ab71a2cc3e17404b6dc08c0d18e3c sha1 db4bf2e2e0f4bb7fb099d2c7a179e1495f5a675f )
)
game (
name "3D Grand Prix (1982)(DK'Tronics)"
description "3D Grand Prix (1982)(DK'Tronics)"
rom ( name "3D Grand Prix (1982)(DK'Tronics).p" size 13184 crc b6c9da85 md5 1995913c75f3015c3b190ccf0b4057fc sha1 eea020b34112c1d912c4609083226caaefa4b2ca )
)
game (
name "3D Grand Prix (1982)(DK'Tronics)[a2]"
description "3D Grand Prix (1982)(DK'Tronics)[a2]"
rom ( name "3D Grand Prix (1982)(DK'Tronics)[a2].p" size 14007 crc 14eacddf md5 d88bb474b8d07e9ff2c1f7ddee91d230 sha1 283f87e4b7e516b50210c059bf3b22a9f202f246 )
)
game (
name "3D Grand Prix (1982)(DK'Tronics)[a]"
description "3D Grand Prix (1982)(DK'Tronics)[a]"
rom ( name "3D Grand Prix (1982)(DK'Tronics)[a].p" size 13197 crc 55a1b582 md5 d133be4773727d3c962fc8a7834481ca sha1 b574f3799be62cf13151b063636bfa22f4545185 )
)
game (
name "3D Highway Race (19xx)(Tarusoft)(de)"
description "3D Highway Race (19xx)(Tarusoft)(de)"
rom ( name "3D Highway Race (19xx)(Tarusoft)(de).p" size 4409 crc 35b726fc md5 0fc57fedd7bdad8ea137b28f4704afaf sha1 bd4963d17e38035d8430464833150ea8eb054bef )
)
game (
name "3D Highway Race (19xx)(Tarusoft)(nl)"
description "3D Highway Race (19xx)(Tarusoft)(nl)"
rom ( name "3D Highway Race (19xx)(Tarusoft)(nl).p" size 4700 crc 4fb56a66 md5 bc9b3ef113bd5af684f65cb520a62994 sha1 c0a8cc6146b14a1264b205c793d72bafe9311ff3 )
)
game (
name "3D Highway Race v1.0 (1983)(Thomas A. Runkler)(de)"
description "3D Highway Race v1.0 (1983)(Thomas A. Runkler)(de)"
rom ( name "3D Highway Race v1.0 (1983)(Thomas A. Runkler)(de).p" size 4094 crc 978c58e6 md5 cba6d05c1465ac7435346bef8f9a9ca3 sha1 727fda3c5ed5e2d40a3b83d0ed21fd9f221b8354 )
)
game (
name "3D Labyrinth (1983)(H. Stamm)"
description "3D Labyrinth (1983)(H. Stamm)"
rom ( name "3D Labyrinth (1983)(H. Stamm).p" size 4926 crc fa056d31 md5 7c1faf8724d176877fcd3295542cf204 sha1 2501daef32e4816b60877fd8f30add33e9a790df )
)
game (
name "3D Labyrinth (1983)(H. Stamm)[a2]"
description "3D Labyrinth (1983)(H. Stamm)[a2]"
rom ( name "3D Labyrinth (1983)(H. Stamm)[a2].p" size 4902 crc d8eef1f0 md5 cb1b58f0b21d0e9eb8a05ec1a45d89c4 sha1 43d2dbe96d5265e10a80b71fdd93599ca4b59bc7 )
)
game (
name "3D Labyrinth (1983)(H. Stamm)[a]"
description "3D Labyrinth (1983)(H. Stamm)[a]"
rom ( name "3D Labyrinth (1983)(H. Stamm)[a].p" size 4870 crc b9d61ff6 md5 62e2bc6559eee266c29387b7d64eef0d sha1 4bd2cc8304eb5be0009dfe8b685b017a31fe40c5 )
)
game (
name "3D Labyrinth (19xx)(-)(de)"
description "3D Labyrinth (19xx)(-)(de)"
rom ( name "3D Labyrinth (19xx)(-)(de).p" size 15882 crc 5198af48 md5 1521137d0bc87c557b49e8c918958b7e sha1 c52500d06e353c7e4065e749f1b4df7f927529f3 )
)
game (
name "3D Maze (19xx)(-)"
description "3D Maze (19xx)(-)"
rom ( name "3D Maze (19xx)(-).p" size 10017 crc d50316b2 md5 1c6160abe7fccd6b400a9f890f6eab95 sha1 da172f68d4b0dad8f76e1eb3652aecd978957883 )
)
game (
name "3D Maze (19xx)(-)[a]"
description "3D Maze (19xx)(-)[a]"
rom ( name "3D Maze (19xx)(-)[a].p" size 10044 crc 3b064392 md5 c2c0a81052c24b299622de718a64b60b sha1 ea7924c46b29b250cf7a6b545d6e7ca136302cac )
)
game (
name "3D Monster Labyrinth (19xx)(-)(de)"
description "3D Monster Labyrinth (19xx)(-)(de)"
rom ( name "3D Monster Labyrinth (19xx)(-)(de).p" size 9707 crc ccceaec0 md5 e5c2b270cc2cfa725ae0094155d2be9e sha1 479d107367da87bbbf433eac7595508c31a5d65d )
)
game (
name "3D Monster Maze (19xx)(J.K. Greye Software)"
description "3D Monster Maze (19xx)(J.K. Greye Software)"
rom ( name "3D Monster Maze (19xx)(J.K. Greye Software).p" size 10612 crc 026eb1ed md5 979096cf53a9f925d7647dbd0d7bc9da sha1 f1815764327b732cccc0a2405682d22c686a0303 )
)
game (
name "3D Monster Maze (19xx)(J.K. Greye Software)[a]"
description "3D Monster Maze (19xx)(J.K. Greye Software)[a]"
rom ( name "3D Monster Maze (19xx)(J.K. Greye Software)[a].p" size 10553 crc 18850e9a md5 2fdfa40fddf39be6eb8e0ef971108a4f sha1 b9eeb78b7ea2420b4df00111a6331dca8a154f30 )
)
game (
name "3D Netwerk (19xx)(-)"
description "3D Netwerk (19xx)(-)"
rom ( name "3D Netwerk (19xx)(-).p" size 1743 crc 3ceec3c5 md5 78c73813e72c25bec2a53e51c3d762ec sha1 8684edd2c1f4d655c0423b0c414407d5b7ead506 )
)
game (
name "3D Nought and Crosses (19xx)(-)"
description "3D Nought and Crosses (19xx)(-)"
rom ( name "3D Nought and Crosses (19xx)(-).p" size 4277 crc 1a08e705 md5 4d40e3cbf404ea04c1bc7aac90ac5cec sha1 96021b34b156f9c6cef4645d4ed9fa5630926320 )
)
game (
name "3D Oxo (1984)(A.J. Heathcote)"
description "3D Oxo (1984)(A.J. Heathcote)"
rom ( name "3D Oxo (1984)(A.J. Heathcote).p" size 3100 crc 8baadd01 md5 85d042e18354b30518ef103e33cd77d7 sha1 2e7584c0628779bbdf27bb27da434232761c0168 )
)
game (
name "3D Rotatie (19xx)(Frank Moquette)(nl)"
description "3D Rotatie (19xx)(Frank Moquette)(nl)"
rom ( name "3D Rotatie (19xx)(Frank Moquette)(nl).p" size 8324 crc 3af11a95 md5 e71d2b918ee40846f183097d5f9277de sha1 402a209e06426bd719bca64fd62377277fc9f518 )
)
game (
name "3D Tic-Tac-Toe (19xx)(-)"
description "3D Tic-Tac-Toe (19xx)(-)"
rom ( name "3D Tic-Tac-Toe (19xx)(-).p" size 10772 crc 9bc53e75 md5 954fd6960565a8c7e971850573ec8888 sha1 4e0823758481e8177036a16c2056930ba4de1184 )
)
game (
name "3D Tic-Tac-Toe (19xx)(-)[a]"
description "3D Tic-Tac-Toe (19xx)(-)[a]"
rom ( name "3D Tic-Tac-Toe (19xx)(-)[a].p" size 10809 crc 00aafa57 md5 c68775f7caa4461a69aba6a3c3f27710 sha1 e211e3987551b068650406853baa24287a0cd186 )
)
game (
name "3D-Mover (19xx)(-)"
description "3D-Mover (19xx)(-)"
rom ( name "3D-Mover (19xx)(-).p" size 3963 crc 0c9c132d md5 c04f05df5374f413849a022deefdf1f8 sha1 a712b26584f1e00b1adb5057623660999a471ec0 )
)
game (
name "4472 Flying Scotsman (19xx)(-)"
description "4472 Flying Scotsman (19xx)(-)"
rom ( name "4472 Flying Scotsman (19xx)(-).p" size 5269 crc ff92e9e2 md5 9c19a7fc97c3ac868bd2e98787a1f27c sha1 d0f99507a5caa4a3c0906b355b26b4b2fac92a2d )
)
game (
name "4472 Flying Scotsman (19xx)(-)(nl)"
description "4472 Flying Scotsman (19xx)(-)(nl)"
rom ( name "4472 Flying Scotsman (19xx)(-)(nl).p" size 5457 crc 4a2fedf5 md5 c3dad6a2fcdcac6a2f69970d98f1b629 sha1 b6bdf5521cecbfdb9d4c6bdc5baa7a9dc17a3298 )
)
game (
name "8 Way Scroll (19xx)(-)"
description "8 Way Scroll (19xx)(-)"
rom ( name "8 Way Scroll (19xx)(-).p" size 1566 crc 95d2db59 md5 869807b887384f6493ccdca243203368 sha1 978d77c2f97f3bd533363f7d90cb55bce47c929c )
)
game (
name "84 Caves, The (19xx)(-)"
description "84 Caves, The (19xx)(-)"
rom ( name "84 Caves, The (19xx)(-).p" size 16008 crc 45af5f31 md5 f52272c2b4a543d383a0c756ddc56c16 sha1 bed9996e36fec0f7642df23e85120ad0411872b0 )
)
game (
name "84 Caves, The (19xx)(-)[a]"
description "84 Caves, The (19xx)(-)[a]"
rom ( name "84 Caves, The (19xx)(-)[a].p" size 16045 crc a09ca03b md5 d24a1a226845a6b078658fb0caa0feeb sha1 1357d8da5f7cc4df7ddc4f48408249bec7bdf025 )
)
game (
name "A Day at the Horseraces v2.0 (19xx)(-)"
description "A Day at the Horseraces v2.0 (19xx)(-)"
rom ( name "A Day at the Horseraces v2.0 (19xx)(-).p" size 4080 crc cbf6f6ec md5 ef5b5dcc2b781c70f51190a386fced49 sha1 ebdfa58fc56f4826fd57cf86731778387a2e9225 )
)
game (
name "ABC (1982)(R.J. Connolly)"
description "ABC (1982)(R.J. Connolly)"
rom ( name "ABC (1982)(R.J. Connolly).p" size 16242 crc dc399f52 md5 bfea4fa49c592004531af78c6840e52a sha1 3bf4b05f6e22c8f58cffe87676a132f0e3c34283 )
)
game (
name "ABC (1982)(R.J. Connolly)[a]"
description "ABC (1982)(R.J. Connolly)[a]"
rom ( name "ABC (1982)(R.J. Connolly)[a].p" size 16294 crc 7b0a05bd md5 1576f70a5a7b624240eedd93218fcee3 sha1 03bfe9edee0bf5179fdfb4afe2f5fc24678ab009 )
)
game (
name "Adressen Bestand (19xx)(M.E. Dias da Silva)(nl)"
description "Adressen Bestand (19xx)(M.E. Dias da Silva)(nl)"
rom ( name "Adressen Bestand (19xx)(M.E. Dias da Silva)(nl).p" size 4320 crc 9b122e26 md5 b9843021c14e128a8b5d693fffbe50d2 sha1 cb818a46c508da5c21401aa91721ca9b8cc79557 )
)
game (
name "Adressenbestand (19xx)(A.V. Oosten)(nl)"
description "Adressenbestand (19xx)(A.V. Oosten)(nl)"
rom ( name "Adressenbestand (19xx)(A.V. Oosten)(nl).p" size 6136 crc f27cb476 md5 f959bd41ced5f279f59ad751a4e2095c sha1 786c7deff654428f32c632779e2142a0cde7a6bd )
)
game (
name "Adressverwaltung (19xx)(-)(de)"
description "Adressverwaltung (19xx)(-)(de)"
rom ( name "Adressverwaltung (19xx)(-)(de).p" size 14550 crc 646bd23a md5 b875267a867278d6b519e6f08254b956 sha1 ed3b3f4bd7c8de0a5fbb7b260e51fbf8d3389816 )
)
game (
name "Advanced Lawnmower Simulator (1998)(Joe Mackay)"
description "Advanced Lawnmower Simulator (1998)(Joe Mackay)"
rom ( name "Advanced Lawnmower Simulator (1998)(Joe Mackay).p" size 6252 crc 544e1fd2 md5 9c52c1d4ee9d2c6aaec7dc44ecc805d3 sha1 128cc0feae9a7732841c659765dba8651108453a )
)
game (
name "Adventure (19xx)(-)"
description "Adventure (19xx)(-)"
rom ( name "Adventure (19xx)(-).p" size 1514 crc 473c600c md5 961f456e08c0b913f346b47696615a1d sha1 277b970b14c2b71679d6ad09086c7241dd26204d )
)
game (
name "Adventure (19xx)(-)(de)"
description "Adventure (19xx)(-)(de)"
rom ( name "Adventure (19xx)(-)(de).p" size 6522 crc eedfd4c3 md5 92f708f403a162bafc30da67f795bb2b sha1 b7fdea76e78a911cb73eec1edffb0b020c0909a6 )
)
game (
name "Adventure A - The Planet of Death (1981)(Artic Computing)"
description "Adventure A - The Planet of Death (1981)(Artic Computing)"
rom ( name "Adventure A - The Planet of Death (1981)(Artic Computing).p" size 13446 crc de006856 md5 458fbee3663e166dd2dea340f5ecf35c sha1 74bb494eb2ed2e655a1dbc72e56d830327b1d656 )
)
game (
name "Adventure B - Inca Treasure (1981)(Artic Computing)"
description "Adventure B - Inca Treasure (1981)(Artic Computing)"
rom ( name "Adventure B - Inca Treasure (1981)(Artic Computing).p" size 11976 crc 07011c26 md5 429d7a7d23fbbdfb7a6e52487105a0ec sha1 e916708cdab0590a33c11dfcebdf35a9809d3181 )
)
game (
name "Adventure C - Alien Spaceship (1982)(Artic Computing)"
description "Adventure C - Alien Spaceship (1982)(Artic Computing)"
rom ( name "Adventure C - Alien Spaceship (1982)(Artic Computing).p" size 14046 crc 9e67fd25 md5 c44d284853874c29bdc4494661bf787b sha1 0a93d32f64f383a478773146fe7c8c5adc77e4e2 )
)
game (
name "Adventure C - Alien Spaceship (1982)(Artic Computing)[a2]"
description "Adventure C - Alien Spaceship (1982)(Artic Computing)[a2]"
rom ( name "Adventure C - Alien Spaceship (1982)(Artic Computing)[a2].p" size 14138 crc 1c30bbb6 md5 ea09c7229fa0d941da10c1fba3316203 sha1 26f63a7f4c4a13bec2fbf5a622514fc75e0a6ddb )
)
game (
name "Adventure C - Alien Spaceship (1982)(Artic Computing)[a]"
description "Adventure C - Alien Spaceship (1982)(Artic Computing)[a]"
rom ( name "Adventure C - Alien Spaceship (1982)(Artic Computing)[a].p" size 14045 crc c5dacb64 md5 efdbcf590e1430377e4c44fc40a50f84 sha1 3ad6bc4e0c243618935450f7ef4d22b7f4b04540 )
)
game (
name "Adventure D - Espionage Island (1982)(Artic Computing)"
description "Adventure D - Espionage Island (1982)(Artic Computing)"
rom ( name "Adventure D - Espionage Island (1982)(Artic Computing).p" size 15505 crc 5b7beab1 md5 e3ef761aafc4d5ccaf7bd5e4fe782840 sha1 476f5f7d171e2178cfbbbcdcd8a6a2045cd761a8 )
)
game (
name "Adventure D - Espionage Island (1982)(Artic Computing)[a]"
description "Adventure D - Espionage Island (1982)(Artic Computing)[a]"
rom ( name "Adventure D - Espionage Island (1982)(Artic Computing)[a].p" size 15504 crc c87b25a5 md5 30eb470148f9007745f93054531dc7d6 sha1 2fd8981ce9d8c913fc3d54a8e514ecac02890cb1 )
)
game (
name "Air Attack (19xx)(-)"
description "Air Attack (19xx)(-)"
rom ( name "Air Attack (19xx)(-).p" size 2599 crc e15c4e89 md5 1a50a1372a12fbdeb499e15936cb4678 sha1 c565e01579e7df87140c9d558db2486dcb7505b7 )
)
game (
name "Airline (1982)(CCS)"
description "Airline (1982)(CCS)"
rom ( name "Airline (1982)(CCS).p" size 15791 crc dbcd14de md5 32a2dbd0a161c9cd49081c3e547bb869 sha1 3aed206ac6860038b54710a5b0cffc9a40f6f338 )
)
game (
name "Airline (1982)(CCS)[a]"
description "Airline (1982)(CCS)[a]"
rom ( name "Airline (1982)(CCS)[a].p" size 15823 crc 03b055aa md5 2384f090547aeea7ae0ef33b54358149 sha1 4c5bd57e01e550ff96208c3f19d6e06142d480c3 )
)
game (
name "Alien (19xx)(-)"
description "Alien (19xx)(-)"
rom ( name "Alien (19xx)(-).p" size 7121 crc e11612b0 md5 405b146d8244a687c689d8f65dcb23cc sha1 984fe9eb7fd875f1b0e39ae7b5212f585829f15f )
)
game (
name "Alien Attack (19xx)(J. Jones)"
description "Alien Attack (19xx)(J. Jones)"
rom ( name "Alien Attack (19xx)(J. Jones).p" size 1773 crc 8f65bbcc md5 95c7047ec5a82bd06d44efcff9701a5c sha1 723fb9a3b24c5be0912f4e8bc1da12b39fa75333 )
)
game (
name "Alien Attack (19xx)(J. Jones)[a]"
description "Alien Attack (19xx)(J. Jones)[a]"
rom ( name "Alien Attack (19xx)(J. Jones)[a].p" size 1810 crc dc34db5d md5 d3e35c667a7c9a741928c0a28362d85e sha1 07fe537b6afd0c260d4eb3dab5cc8d9573766b00 )
)
game (
name "Alien Descender (1983)(Fontana Publishing)"
description "Alien Descender (1983)(Fontana Publishing)"
rom ( name "Alien Descender (1983)(Fontana Publishing).p" size 2489 crc f878cc22 md5 4511f845e71a7c4db94f9be7c6cb21a8 sha1 77e52b020e1a7d921e88995d04b94f6e81f455f2 )
)
game (
name "All Change Routine (19xx)(-)"
description "All Change Routine (19xx)(-)"
rom ( name "All Change Routine (19xx)(-).p" size 1763 crc 9980ef60 md5 f0ecf79333604663c600e5541cd1988d sha1 2760e2be12bac54be13ba092b5dc8517eca3d16e )
)
game (
name "Als Alfred Hitchcock's Birds (19xx)(nl)"
description "Als Alfred Hitchcock's Birds (19xx)(nl)"
rom ( name "Als Alfred Hitchcock's Birds (19xx)(nl).p" size 3304 crc 8bdaa8ac md5 2e72125e413137a4bed5a2ce97ea3876 sha1 55238e321bfebb5433378ced6cdb641bb9cd5ed9 )
)
game (
name "Amaze (1983)(Fontana Publishing)"
description "Amaze (1983)(Fontana Publishing)"
rom ( name "Amaze (1983)(Fontana Publishing).p" size 2791 crc b0a585e0 md5 c7068d132ad0c56a5ba1e7fca199eb40 sha1 1ffe5543cc3627f9768bbc2b6292a952946cbbeb )
)
game (
name "Ambassador ZX-81 (19xx)(-)(it)"
description "Ambassador ZX-81 (19xx)(-)(it)"
rom ( name "Ambassador ZX-81 (19xx)(-)(it).p" size 13525 crc 5dc8c90e md5 55f87403065610caba9a7a982b0af939 sha1 51b7bb8c7536dc8ff0ccbe806e526eb8a8fa08d0 )
)
game (
name "Ambulance (1984)(Sinclair User)[16K]"
description "Ambulance (1984)(Sinclair User)[16K]"
rom ( name "Ambulance (1984)(Sinclair User)[16K].p" size 3767 crc 0c337fd8 md5 35e17ece779224a55d237a9ef15c63c9 sha1 1f9b5ee5cb677e6c7223f55fc2bbc26e7fc73dc4 )
)
game (
name "Analiser (19xx)(-)(nl)"
description "Analiser (19xx)(-)(nl)"
rom ( name "Analiser (19xx)(-)(nl).p" size 1133 crc 6e544e35 md5 7660381c6dd588c7095f6365ed85473a sha1 75cbf4a29a3452e689b86e91897ec8f52e9da2d4 )
)
game (
name "Appel (1983)(-)(nl)"
description "Appel (1983)(-)(nl)"
rom ( name "Appel (1983)(-)(nl).p" size 4007 crc 27dab104 md5 36e65797134d1e184509f53037c954ab sha1 5641da4293baf48bf479b17c87dbce026bbb398d )
)
game (
name "Append (19xx)(-)(nl)"
description "Append (19xx)(-)(nl)"
rom ( name "Append (19xx)(-)(nl).p" size 1327 crc f22695f3 md5 d2305cea6383cca649dc9f2218cbedd5 sha1 76ebd2836b357a12800590be8d5afedef615662f )
)
game (
name "Apple Nuclear Power Plant (19xx)(Stephen R. Berggren)"
description "Apple Nuclear Power Plant (19xx)(Stephen R. Berggren)"
rom ( name "Apple Nuclear Power Plant (19xx)(Stephen R. Berggren).p" size 10598 crc ff473e0c md5 e9889f543bc29edcc544b66ff62eb3d2 sha1 cd343ab01fc3b6d7dfdba22c2f301e449a975de7 )
)
game (
name "Archery (19xx)(-)"
description "Archery (19xx)(-)"
rom ( name "Archery (19xx)(-).p" size 1401 crc 5a310459 md5 fb4b1aaf1b80bcb500d19787277fd3ee sha1 6fa36da72f888e1826dad89d3931bc28f52ca101 )
)
game (
name "Ardrijkskunde (19xx)(-)(nl)"
description "Ardrijkskunde (19xx)(-)(nl)"
rom ( name "Ardrijkskunde (19xx)(-)(nl).p" size 12244 crc cd4685b4 md5 608858c9e8d6a37cabf49764b65ad347 sha1 69e26bab8308806097ce21dc913683c7fafacb75 )
)
game (
name "Area v1 (19xx)(-)"
description "Area v1 (19xx)(-)"
rom ( name "Area v1 (19xx)(-).p" size 1026 crc 7f011023 md5 d5fdb80a199496236650283708f2c443 sha1 d20e9fe7b3a1c9ed29b3370a382a58f732cbf7a6 )
)
game (
name "Area v2 (19xx)(-)"
description "Area v2 (19xx)(-)"
rom ( name "Area v2 (19xx)(-).p" size 1132 crc f131009e md5 f8b5905909b25afeb4f8eb283068604d sha1 442bca18ef07dad7bebea2538e012a314b50e8f8 )
)
game (
name "Area v3 (19xx)(-)"
description "Area v3 (19xx)(-)"
rom ( name "Area v3 (19xx)(-).p" size 1162 crc a3c00852 md5 42e6a0403d2a0a825350cbb8bd9dcfbc sha1 ddd01371af7189010acdd5eb0fb2e158dca1cee1 )
)
game (
name "Arithmetic Race (1982)(Sinclair User)[16K]"
description "Arithmetic Race (1982)(Sinclair User)[16K]"
rom ( name "Arithmetic Race (1982)(Sinclair User)[16K].p" size 2520 crc d69929bd md5 b95993f4829cf034aca56ed81f7e48a0 sha1 c0f4167e6776ebe4c9e42e790f88a142d50f95f4 )
)
game (
name "Armada (19xx)(-)(de)"
description "Armada (19xx)(-)(de)"
rom ( name "Armada (19xx)(-)(de).p" size 6071 crc 012c359c md5 ddff94e0ae2e86f3e2f16fe149d477ef sha1 8091b219d5e0b26ac0f176f1028dcc4911cca11f )
)
game (
name "Artillerie (1982)(Ch. Zwerschke)(de)"
description "Artillerie (1982)(Ch. Zwerschke)(de)"
rom ( name "Artillerie (1982)(Ch. Zwerschke)(de).p" size 3364 crc a67faa09 md5 08b88f42af146359edec546c06d46cb8 sha1 15aac768698795e6bb1de4b206dd528a3dbc9c4f )
)
game (
name "Artillerie (1982)(Ch. Zwerschke)(de)[a]"
description "Artillerie (1982)(Ch. Zwerschke)(de)[a]"
rom ( name "Artillerie (1982)(Ch. Zwerschke)(de)[a].p" size 3312 crc 86b314dc md5 51372c08211ea3d287061d7eebaf5070 sha1 09e55a1381c2a209307999404afa2b0dc2dd7bc0 )
)
game (
name "Artist (19xx)(-)[16K]"
description "Artist (19xx)(-)[16K]"
rom ( name "Artist (19xx)(-)[16K].p" size 1493 crc 9bc25fbc md5 173e41505ddda638955b95652e19a9a1 sha1 6a5f33de785ac7741ee60a123db9dcfebe3889ba )
)
game (
name "Artist - Shuttle (19xx)(-)[16K]"
description "Artist - Shuttle (19xx)(-)[16K]"
rom ( name "Artist - Shuttle (19xx)(-)[16K].p" size 2246 crc efaf0170 md5 aea5bfb5b12104febf164b84529648b9 sha1 664dc771aba657c6b7ce2845466156eb77b801d9 )
)
game (
name "Assembler (19xx)(-)"
description "Assembler (19xx)(-)"
rom ( name "Assembler (19xx)(-).p" size 8107 crc 788d33d8 md5 a8a8c516b5f92ff0a995217aa54c295c sha1 2ae6613247b297dd6703e93fb26bd99e1b70dd95 )
)
game (
name "Asteroid Belt (1983)(Fontana Publishing)"
description "Asteroid Belt (1983)(Fontana Publishing)"
rom ( name "Asteroid Belt (1983)(Fontana Publishing).p" size 3161 crc 23c99a64 md5 769cb61aef6e25d2ace2c9f487d14c37 sha1 40b18e1d42e7364dd11e358596d4ab0a0d6d6cd9 )
)
game (
name "Asteroid Storm (19xx)(-)"
description "Asteroid Storm (19xx)(-)"
rom ( name "Asteroid Storm (19xx)(-).p" size 3890 crc 71e80845 md5 56dbf5aa651fa888f2c69cecdcc60998 sha1 8de3e0a00257a04772e4466f85be2cb96b502bcc )
)
game (
name "Asteroids (1984)(Mike Pike)"
description "Asteroids (1984)(Mike Pike)"
rom ( name "Asteroids (1984)(Mike Pike).p" size 5524 crc 574a4012 md5 1a4272effdc1b8597ed639f8fd3b264d sha1 711b729c43df6708ab41f1ddf27ac97e56a48580 )
)
game (
name "Asteroids (1984)(Mike Pike)[a2]"
description "Asteroids (1984)(Mike Pike)[a2]"
rom ( name "Asteroids (1984)(Mike Pike)[a2].p" size 5656 crc 9918da4f md5 d1db0000587ff2352f1df0b08565345d sha1 d3e46a94d0cdccfc13ed7dee3b42c843d1df0bb9 )
)
game (
name "Asteroids (1984)(Mike Pike)[a]"
description "Asteroids (1984)(Mike Pike)[a]"
rom ( name "Asteroids (1984)(Mike Pike)[a].p" size 5606 crc ddcaf17a md5 bb60ff5b850fb1f49d4cbc0eb6440612 sha1 4f007befcb6420f0340cba04698e49b4902a2370 )
)
game (
name "Asteroids (19xx)(-)"
description "Asteroids (19xx)(-)"
rom ( name "Asteroids (19xx)(-).p" size 3425 crc b6dada0f md5 e48a350235215f9c62c734f897d18e57 sha1 d0c5eeea3b65071cfe2d54de0662577bc004eaf0 )
)
game (
name "Asteroids (19xx)(-)[a2]"
description "Asteroids (19xx)(-)[a2]"
rom ( name "Asteroids (19xx)(-)[a2].p" size 3419 crc bbbb9be2 md5 2b69aec0b128c65dcc774ecee247d543 sha1 ddc38ba474906884c3c139846b7fb60bfbc7a4f4 )
)
game (
name "Asteroids (19xx)(-)[a3]"
description "Asteroids (19xx)(-)[a3]"
rom ( name "Asteroids (19xx)(-)[a3].p" size 3419 crc 24719e5d md5 2be620eed9b25cda390af351ca9c5775 sha1 c2ec566a981cdbf30d53b8a8233e84b912db6d1f )
)
game (
name "Asteroids (19xx)(-)[a4]"
description "Asteroids (19xx)(-)[a4]"
rom ( name "Asteroids (19xx)(-)[a4].p" size 3457 crc 1c45b63c md5 56f211a86c6ce8097d027c7a4e581c5e sha1 d337610b4a79766a8d268fe663a33442c314547a )
)
game (
name "Asteroids (19xx)(-)[a]"
description "Asteroids (19xx)(-)[a]"
rom ( name "Asteroids (19xx)(-)[a].p" size 3419 crc 5816f698 md5 8e7e5f7a46b13d242a97ba25c1c144f4 sha1 64a1cc6092657d108c500cadb7fb73b5f2c9e39c )
)
game (
name "Astral Convoy (1982)(Vortex Software)"
description "Astral Convoy (1982)(Vortex Software)"
rom ( name "Astral Convoy (1982)(Vortex Software).p" size 9119 crc be1abdd1 md5 f248b6de3880120bce91754c70c05427 sha1 2bd5ccaa3048d14d3bbcb3fef50f364da53b4eba )
)
game (
name "Astral Convoy (1982)(Vortex Software)[a2]"
description "Astral Convoy (1982)(Vortex Software)[a2]"
rom ( name "Astral Convoy (1982)(Vortex Software)[a2].p" size 9155 crc 0411cf5f md5 90b311345feaf9269ac15cc20a0ce8f6 sha1 5ede1981bd72a8ddaf80d331380515c47c3aaf44 )
)
game (
name "Astral Convoy (1982)(Vortex Software)[a]"
description "Astral Convoy (1982)(Vortex Software)[a]"
rom ( name "Astral Convoy (1982)(Vortex Software)[a].p" size 9161 crc 743224aa md5 5029ce62df40665f111210550dab30f6 sha1 1917bb38e94c559c3e4a928de8466ef67b5d0fec )
)
game (
name "Auto Maintenance (1982)(Softsync)"
description "Auto Maintenance (1982)(Softsync)"
rom ( name "Auto Maintenance (1982)(Softsync).p" size 16182 crc 7f59043a md5 dcabd3d697f1833f2d59e90670da4ba2 sha1 1557ec05b470e5c661e798fb12eed1929b8c4f9e )
)
game (
name "Auto Maintenance (1982)(Softsync)[a]"
description "Auto Maintenance (1982)(Softsync)[a]"
rom ( name "Auto Maintenance (1982)(Softsync)[a].p" size 16050 crc 0322a4f7 md5 bd675cbe076df004adb69e60d0a04567 sha1 613950d51b340fac4801b73d30dbdf08af3dde09 )
)
game (
name "Autochef (1982)(CCS)"
description "Autochef (1982)(CCS)"
rom ( name "Autochef (1982)(CCS).p" size 15463 crc 34290b41 md5 dc31f1d493f32c14acabe6fc0eb5f7cb sha1 38b87eb715b948c2b2b75b6747e12f0d82150ec0 )
)
game (
name "Automatical Renumber (19xx)(-)"
description "Automatical Renumber (19xx)(-)"
rom ( name "Automatical Renumber (19xx)(-).p" size 1595 crc baf18fef md5 fca9a1e6efd5c6756a7909e351f92995 sha1 724eeaf3787c97148642fa2948e1c016082c59e3 )
)
game (
name "Avenger (1982)(Abacus Programs)"
description "Avenger (1982)(Abacus Programs)"
rom ( name "Avenger (1982)(Abacus Programs).p" size 7184 crc 05157ecf md5 10a6ed4a247a3bc615ab16f156ccda74 sha1 42af4018be25b06b12ecce794eae8c386492f8f0 )
)
game (
name "Avoid (1983)(Fontana Publishing)"
description "Avoid (1983)(Fontana Publishing)"
rom ( name "Avoid (1983)(Fontana Publishing).p" size 1390 crc cb72e451 md5 603a057c3193257fbd018ae7edd6930d sha1 1aa63099ca751a1527654ed2457ad9a5e5c92d4f )
)
game (
name "Avoider 1 (19xx)(-)[m]"
description "Avoider 1 (19xx)(-)[m]"
rom ( name "Avoider 1 (19xx)(-)[m].p" size 2347 crc 45fb1cd1 md5 16e2d3af7ec35f240ce69cda03693f0b sha1 2622047a767be0830e4e94cc6b63b67a9443eebc )
)
game (
name "Avoider 2 (19xx)(-)[m]"
description "Avoider 2 (19xx)(-)[m]"
rom ( name "Avoider 2 (19xx)(-)[m].p" size 4267 crc a472973a md5 ac914b93176e105b46ae73fe3c1077c2 sha1 4be8ae295297adab04c5db4dae8b2ae62c52b3dd )
)
game (
name "Avoider 3 (1989)(-)[m]"
description "Avoider 3 (1989)(-)[m]"
rom ( name "Avoider 3 (1989)(-)[m].p" size 4283 crc 0fdf313c md5 87654eb46948b74d44b0d3518e09d7b4 sha1 2153c0850cbeeb1a2b8ad9b849dad9b413773fc0 )
)
game (
name "Avventura Su Marte (19xx)(-)(it)"
description "Avventura Su Marte (19xx)(-)(it)"
rom ( name "Avventura Su Marte (19xx)(-)(it).p" size 13741 crc 7928d1c1 md5 eece748714d3ed7def29734ae31012c4 sha1 9cdd6ddb71220217972df13102cb7e8c35635824 )
)
game (
name "Awari (19xx)(-)"
description "Awari (19xx)(-)"
rom ( name "Awari (19xx)(-).p" size 8221 crc 0c6a777d md5 6c6801368bd0ca0ed35ae7352d51531e sha1 3fb954cc75c0981ccbbbd862ba83cbd91342cc26 )
)
game (
name "Backgammon (19xx)(Chambers)"
description "Backgammon (19xx)(Chambers)"
rom ( name "Backgammon (19xx)(Chambers).p" size 12116 crc dcd251e7 md5 22bd89ea89235a36d599308358276893 sha1 20ea157e190bd6bf24ddc863f4437d169a2c8a19 )
)
game (
name "Backgammon (19xx)(Chambers)(nl)"
description "Backgammon (19xx)(Chambers)(nl)"
rom ( name "Backgammon (19xx)(Chambers)(nl).p" size 10602 crc 21068c45 md5 bc8716fe54af90d80c53a8335a20c15a sha1 feafac3a029cfa84cfaffa1cdfb6549a5ddcd59d )
)
game (
name "Balken (19xx)(-)(de)"
description "Balken (19xx)(-)(de)"
rom ( name "Balken (19xx)(-)(de).p" size 2337 crc f0906fa2 md5 5eea44f206488da3993b8308047b4539 sha1 5b466bef5ee3ee2991484d847f8b08ed62785014 )
)
game (
name "Ballistik (19xx)(-)"
description "Ballistik (19xx)(-)"
rom ( name "Ballistik (19xx)(-).p" size 1624 crc 71340d45 md5 f1435387d9ef3b8aacfd129624fed5ec sha1 f0c60a584bd19dc90307d795da9fc4968a928d93 )
)
game (
name "Bandit (19xx)(-)"
description "Bandit (19xx)(-)"
rom ( name "Bandit (19xx)(-).p" size 1579 crc 38f6c03a md5 8502ac351e9e3e2aeb263483b9cbf260 sha1 eaa82ba129ede32c5fc628d1c9ad0a02647343d9 )
)
game (
name "Bar Chart (19xx)(-)"
description "Bar Chart (19xx)(-)"
rom ( name "Bar Chart (19xx)(-).p" size 9056 crc 49b3f602 md5 d174fe7371195722f9a58b8109d175ea sha1 65c504d711edff3225213123a42e0c2b4702218b )
)
game (
name "Bar Chart (19xx)(-)(nl)"
description "Bar Chart (19xx)(-)(nl)"
rom ( name "Bar Chart (19xx)(-)(nl).p" size 5637 crc 93903615 md5 db361478eee811226d845b55b76f90e5 sha1 2ac72bf28a2b03159e871da5890a7e45dfce3716 )
)
game (
name "Barquitos (1984)(Olegario Martinez)(es)"
description "Barquitos (1984)(Olegario Martinez)(es)"
rom ( name "Barquitos (1984)(Olegario Martinez)(es).p" size 11535 crc d8af5401 md5 bef2456a12e692452c603dfbca927236 sha1 61179650550f48eb5bd05ea3181f59f039c6aed1 )
)
game (
name "Base (19xx)(-)"
description "Base (19xx)(-)"
rom ( name "Base (19xx)(-).p" size 1535 crc 4eb99939 md5 4041fb0b74ef32161d7ca8ee41848bda sha1 75015db399fe355efd5498eee5a63b699932c3df )
)
game (
name "Base of Triangle (19xx)(-)"
description "Base of Triangle (19xx)(-)"
rom ( name "Base of Triangle (19xx)(-).p" size 1354 crc eca9bd4b md5 3c40727f702417aa13067a2723a1bedb sha1 f4a6f5607bf30809cfcf590844eda17f62fcdfe1 )
)
game (
name "Bases (19xx)(-)"
description "Bases (19xx)(-)"
rom ( name "Bases (19xx)(-).p" size 1460 crc 539d0630 md5 de5caff40ac72eeb5d06a9f1bbd00207 sha1 61e1aec084a866b5c47a9c8150471764d0681e21 )
)
game (
name "Battle (19xx)(-)"
description "Battle (19xx)(-)"
rom ( name "Battle (19xx)(-).p" size 15299 crc 95da43fa md5 db9696d93088bbf882e3a59130ca8fe6 sha1 19ed5ff18965525c298f3b290f415a0eee4e0dc6 )
)
game (
name "Battleship (19xx)(-)"
description "Battleship (19xx)(-)"
rom ( name "Battleship (19xx)(-).p" size 4996 crc baae39c7 md5 7a324c9bfcca165e18012147eb0ccda6 sha1 37395b345c28eb23d022f77ad116f2603fe61f63 )
)
game (
name "Battleship (19xx)(-)[m]"
description "Battleship (19xx)(-)[m]"
rom ( name "Battleship (19xx)(-)[m].p" size 4997 crc 89de2cbd md5 38e7ad33832b58a282353624e8395d5c sha1 a1f2aa7ba5a6c0bd6fb4d9d8e4fbf8cbf07d5db0 )
)
game (
name "Battleships (1982)(Sinclair User)[16K]"
description "Battleships (1982)(Sinclair User)[16K]"
rom ( name "Battleships (1982)(Sinclair User)[16K].p" size 4616 crc c76a030b md5 e62692bc77730d93b4941af6e414a136 sha1 48202680cee7f466542b457be0fcc90241439430 )
)
game (
name "Battlestar Galactica (1982)(Ch. Zwerschke)"
description "Battlestar Galactica (1982)(Ch. Zwerschke)"
rom ( name "Battlestar Galactica (1982)(Ch. Zwerschke).p" size 4648 crc 9145eaab md5 9eddb180c527f53084a8129c4c44bf6d sha1 cb34459a2a82d6cfc9efd6d9285c0fe13620a8a6 )
)
game (
name "Battlestar Galactica (1982)(Ch. Zwerschke)[a]"
description "Battlestar Galactica (1982)(Ch. Zwerschke)[a]"
rom ( name "Battlestar Galactica (1982)(Ch. Zwerschke)[a].p" size 5480 crc 830c4012 md5 d7b088f5884981b897edd7715581fb9c sha1 a07496498d3dfda8d0f1e3889de4d359d3149944 )
)
game (
name "Beethoven (19xx)(-)(de)"
description "Beethoven (19xx)(-)(de)"
rom ( name "Beethoven (19xx)(-)(de).p" size 3408 crc 41ac447e md5 85cc98abfdefd7ca2e1ad3115a33264a sha1 8c0e248a0fc8a43ac9465d7081145be14b0b4274 )
)
game (
name "Bersagli (19xx)(Giuseppe E. Sargio)(it)"
description "Bersagli (19xx)(Giuseppe E. Sargio)(it)"
rom ( name "Bersagli (19xx)(Giuseppe E. Sargio)(it).p" size 2452 crc 6592f4ee md5 ce64080839f8a804650e032b1584596f sha1 20e8e674100fb3544d9e9f13187d1ac14c81db61 )
)
game (
name "Best of Sync Vol. 1 (19xx)(-)"
description "Best of Sync Vol. 1 (19xx)(-)"
rom ( name "Best of Sync Vol. 1 (19xx)(-).p" size 1661 crc 645bee34 md5 bf9a37ceb4f58d570c8b8986046879a7 sha1 7005ad57c22f6ffdee47de1904c015fbb7159d54 )
)
game (
name "Big Chars (19xx)(-)"
description "Big Chars (19xx)(-)"
rom ( name "Big Chars (19xx)(-).p" size 1434 crc 6b4e4632 md5 cdd847ae9fde614670114c69fe9ba6b8 sha1 551d27dca2290be35fd82941249b4211a9a6606d )
)
game (
name "Big Foot Adventure (19xx)(-)"
description "Big Foot Adventure (19xx)(-)"
rom ( name "Big Foot Adventure (19xx)(-).p" size 16005 crc 1172885d md5 4d690233abbaf44493f097cef957e93b sha1 c02060113e89f77acc0b4d103601080a89930db9 )
)
game (
name "Big One (19xx)(-)"
description "Big One (19xx)(-)"
rom ( name "Big One (19xx)(-).p" size 1288 crc a928ec34 md5 ac5a54c911ae0f790fbf5bc0de76eedb sha1 39be51bb617540c9c31f3c13b0eec0a015e54ecd )
)
game (
name "Bigflap Attack (1982)(Timex)"
description "Bigflap Attack (1982)(Timex)"
rom ( name "Bigflap Attack (1982)(Timex).p" size 9899 crc d056b2f5 md5 ed0c0b9e8090bfea786a93d74210a3bf sha1 15b19ff1a75fb664ed1faaf6e20d2c9608f50d70 )
)
game (
name "Bijenkorf, De (19xx)(-)(nl)"
description "Bijenkorf, De (19xx)(-)(nl)"
rom ( name "Bijenkorf, De (19xx)(-)(nl).p" size 9482 crc fd8388e9 md5 027213bb2ef916f60f3230da1b7c26ae sha1 8f92127c7a99b3f1731dd7185ae3ba8f264b1f73 )
)
game (
name "Bike Ride (19xx)(-)"
description "Bike Ride (19xx)(-)"
rom ( name "Bike Ride (19xx)(-).p" size 1370 crc 66f7b873 md5 f231106b5ddf4105e30d6adf1e81f66f sha1 7b8190a64e4512fe5f6276a225d1da89eaf20e76 )
)
game (
name "Billards (19xx)(-)"
description "Billards (19xx)(-)"
rom ( name "Billards (19xx)(-).p" size 11877 crc 7ea5c125 md5 1610a84868109035845f93aace99f130 sha1 246849f84df26d43b99e746840004a1e578a3319 )
)
game (
name "Billbord (19xx)(-)"
description "Billbord (19xx)(-)"
rom ( name "Billbord (19xx)(-).p" size 2078 crc e5d9d06b md5 7d9975c66773019cce0f6884003e6b79 sha1 83cef7f34634abfa2a7769d61a27a4713d2bfb90 )
)
game (
name "Billy Jumper (19xx)(-)(de)"
description "Billy Jumper (19xx)(-)(de)"
rom ( name "Billy Jumper (19xx)(-)(de).p" size 9060 crc 73cd995e md5 67447bf366b28e4d7e355a7f73acc9a8 sha1 ba538b5d60de04ff51c264ccf0b15527fa9bd6d9 )
)
game (
name "Binair Decimall (19xx)(-)(nl)"
description "Binair Decimall (19xx)(-)(nl)"
rom ( name "Binair Decimall (19xx)(-)(nl).p" size 1293 crc 480c59cb md5 f0b36ca77fbcef7a12c1b879a984f1bc sha1 0374081651cfd20092429804e75ff38ee6ad1a2f )
)
game (
name "Binair Naar Decimaal (19xx)(P.M. Reuvers)(nl)"
description "Binair Naar Decimaal (19xx)(P.M. Reuvers)(nl)"
rom ( name "Binair Naar Decimaal (19xx)(P.M. Reuvers)(nl).p" size 1494 crc 5c96137c md5 f1c37aab808d16d3218061bc732d7dbc sha1 14769451c4d279b1081ac7f60a9251f341c9d16b )
)
game (
name "Bingo Numbers Generator (19xx)(-)[m]"
description "Bingo Numbers Generator (19xx)(-)[m]"
rom ( name "Bingo Numbers Generator (19xx)(-)[m].p" size 4097 crc 6b68dbbd md5 0b3bf22563e78de0fce56ec4d7b877dc sha1 b170f5226efcf98dbad26f1cd0d99ade444a708a )
)
game (
name "Biorhythm Monitor (19xx)(-)"
description "Biorhythm Monitor (19xx)(-)"
rom ( name "Biorhythm Monitor (19xx)(-).p" size 13947 crc b264676a md5 b070078f3dc27231be3399dc08e312e9 sha1 1beb47ab159cda44b815c6b1ba5c8401d363a2b7 )
)
game (
name "Biorhythmus (19xx)(-)(de)"
description "Biorhythmus (19xx)(-)(de)"
rom ( name "Biorhythmus (19xx)(-)(de).p" size 3014 crc d3c4a090 md5 cac390efc6c7a524989d2ff2a26cbf2e sha1 d44bb5b936f84af2165002b15df8aedafead85c2 )
)
game (
name "Biorhythmus (19xx)(-)(de)[a]"
description "Biorhythmus (19xx)(-)(de)[a]"
rom ( name "Biorhythmus (19xx)(-)(de)[a].p" size 2959 crc c098522b md5 ef227c8baf6212478a84b1d2d2ef9a7f sha1 6e92dd337262609a1bddd24d36d451fae85273e5 )
)
game (
name "Biorythme (19xx)(-)(nl)"
description "Biorythme (19xx)(-)(nl)"
rom ( name "Biorythme (19xx)(-)(nl).p" size 8296 crc f96d7445 md5 5c8956a026f0582359634922c7ceb0ea sha1 740a2c60f15113ce6daecbcf2f6b7c6450535261 )
)
game (
name "Bipods (19xx)(-)"
description "Bipods (19xx)(-)"
rom ( name "Bipods (19xx)(-).p" size 3370 crc 5a3a3041 md5 5dece2161fb76555fdeb24f5e5ca9dc8 sha1 1274433c270d7aa2ff1dbd77cf7d9105737bdaba )
)
game (
name "Bipods (19xx)(-)[a]"
description "Bipods (19xx)(-)[a]"
rom ( name "Bipods (19xx)(-)[a].p" size 3339 crc 27fd14aa md5 b5e6ddcd52e52a9238e1a1c34db9cdb9 sha1 6e97117d43724375c29b965ff6cc60e734815163 )
)
game (
name "Black Holes (1983)(Peter Davis)[m David Buttery]"
description "Black Holes (1983)(Peter Davis)[m David Buttery]"
rom ( name "Black Holes (1983)(Peter Davis)[m David Buttery].p" size 1973 crc 260d3e7b md5 690cf138a8154626078da7638cc9a0bd sha1 e15d964b855c238219ec5cb8554ef3d06c8eea28 )
)
game (
name "Black Jack (1982)(G. Dewey)"
description "Black Jack (1982)(G. Dewey)"
rom ( name "Black Jack (1982)(G. Dewey).p" size 13239 crc ad03e84a md5 68a896acf50f576dbad41783f8f0e914 sha1 5b7c993d7b06c5978ea7217b2946d9d5549429e8 )
)
game (
name "Black Jack (1982)(G. Dewey)(nl)"
description "Black Jack (1982)(G. Dewey)(nl)"
rom ( name "Black Jack (1982)(G. Dewey)(nl).p" size 13160 crc 8f4cae76 md5 4e8bbb3bb3520021031910542b95aca9 sha1 bfb935a07a855d4b485d7549a78214ce3635a0ce )
)
game (
name "Black Jack (1986)(Fred Nachbaur)"
description "Black Jack (1986)(Fred Nachbaur)"
rom ( name "Black Jack (1986)(Fred Nachbaur).p" size 15902 crc f07695e7 md5 bd5bfd9a24dec98e56cad48804cd7684 sha1 581454be0def1673eae4cf6966200b042a3ff9c8 )
)
game (
name "Black Jack (19xx)(-)"
description "Black Jack (19xx)(-)"
rom ( name "Black Jack (19xx)(-).p" size 12056 crc 2f098a63 md5 6eeab289105372f54145a75e40b84404 sha1 53997fa75bb315ca9d12bf98317f14432df7bb0c )
)
game (
name "Black Jack (19xx)(-)[a]"
description "Black Jack (19xx)(-)[a]"
rom ( name "Black Jack (19xx)(-)[a].p" size 11890 crc 3c544e59 md5 e288c3c578389df2828d9b7f44b711c4 sha1 f9dd5067dd5f10b4cf711d3a77b566580f0e9457 )
)
game (
name "Black Jack (19xx)(-)[m]"
description "Black Jack (19xx)(-)[m]"
rom ( name "Black Jack (19xx)(-)[m].p" size 11868 crc 2fc7b687 md5 9a139c8b4cbcb7b0a240cb48af7de748 sha1 b7012885ed122dd982a4958b5b6ac75b21606687 )
)
game (
name "Black Star (19xx)(Quicksilva)"
description "Black Star (19xx)(Quicksilva)"
rom ( name "Black Star (19xx)(Quicksilva).p" size 4932 crc c39e2e8b md5 c25aad22d3a36c815aa299d8cc3494cd sha1 a09f03daa55950ae04904c715c5edc88d66b3633 )
)
game (
name "Blip (1982)(Peter Davis)[m David Buttery]"
description "Blip (1982)(Peter Davis)[m David Buttery]"
rom ( name "Blip (1982)(Peter Davis)[m David Buttery].p" size 2015 crc 6a241afa md5 1a1beb9f0f86dd7b05efb612243d43df sha1 d07d94da8cd5b17e60e5e2858401e674b7f683e1 )
)
game (
name "Blitz (19xx)(-)"
description "Blitz (19xx)(-)"
rom ( name "Blitz (19xx)(-).p" size 2054 crc 97036edd md5 833d503eedecfca9b89495121eb2640d sha1 39ecc25bd32a248db649938bfa40cac0f9da8771 )
)
game (
name "Block Move (19xx)(-)(nl)"
description "Block Move (19xx)(-)(nl)"
rom ( name "Block Move (19xx)(-)(nl).p" size 2371 crc 6ec9d1d0 md5 372bd5063ab0c6133e1e72c538483a26 sha1 b08a06dbc7341a9d806066f703f4ff31b70bd439 )
)
game (
name "Blokkade (1982)(AFJ)(nl)"
description "Blokkade (1982)(AFJ)(nl)"
rom ( name "Blokkade (1982)(AFJ)(nl).p" size 2988 crc 1e60feef md5 096c76354d86f908daa4db401fa224b7 sha1 18441af84bcb7a4b8df6ccca1e08fdf091b8f2ea )
)
game (
name "Board (19xx)(-)"
description "Board (19xx)(-)"
rom ( name "Board (19xx)(-).p" size 1368 crc cdbfed26 md5 8137ee04bf6f5e3a1834a8a74f47a59c sha1 93ccabe2a1c0fefbd3fbc4533f89fa8758a60b7f )
)
game (
name "Board Game (19xx)(-)"
description "Board Game (19xx)(-)"
rom ( name "Board Game (19xx)(-).p" size 3130 crc d36cf332 md5 8827876d4804098419257de500f8e144 sha1 d84f366c2ac92617c622ecd463e70e12d360d83f )
)
game (
name "Boekhouden (19xx)(-)(nl)"
description "Boekhouden (19xx)(-)(nl)"
rom ( name "Boekhouden (19xx)(-)(nl).p" size 15546 crc b2a496e4 md5 ea551e590ef91fb34d8e2e042b5c949b sha1 0e298f8b71c659929ac280ea39acda356588096d )
)
game (
name "Boekhouding (1983)(-)(nl)"
description "Boekhouding (1983)(-)(nl)"
rom ( name "Boekhouding (1983)(-)(nl).p" size 12428 crc c58cc6ac md5 2f28b6ceba2bdfacebff0b82f707d455 sha1 46faaff52d93b94d55b045e194dc453059c54d37 )
)
game (
name "Boerdery Zeldenrust (19xx)(-)(nl)"
description "Boerdery Zeldenrust (19xx)(-)(nl)"
rom ( name "Boerdery Zeldenrust (19xx)(-)(nl).p" size 12512 crc 31c83e95 md5 7d4bd1f0e0bb690d76f9ad52ec4caff0 sha1 66ab16fb28fafb1ddd0b79c82e4e5238e074dfbe )
)
game (
name "Boliden (19xx)(-)(de)"
description "Boliden (19xx)(-)(de)"
rom ( name "Boliden (19xx)(-)(de).p" size 3046 crc 1cdc678d md5 1044f0dd7359729892e5cfc9ba81d0ad sha1 8492c334800498bfb75cbe22dbe5b1a3d53db0ab )
)
game (
name "Bomb Disposal (1982)(Sinclair User)"
description "Bomb Disposal (1982)(Sinclair User)"
rom ( name "Bomb Disposal (1982)(Sinclair User).p" size 1616 crc 13496de2 md5 d39b849e3afa8e770bc31914dca96e0e sha1 c63850970ce8a42cb8ae6a63764f8e2e0e5c0114 )
)
game (
name "Bomb Squad (1984)(D. Green)"
description "Bomb Squad (1984)(D. Green)"
rom ( name "Bomb Squad (1984)(D. Green).p" size 2181 crc 059cee68 md5 dcebf2d19391014ff4d0d7b823762ff0 sha1 6a8e29a79f17371d52d35458091acfd3d98e4d5e )
)
game (
name "Bomber (1982)(Blake Kincaid)"
description "Bomber (1982)(Blake Kincaid)"
rom ( name "Bomber (1982)(Blake Kincaid).p" size 14779 crc aa2216d3 md5 987dc1f6f405e12b035336013f76dfa2 sha1 016ac6a14bc06e591a2585311794756d73c6345b )
)
game (
name "Bomber (1983)(H. Dursch)(de)"
description "Bomber (1983)(H. Dursch)(de)"
rom ( name "Bomber (1983)(H. Dursch)(de).p" size 2017 crc 08cc515e md5 e435d8ad5e2d26c717801d02fb8b010b sha1 dcb2516115d1fe78738e98e1e7e5880ae50ec289 )
)
game (
name "Bomber (19xx)(-)"
description "Bomber (19xx)(-)"
rom ( name "Bomber (19xx)(-).p" size 2537 crc c706c94b md5 018e4910e8153bfdc765515975a4a68e sha1 7ef6539e0c67dc95b879c739f5506802f67a09e7 )
)
game (
name "Bomber (19xx)(-)(nl)"
description "Bomber (19xx)(-)(nl)"
rom ( name "Bomber (19xx)(-)(nl).p" size 4673 crc ad86cecf md5 faf0251eb992d7ece62406f4c5810d97 sha1 c06083d53a7858f8bc7eb6505f99a62b340ea1d7 )
)
game (
name "Bomber (19xx)(-)(nl)[a]"