forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScummVM.dat
32854 lines (28162 loc) · 782 KB
/
ScummVM.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 "ScummVM"
description "ScummVM"
comment "DAT file containing game files to launch ScummVM games from RetroArch."
version 2.0.0-dev
date "2019-04-25"
author "Rob Loach"
homepage https://github.com/libretro/scummvm
url https://github.com/RobLoach/libretro-scummvm.dat#readme
)
game (
name "905"
description "905"
comment "905"
rom ( name "905.scummvm" size 3 crc 5d0ef5dd )
)
game (
name "905"
description "905"
comment "905"
rom ( name "905 CRLF.scummvm" size 5 crc ede36563 )
)
game (
name "905"
description "905"
comment "905"
rom ( name "905 LF.scummvm" size 4 crc cae8a60f )
)
game (
name "905"
description "905"
comment "905"
rom ( name "905 CR.scummvm" size 4 crc 548c33ac )
)
game (
name "3 Skulls of the Toltecs"
description "3 Skulls of the Toltecs"
comment "toltecs"
rom ( name "3 Skulls of the Toltecs.scummvm" size 7 crc db62a67 )
)
game (
name "3 Skulls of the Toltecs"
description "3 Skulls of the Toltecs"
comment "toltecs"
rom ( name "3 Skulls of the Toltecs CRLF.scummvm" size 9 crc e5a5bcac )
)
game (
name "3 Skulls of the Toltecs"
description "3 Skulls of the Toltecs"
comment "toltecs"
rom ( name "3 Skulls of the Toltecs LF.scummvm" size 8 crc e10c4442 )
)
game (
name "3 Skulls of the Toltecs"
description "3 Skulls of the Toltecs"
comment "toltecs"
rom ( name "3 Skulls of the Toltecs CR.scummvm" size 8 crc 7f68d1e1 )
)
game (
name "404 - Life not found"
description "404 - Life not found"
comment "404life"
rom ( name "404 - Life not found.scummvm" size 7 crc a912a636 )
)
game (
name "404 - Life not found"
description "404 - Life not found"
comment "404life"
rom ( name "404 - Life not found CRLF.scummvm" size 9 crc a20bbb16 )
)
game (
name "404 - Life not found"
description "404 - Life not found"
comment "404life"
rom ( name "404 - Life not found LF.scummvm" size 8 crc fdc481ac )
)
game (
name "404 - Life not found"
description "404 - Life not found"
comment "404life"
rom ( name "404 - Life not found CR.scummvm" size 8 crc 63a0140f )
)
game (
name "69,105 Keys"
description "69,105 Keys"
comment "69105keys"
rom ( name "69105 Keys.scummvm" size 9 crc d7c5e0ed )
)
game (
name "69,105 Keys"
description "69,105 Keys"
comment "69105keys"
rom ( name "69105 Keys CRLF.scummvm" size 11 crc 5f783db0 )
)
game (
name "69,105 Keys"
description "69,105 Keys"
comment "69105keys"
rom ( name "69105 Keys LF.scummvm" size 10 crc ecbb5db6 )
)
game (
name "69,105 Keys"
description "69,105 Keys"
comment "69105keys"
rom ( name "69105 Keys CR.scummvm" size 10 crc 72dfc815 )
)
game (
name "A Bears Night Out, an Interactive Childrens Story"
description "A Bears Night Out, an Interactive Childrens Story"
comment "bear"
rom ( name "A Bears Night Out an Interactive Childrens Story.scummvm" size 4 crc 3c9aa3a9 )
)
game (
name "A Bears Night Out, an Interactive Childrens Story"
description "A Bears Night Out, an Interactive Childrens Story"
comment "bear"
rom ( name "A Bears Night Out an Interactive Childrens Story CRLF.scummvm" size 6 crc 24b84cc4 )
)
game (
name "A Bears Night Out, an Interactive Childrens Story"
description "A Bears Night Out, an Interactive Childrens Story"
comment "bear"
rom ( name "A Bears Night Out an Interactive Childrens Story LF.scummvm" size 5 crc 9de1877c )
)
game (
name "A Bears Night Out, an Interactive Childrens Story"
description "A Bears Night Out, an Interactive Childrens Story"
comment "bear"
rom ( name "A Bears Night Out an Interactive Childrens Story CR.scummvm" size 5 crc 38512df )
)
game (
name "A Change in the Weather"
description "A Change in the Weather"
comment "weather"
rom ( name "A Change in the Weather.scummvm" size 7 crc 4cd0d36e )
)
game (
name "A Change in the Weather"
description "A Change in the Weather"
comment "weather"
rom ( name "A Change in the Weather CRLF.scummvm" size 9 crc f0060c3b )
)
game (
name "A Change in the Weather"
description "A Change in the Weather"
comment "weather"
rom ( name "A Change in the Weather LF.scummvm" size 8 crc 98919a1f )
)
game (
name "A Change in the Weather"
description "A Change in the Weather"
comment "weather"
rom ( name "A Change in the Weather CR.scummvm" size 8 crc 6f50fbc )
)
game (
name "A Cock and Bull Story"
description "A Cock and Bull Story"
comment "cockandbull"
rom ( name "A Cock and Bull Story.scummvm" size 11 crc 57e67bb9 )
)
game (
name "A Cock and Bull Story"
description "A Cock and Bull Story"
comment "cockandbull"
rom ( name "A Cock and Bull Story CRLF.scummvm" size 13 crc e6726f0f )
)
game (
name "A Cock and Bull Story"
description "A Cock and Bull Story"
comment "cockandbull"
rom ( name "A Cock and Bull Story LF.scummvm" size 12 crc 803debc0 )
)
game (
name "A Cock and Bull Story"
description "A Cock and Bull Story"
comment "cockandbull"
rom ( name "A Cock and Bull Story CR.scummvm" size 12 crc 1e597e63 )
)
game (
name "A Crime Scene, a Short Story"
description "A Crime Scene, a Short Story"
comment "crimescene"
rom ( name "A Crime Scene a Short Story.scummvm" size 10 crc 65a82ccd )
)
game (
name "A Crime Scene, a Short Story"
description "A Crime Scene, a Short Story"
comment "crimescene"
rom ( name "A Crime Scene a Short Story CRLF.scummvm" size 12 crc 582e25e4 )
)
game (
name "A Crime Scene, a Short Story"
description "A Crime Scene, a Short Story"
comment "crimescene"
rom ( name "A Crime Scene a Short Story LF.scummvm" size 11 crc d76710b2 )
)
game (
name "A Crime Scene, a Short Story"
description "A Crime Scene, a Short Story"
comment "crimescene"
rom ( name "A Crime Scene a Short Story CR.scummvm" size 11 crc 49038511 )
)
game (
name "A Day For Fresh Sushi"
description "A Day For Fresh Sushi"
comment "sushi"
rom ( name "A Day For Fresh Sushi.scummvm" size 5 crc eb4cd3f6 )
)
game (
name "A Day For Fresh Sushi"
description "A Day For Fresh Sushi"
comment "sushi"
rom ( name "A Day For Fresh Sushi CRLF.scummvm" size 7 crc 499eabb5 )
)
game (
name "A Day For Fresh Sushi"
description "A Day For Fresh Sushi"
comment "sushi"
rom ( name "A Day For Fresh Sushi LF.scummvm" size 6 crc 66e21d69 )
)
game (
name "A Day For Fresh Sushi"
description "A Day For Fresh Sushi"
comment "sushi"
rom ( name "A Day For Fresh Sushi CR.scummvm" size 6 crc f88688ca )
)
game (
name "A Day in Life"
description "A Day in Life"
comment "dayinlife"
rom ( name "A Day in Life.scummvm" size 9 crc b3478787 )
)
game (
name "A Day in Life"
description "A Day in Life"
comment "dayinlife"
rom ( name "A Day in Life CRLF.scummvm" size 11 crc 13bc2ee4 )
)
game (
name "A Day in Life"
description "A Day in Life"
comment "dayinlife"
rom ( name "A Day in Life LF.scummvm" size 10 crc 41b85797 )
)
game (
name "A Day in Life"
description "A Day in Life"
comment "dayinlife"
rom ( name "A Day in Life CR.scummvm" size 10 crc dfdcc234 )
)
game (
name "A Day in the Creepy Life of Bob Demo"
description "A Day in the Creepy Life of Bob Demo"
comment "creepydemo"
rom ( name "A Day in the Creepy Life of Bob Demo.scummvm" size 10 crc 4e6c7e08 )
)
game (
name "A Day in the Creepy Life of Bob Demo"
description "A Day in the Creepy Life of Bob Demo"
comment "creepydemo"
rom ( name "A Day in the Creepy Life of Bob Demo CRLF.scummvm" size 12 crc 6bc61df3 )
)
game (
name "A Day in the Creepy Life of Bob Demo"
description "A Day in the Creepy Life of Bob Demo"
comment "creepydemo"
rom ( name "A Day in the Creepy Life of Bob Demo LF.scummvm" size 11 crc 3c42e2df )
)
game (
name "A Day in the Creepy Life of Bob Demo"
description "A Day in the Creepy Life of Bob Demo"
comment "creepydemo"
rom ( name "A Day in the Creepy Life of Bob Demo CR.scummvm" size 11 crc a226777c )
)
game (
name "A Dream Too Real"
description "A Dream Too Real"
comment "dreamtooreal"
rom ( name "A Dream Too Real.scummvm" size 12 crc 8cd82af1 )
)
game (
name "A Dream Too Real"
description "A Dream Too Real"
comment "dreamtooreal"
rom ( name "A Dream Too Real CRLF.scummvm" size 14 crc c2be105e )
)
game (
name "A Dream Too Real"
description "A Dream Too Real"
comment "dreamtooreal"
rom ( name "A Dream Too Real LF.scummvm" size 13 crc f8e11c33 )
)
game (
name "A Dream Too Real"
description "A Dream Too Real"
comment "dreamtooreal"
rom ( name "A Dream Too Real CR.scummvm" size 13 crc 66858990 )
)
game (
name "A Fable"
description "A Fable"
comment "fable"
rom ( name "A Fable.scummvm" size 5 crc ec094ba4 )
)
game (
name "A Fable"
description "A Fable"
comment "fable"
rom ( name "A Fable CRLF.scummvm" size 7 crc 3fc78850 )
)
game (
name "A Fable"
description "A Fable"
comment "fable"
rom ( name "A Fable LF.scummvm" size 6 crc e3806829 )
)
game (
name "A Fable"
description "A Fable"
comment "fable"
rom ( name "A Fable CR.scummvm" size 6 crc 7de4fd8a )
)
game (
name "A Fable, interactive MiSTing-up of A Fable"
description "A Fable, interactive MiSTing-up of A Fable"
comment "mst3k2"
rom ( name "A Fable interactive MiSTing-up of A Fable.scummvm" size 6 crc 3774a8d6 )
)
game (
name "A Fable, interactive MiSTing-up of A Fable"
description "A Fable, interactive MiSTing-up of A Fable"
comment "mst3k2"
rom ( name "A Fable interactive MiSTing-up of A Fable CRLF.scummvm" size 8 crc 1bcdfb9b )
)
game (
name "A Fable, interactive MiSTing-up of A Fable"
description "A Fable, interactive MiSTing-up of A Fable"
comment "mst3k2"
rom ( name "A Fable interactive MiSTing-up of A Fable LF.scummvm" size 7 crc 5d5005da )
)
game (
name "A Fable, interactive MiSTing-up of A Fable"
description "A Fable, interactive MiSTing-up of A Fable"
comment "mst3k2"
rom ( name "A Fable interactive MiSTing-up of A Fable CR.scummvm" size 7 crc c3349079 )
)
game (
name "A Green Rain"
description "A Green Rain"
comment "greenrain"
rom ( name "A Green Rain.scummvm" size 9 crc 1dd0f18 )
)
game (
name "A Green Rain"
description "A Green Rain"
comment "greenrain"
rom ( name "A Green Rain CRLF.scummvm" size 11 crc 60601b9 )
)
game (
name "A Green Rain"
description "A Green Rain"
comment "greenrain"
rom ( name "A Green Rain LF.scummvm" size 10 crc 21ba43ca )
)
game (
name "A Green Rain"
description "A Green Rain"
comment "greenrain"
rom ( name "A Green Rain CR.scummvm" size 10 crc bfded669 )
)
game (
name "A Little Like Rogue"
description "A Little Like Rogue"
comment "llr3"
rom ( name "A Little Like Rogue.scummvm" size 4 crc b3a0df81 )
)
game (
name "A Little Like Rogue"
description "A Little Like Rogue"
comment "llr3"
rom ( name "A Little Like Rogue CRLF.scummvm" size 6 crc 20565043 )
)
game (
name "A Little Like Rogue"
description "A Little Like Rogue"
comment "llr3"
rom ( name "A Little Like Rogue LF.scummvm" size 5 crc a8db15fa )
)
game (
name "A Little Like Rogue"
description "A Little Like Rogue"
comment "llr3"
rom ( name "A Little Like Rogue CR.scummvm" size 5 crc 36bf8059 )
)
game (
name "A Mind Forever Voyaging"
description "A Mind Forever Voyaging"
comment "amfv"
rom ( name "A Mind Forever Voyaging.scummvm" size 4 crc 68100f21 )
)
game (
name "A Mind Forever Voyaging"
description "A Mind Forever Voyaging"
comment "amfv"
rom ( name "A Mind Forever Voyaging CRLF.scummvm" size 6 crc 882e5ce )
)
game (
name "A Mind Forever Voyaging"
description "A Mind Forever Voyaging"
comment "amfv"
rom ( name "A Mind Forever Voyaging LF.scummvm" size 5 crc 7ed606c2 )
)
game (
name "A Mind Forever Voyaging"
description "A Mind Forever Voyaging"
comment "amfv"
rom ( name "A Mind Forever Voyaging CR.scummvm" size 5 crc e0b29361 )
)
game (
name "A New Day"
description "A New Day"
comment "newday"
rom ( name "A New Day.scummvm" size 6 crc 3ee75f13 )
)
game (
name "A New Day"
description "A New Day"
comment "newday"
rom ( name "A New Day CRLF.scummvm" size 8 crc 8e99b6bc )
)
game (
name "A New Day"
description "A New Day"
comment "newday"
rom ( name "A New Day LF.scummvm" size 7 crc b657a012 )
)
game (
name "A New Day"
description "A New Day"
comment "newday"
rom ( name "A New Day CR.scummvm" size 7 crc 283335b1 )
)
game (
name "A Reading in May"
description "A Reading in May"
comment "readinginmay"
rom ( name "A Reading in May.scummvm" size 12 crc f6bab153 )
)
game (
name "A Reading in May"
description "A Reading in May"
comment "readinginmay"
rom ( name "A Reading in May CRLF.scummvm" size 14 crc 3952fe9b )
)
game (
name "A Reading in May"
description "A Reading in May"
comment "readinginmay"
rom ( name "A Reading in May LF.scummvm" size 13 crc c043bc6c )
)
game (
name "A Reading in May"
description "A Reading in May"
comment "readinginmay"
rom ( name "A Reading in May CR.scummvm" size 13 crc 5e2729cf )
)
game (
name "A Simple Theft 2 - A Simple Theftier"
description "A Simple Theft 2 - A Simple Theftier"
comment "simpletheft2"
rom ( name "A Simple Theft 2 - A Simple Theftier.scummvm" size 12 crc 733f89ff )
)
game (
name "A Simple Theft 2 - A Simple Theftier"
description "A Simple Theft 2 - A Simple Theftier"
comment "simpletheft2"
rom ( name "A Simple Theft 2 - A Simple Theftier CRLF.scummvm" size 14 crc 13e23065 )
)
game (
name "A Simple Theft 2 - A Simple Theftier"
description "A Simple Theft 2 - A Simple Theftier"
comment "simpletheft2"
rom ( name "A Simple Theft 2 - A Simple Theftier LF.scummvm" size 13 crc 1fa6d697 )
)
game (
name "A Simple Theft 2 - A Simple Theftier"
description "A Simple Theft 2 - A Simple Theftier"
comment "simpletheft2"
rom ( name "A Simple Theft 2 - A Simple Theftier CR.scummvm" size 13 crc 81c24334 )
)
game (
name "A Tight Spot"
description "A Tight Spot"
comment "ats"
rom ( name "A Tight Spot.scummvm" size 3 crc 340be471 )
)
game (
name "A Tight Spot"
description "A Tight Spot"
comment "ats"
rom ( name "A Tight Spot CRLF.scummvm" size 5 crc 85e1df71 )
)
game (
name "A Tight Spot"
description "A Tight Spot"
comment "ats"
rom ( name "A Tight Spot LF.scummvm" size 4 crc 15e14cdd )
)
game (
name "A Tight Spot"
description "A Tight Spot"
comment "ats"
rom ( name "A Tight Spot CR.scummvm" size 4 crc 8b85d97e )
)
game (
name "A Walk in the Park"
description "A Walk in the Park"
comment "walkinthepark"
rom ( name "A Walk in the Park.scummvm" size 13 crc 757d412a )
)
game (
name "A Walk in the Park"
description "A Walk in the Park"
comment "walkinthepark"
rom ( name "A Walk in the Park CRLF.scummvm" size 15 crc 7a124dff )
)
game (
name "A Walk in the Park"
description "A Walk in the Park"
comment "walkinthepark"
rom ( name "A Walk in the Park LF.scummvm" size 14 crc e919b204 )
)
game (
name "A Walk in the Park"
description "A Walk in the Park"
comment "walkinthepark"
rom ( name "A Walk in the Park CR.scummvm" size 14 crc 777d27a7 )
)
game (
name "A Week In The Life"
description "A Week In The Life"
comment "awitl"
rom ( name "A Week In The Life.scummvm" size 5 crc dcc950eb )
)
game (
name "A Week In The Life"
description "A Week In The Life"
comment "awitl"
rom ( name "A Week In The Life CRLF.scummvm" size 7 crc c24322b6 )
)
game (
name "A Week In The Life"
description "A Week In The Life"
comment "awitl"
rom ( name "A Week In The Life LF.scummvm" size 6 crc 5d3f433 )
)
game (
name "A Week In The Life"
description "A Week In The Life"
comment "awitl"
rom ( name "A Week In The Life CR.scummvm" size 6 crc 9bb76190 )
)
game (
name "AAS Masters, in which all is revealed"
description "AAS Masters, in which all is revealed"
comment "aasmasters"
rom ( name "AAS Masters in which all is revealed.scummvm" size 10 crc 5d976a9b )
)
game (
name "AAS Masters, in which all is revealed"
description "AAS Masters, in which all is revealed"
comment "aasmasters"
rom ( name "AAS Masters in which all is revealed CRLF.scummvm" size 12 crc 2b7003ac )
)
game (
name "AAS Masters, in which all is revealed"
description "AAS Masters, in which all is revealed"
comment "aasmasters"
rom ( name "AAS Masters in which all is revealed LF.scummvm" size 11 crc 5557db35 )
)
game (
name "AAS Masters, in which all is revealed"
description "AAS Masters, in which all is revealed"
comment "aasmasters"
rom ( name "AAS Masters in which all is revealed CR.scummvm" size 11 crc cb334e96 )
)
game (
name "ASCII Cars!! A game of racing with the imagination"
description "ASCII Cars!! A game of racing with the imagination"
comment "cars"
rom ( name "ASCII Cars! A game of racing with the imagination.scummvm" size 4 crc 95c71d14 )
)
game (
name "ASCII Cars!! A game of racing with the imagination"
description "ASCII Cars!! A game of racing with the imagination"
comment "cars"
rom ( name "ASCII Cars! A game of racing with the imagination CRLF.scummvm" size 6 crc 590aabe7 )
)
game (
name "ASCII Cars!! A game of racing with the imagination"
description "ASCII Cars!! A game of racing with the imagination"
comment "cars"
rom ( name "ASCII Cars! A game of racing with the imagination LF.scummvm" size 5 crc 289815f3 )
)
game (
name "ASCII Cars!! A game of racing with the imagination"
description "ASCII Cars!! A game of racing with the imagination"
comment "cars"
rom ( name "ASCII Cars! A game of racing with the imagination CR.scummvm" size 5 crc b6fc8050 )
)
game (
name "Abalanzate"
description "Abalanzate"
comment "abalanzate"
rom ( name "Abalanzate.scummvm" size 10 crc 21dbf5b7 )
)
game (
name "Abalanzate"
description "Abalanzate"
comment "abalanzate"
rom ( name "Abalanzate CRLF.scummvm" size 12 crc 72f19a9b )
)
game (
name "Abalanzate"
description "Abalanzate"
comment "abalanzate"
rom ( name "Abalanzate LF.scummvm" size 11 crc 67f3fb49 )
)
game (
name "Abalanzate"
description "Abalanzate"
comment "abalanzate"
rom ( name "Abalanzate CR.scummvm" size 11 crc f9976eea )
)
game (
name "Access"
description "Access"
comment "Access"
rom ( name "Access.scummvm" size 6 crc 1c52e62 )
)
game (
name "Access"
description "Access"
comment "Access"
rom ( name "Access CRLF.scummvm" size 8 crc 9fbf8083 )
)
game (
name "Access"
description "Access"
comment "Access"
rom ( name "Access LF.scummvm" size 7 crc 916ac3c9 )
)
game (
name "Access"
description "Access"
comment "Access"
rom ( name "Access CR.scummvm" size 7 crc f0e566a )
)
game (
name "Accuse"
description "Accuse"
comment "accuse"
rom ( name "Accuse.scummvm" size 6 crc ee9b3d75 )
)
game (
name "Accuse"
description "Accuse"
comment "accuse"
rom ( name "Accuse CRLF.scummvm" size 8 crc 1e82aa95 )
)
game (
name "Accuse"
description "Accuse"
comment "accuse"
rom ( name "Accuse LF.scummvm" size 7 crc 1256181d )
)
game (
name "Accuse"
description "Accuse"
comment "accuse"
rom ( name "Accuse CR.scummvm" size 7 crc 8c328dbe )
)
game (
name "Acheton"
description "Acheton"
comment "acheton"
rom ( name "Acheton.scummvm" size 7 crc 80e025dd )
)
game (
name "Acheton"
description "Acheton"
comment "acheton"
rom ( name "Acheton CRLF.scummvm" size 9 crc 6b306a59 )
)
game (
name "Acheton"
description "Acheton"
comment "acheton"
rom ( name "Acheton LF.scummvm" size 8 crc ca3548df )
)
game (
name "Acheton"
description "Acheton"
comment "acheton"
rom ( name "Acheton CR.scummvm" size 8 crc 5451dd7c )
)
game (
name "Across the Stars"
description "Across the Stars"
comment "acrossstars"
rom ( name "Across the Stars.scummvm" size 11 crc 809a9ccb )
)
game (
name "Across the Stars"
description "Across the Stars"
comment "acrossstars"
rom ( name "Across the Stars CRLF.scummvm" size 13 crc c515d4dc )
)
game (
name "Across the Stars"
description "Across the Stars"
comment "acrossstars"
rom ( name "Across the Stars LF.scummvm" size 12 crc 3ee18737 )
)
game (
name "Across the Stars"
description "Across the Stars"
comment "acrossstars"
rom ( name "Across the Stars CR.scummvm" size 12 crc a0851294 )
)
game (
name "Across the Stars - Invisiclues"
description "Across the Stars - Invisiclues"
comment "acrossstarsclues"
rom ( name "Across the Stars - Invisiclues.scummvm" size 16 crc 48a8855f )
)
game (
name "Across the Stars - Invisiclues"
description "Across the Stars - Invisiclues"
comment "acrossstarsclues"
rom ( name "Across the Stars - Invisiclues CRLF.scummvm" size 18 crc b453fb30 )
)
game (
name "Across the Stars - Invisiclues"
description "Across the Stars - Invisiclues"
comment "acrossstarsclues"
rom ( name "Across the Stars - Invisiclues LF.scummvm" size 17 crc c94be273 )
)
game (
name "Across the Stars - Invisiclues"
description "Across the Stars - Invisiclues"
comment "acrossstarsclues"
rom ( name "Across the Stars - Invisiclues CR.scummvm" size 17 crc 572f77d0 )
)
game (
name "Ad Verbum"
description "Ad Verbum"
comment "adverbum"
rom ( name "Ad Verbum.scummvm" size 8 crc 611de654 )
)
game (
name "Ad Verbum"
description "Ad Verbum"
comment "adverbum"
rom ( name "Ad Verbum CRLF.scummvm" size 10 crc 831c3bac )
)
game (
name "Ad Verbum"
description "Ad Verbum"
comment "adverbum"
rom ( name "Ad Verbum LF.scummvm" size 9 crc 5eb08e98 )
)
game (
name "Ad Verbum"
description "Ad Verbum"
comment "adverbum"
rom ( name "Ad Verbum CR.scummvm" size 9 crc c0d41b3b )
)
game (
name "Adventure (Lobjan translation)"
description "Adventure (Lobjan translation)"
comment "adventurelobjan"
rom ( name "Adventure (Lobjan translation).scummvm" size 15 crc 59f860c )
)
game (
name "Adventure (Lobjan translation)"
description "Adventure (Lobjan translation)"
comment "adventurelobjan"
rom ( name "Adventure (Lobjan translation) CRLF.scummvm" size 17 crc bccce92a )
)
game (
name "Adventure (Lobjan translation)"
description "Adventure (Lobjan translation)"
comment "adventurelobjan"
rom ( name "Adventure (Lobjan translation) LF.scummvm" size 16 crc 3b64d53e )
)
game (
name "Adventure (Lobjan translation)"
description "Adventure (Lobjan translation)"
comment "adventurelobjan"
rom ( name "Adventure (Lobjan translation) CR.scummvm" size 16 crc a500409d )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13"
rom ( name "Adventure 13.scummvm" size 11 crc b5cc5836 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13"
rom ( name "Adventure 13 CRLF.scummvm" size 13 crc f80e78d3 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13"
rom ( name "Adventure 13 LF.scummvm" size 12 crc fdd85f52 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13"
rom ( name "Adventure 13 CR.scummvm" size 12 crc 63bccaf1 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13i5"
rom ( name "Adventure 13.scummvm" size 13 crc 4ff9fb4d )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13i5"
rom ( name "Adventure 13 CRLF.scummvm" size 15 crc 7b1ad089 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13i5"
rom ( name "Adventure 13 LF.scummvm" size 14 crc 3af5c245 )
)
game (
name "Adventure 13"
description "Adventure 13"
comment "adventure13i5"
rom ( name "Adventure 13 CR.scummvm" size 14 crc a49157e6 )
)
game (
name "Adventure 14"
description "Adventure 14"
comment "adventure14i5"
rom ( name "Adventure 14.scummvm" size 13 crc 4ab6edc8 )
)
game (
name "Adventure 14"