-
Notifications
You must be signed in to change notification settings - Fork 792
/
Microsoft - MSX.dat
1373 lines (1201 loc) · 15 KB
/
Microsoft - MSX.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 "Microsoft - MSX"
description "Microsoft - MSX"
)
game (
comment "1942 (Japan)"
serial "2019002"
rom (
crc A27787AF
)
)
game (
comment "1942 (Japan) (Alt 1)"
serial "2019002"
rom (
crc E54EE601
)
)
game (
comment "A1 Spirit - The Way to Formula-1 (Japan)"
serial "RC752"
rom (
crc 2608C959
)
)
game (
comment "Animal Land (Japan)"
serial "E-G192"
rom (
crc 15A0F98A
)
)
game (
comment "Antarctic Adventure (Europe)"
serial "RC701"
rom (
crc 6B739C93
)
)
game (
comment "Antarctic Adventure (Europe) (Alt 1)"
serial "RC701"
rom (
crc E8BDDEDD
)
)
game (
comment "Antarctic Adventure (Japan)"
serial "RC700"
rom (
crc AAE7028B
)
)
game (
comment "Bank Panic (Japan)"
serial "R49X5807"
rom (
crc D5E18DF0
)
)
game (
comment "Bank Panic (Japan) (Alt 1)"
serial "R49X5807"
rom (
crc A0A844CA
)
)
game (
comment "Butam Pants (Japan)"
serial "HM-007"
rom (
crc 4B2AA972
)
)
game (
comment "Butam Pants (Japan) (Alt 1)"
serial "HM-007"
rom (
crc 4474CA21
)
)
game (
comment "Butam Pants (Japan) (Alt 2)"
serial "HM-007"
rom (
crc A102F82D
)
)
game (
comment "Cabbage Patch Kids (Japan)"
serial "RC716"
rom (
crc 057D2790
)
)
game (
comment "Cabbage Patch Kids (Japan) (Alt 1)"
serial "RC716"
rom (
crc 97A1B4B9
)
)
game (
comment "Cannon Fighter (Japan)"
serial "GPM-118"
rom (
crc 9C7FB01E
)
)
game (
comment "Car Fighter (Japan)"
serial "GPM-118"
rom (
crc 303187F5
)
)
game (
comment "Championship Lode Runner (Japan)"
serial "HBS-G047C"
rom (
crc 2F75E79C
)
)
game (
comment "Circus Charlie (Japan)"
serial "GPM-105"
rom (
crc 83B8D8F3
)
)
game (
comment "Circus Charlie (Japan)"
serial "RC712"
rom (
crc 83B8D8F3
)
)
game (
comment "Circus Charlie (Japan)"
serial "GPM-105"
rom (
crc 83B8D8F3
)
)
game (
comment "Circus Charlie (Japan)"
serial "RC712"
rom (
crc 83B8D8F3
)
)
game (
comment "Craze (Japan)"
serial "HRM-22"
rom (
crc D83966D0
)
)
game (
comment "Dragon Quest (Japan)"
serial "E-G186"
rom (
crc 49F5478B
)
)
game (
comment "Dragon Quest II (Japan)"
serial "E-G207"
rom (
crc 8076FEC6
)
)
game (
comment "Dragon Quest II (Japan) (Alt 1)"
serial "E-G207"
rom (
crc D44165A3
)
)
game (
comment "Drainer (Japan)"
serial "M-2009"
rom (
crc DB803E8A
)
)
game (
comment "Dunk Shot (Japan)"
serial "HM-021"
rom (
crc 6C366B32
)
)
game (
comment "Dunk Shot (Japan) (Alt 1)"
serial "HM-021"
rom (
crc 99B7EAB1
)
)
game (
comment "Eggerland Mystery (Japan)"
serial "HM-018"
rom (
crc 232B1050
)
)
game (
comment "Exerion (Japan)"
serial "DP-3912010"
rom (
crc 7ABEFD3D
)
)
game (
comment "Exerion (Japan) (Alt 1)"
serial "DP-3912010"
rom (
crc 24B3B811
)
)
game (
comment "Exerion (Japan) (Alt 2)"
serial "DP-3912010"
rom (
crc 369CB84E
)
)
game (
comment "Exerion II - Zorni (Japan)"
serial "HX-S118"
rom (
crc 0B6C146F
)
)
game (
comment "Exerion II - Zorni (Japan) (Alt 1)"
serial "HX-S118"
rom (
crc F3144243
)
)
game (
comment "Exoide-Z Area 5 (Japan)"
serial "GPM-129"
rom (
crc AD529DF0
)
)
game (
comment "F-1 Spirit - The Way to Formula-1 (Japan)"
serial "RC752"
rom (
crc 12BFD3A9
)
)
game (
comment "F-1 Spirit - The Way to Formula-1 (Japan) (Alt 1)"
serial "RC752"
rom (
crc 64D2DF7C
)
)
game (
comment "Fantasy Zone (Japan)"
serial "R55X5812"
rom (
crc 3E96D005
)
)
game (
comment "Fire Rescue (Japan)"
serial "MX-1008"
rom (
crc 8005A9BA
)
)
game (
comment "Fire Rescue (Japan) (Alt 1)"
serial "MX-1008"
rom (
crc 7B2EF621
)
)
game (
comment "Flight Simulator (Japan)"
serial "MSX-FS"
rom (
crc A6165BD4
)
)
game (
comment "Frogger (Japan)"
serial "RC704"
rom (
crc 97E2FCB4
)
)
game (
comment "Frogger (Japan) (Alt 1)"
serial "RC704"
rom (
crc 71EDC580
)
)
game (
comment "Gall Force - Defense of Chaos (Japan)"
serial "HBS-G053C"
rom (
crc 99EF860E
)
)
game (
comment "Gall Force - Defense of Chaos (Japan) (Alt 1)"
serial "HBS-G053C"
rom (
crc F65B5271
)
)
game (
comment "Gall Force - Defense of Chaos (Japan) (Alt 2)"
serial "HBS-G053C"
rom (
crc EC036E37
)
)
game (
comment "Game Master (Europe)"
serial "RC735"
rom (
crc 160CFBD2
)
)
game (
comment "Game Master (Europe) (Alt 1)"
serial "RC735"
rom (
crc 5BB30E2B
)
)
game (
comment "Game Master (Japan)"
serial "RC735"
rom (
crc 8F1A102E
)
)
game (
comment "Game Master (Japan) (Alt 1)"
serial "RC735"
rom (
crc BD1C5A59
)
)
game (
comment "Game Master II (Japan)"
serial "RC755"
rom (
crc 084C5803
)
)
game (
comment "Game Master II (Japan) (Alt 1)"
serial "RC755"
rom (
crc 2D93F9CC
)
)
game (
comment "Genghis Khan (Japan)"
serial "MXKN-12006"
rom (
crc 4EAD5098
)
)
game (
comment "Ghostbusters (Europe)"
serial "UXK-108"
rom (
crc C9BCBE5A
)
)
game (
comment "Goonies, The (Japan)"
serial "RC734"
rom (
crc DB327847
)
)
game (
comment "Goonies, The (Japan) (Alt 1)"
serial "RC734"
rom (
crc C6445F82
)
)
game (
comment "Goonies, The (Japan) (Alt 2)"
serial "RC734"
rom (
crc 38F04741
)
)
game (
comment "Green Beret (Europe)"
serial "KN329"
rom (
crc 61F41BCD
)
)
game (
comment "Green Beret (Europe) (Alt 1)"
serial "KN329"
rom (
crc 46F5E571
)
)
game (
comment "Hades no Monsho (Japan)"
serial "GPM-131"
rom (
crc 4D105F57
)
)
game (
comment "Hades no Monsho (Japan) (Alt 1)"
serial "GPM-131"
rom (
crc F42F4A15
)
)
game (
comment "Hydlide (Japan)"
serial "TEX062"
rom (
crc 0F9D6F56
)
)
game (
comment "Hydlide 3 - The Space Memories (Japan)"
serial "TEX-79"
rom (
crc 00C5D5B5
)
)
game (
comment "Hydlide II - Shine of Darkness (Japan)"
serial "TEX-070"
rom (
crc D8055F5F
)
)
game (
comment "Hydlide II - Shine of Darkness (Japan) (Alt 1)"
serial "TEX-070"
rom (
crc B886D7F5
)
)
game (
comment "Hyper Olympic 1 (Japan)"
serial "RC711"
rom (
crc FEF1D8FA
)
)
game (
comment "Hyper Olympic 2 (Japan)"
serial "RC711"
rom (
crc 38CB690B
)
)
game (
comment "Hyper Rally (Japan)"
serial "RC718"
rom (
crc F94D452E
)
)
game (
comment "Hyper Rally (Japan) (Alt 1)"
serial "RC718"
rom (
crc C575CEC6
)
)
game (
comment "Hyper Rally (Japan) (Alt 2)"
serial "RC718"
rom (
crc 75CBB75D
)
)
game (
comment "Hyper Rally (Japan) (Alt 3)"
serial "RC718"
rom (
crc 0C5957AA
)
)
game (
comment "Hyper Sports 1 (Japan)"
serial "RC715"
rom (
crc 18DB4FF2
)
)
game (
comment "Hyper Sports 1 (Japan) (Alt 1)"
serial "RC715"
rom (
crc 0B5296F7
)
)
game (
comment "Hyper Sports 2 (Japan)"
serial "RC717"
rom (
crc 968FA8D6
)
)
game (
comment "Hyper Sports 3 (Japan)"
serial "RC733"
rom (
crc 80A831E1
)
)
game (
comment "Hyper Sports 3 (Japan) (Alt 1)"
serial "RC733"
rom (
crc 9F47E445
)
)
game (
comment "Hyper Sports 3 (Japan) (Alt 2)"
serial "RC733"
rom (
crc B615C709
)
)
game (
comment "Juno First (Japan)"
serial "HBS-G002C"
rom (
crc D902BE7C
)
)
game (
comment "Juno First (Japan) (Alt 1)"
serial "HBS-G002C"
rom (
crc EA67DF20
)
)
game (
comment "Kage no Densetsu - Legend of Kage, The (Japan)"
serial "MSX-9"
rom (
crc 69367E10
)
)
game (
comment "Kage no Densetsu - Legend of Kage, The (Japan) (Alt 1)"
serial "MSX-9"
rom (
crc B581F746
)
)
game (
comment "Karuizawa (Japan)"
serial "E-G187"
rom (
crc 6A30C707
)
)
game (
comment "Keystone Kapers (Japan)"
serial "R48X5503"
rom (
crc 7FF117F9
)
)
game (
comment "Keystone Kapers (Japan) (Alt 1)"
serial "R48X5503"
rom (
crc B1CF2097
)
)
game (
comment "Knightmare - Majou Densetsu (Japan)"
serial "RC739"
rom (
crc 0DB84205
)
)
game (
comment "Knightmare - Majou Densetsu (Japan) (Alt 1)"
serial "RC739"
rom (
crc CA9F791B
)
)
game (
comment "Knightmare - Majou Densetsu (Japan) (Alt 2)"
serial "RC739"
rom (
crc 5876A372
)
)
game (
comment "Knightmare III - Shalom (Japan)"
serial "RC754"
rom (
crc CF60FA7D
)
)
game (
comment "Konami's Baseball (Japan)"
serial "RC724"
rom (
crc B660494B
)
)
game (
comment "Konami's Baseball (Japan) (Alt 1)"
serial "RC724"
rom (
crc 6A8E56E1
)
)
game (
comment "Konami's Billiards (Europe)"
serial "RC706"
rom (
crc 0B65FE4D
)
)
game (
comment "Konami's Boxing (Japan)"
serial "RC736"
rom (
crc 3A442408
)
)
game (
comment "Konami's Boxing (Japan) (Alt 1)"
serial "RC736"
rom (
crc 19CCBCE1
)
)
game (
comment "Konami's Boxing (Japan) (Alt 2)"
serial "RC736"
rom (
crc 0D94E7B2
)
)
game (
comment "Konami's Football (Europe)"
serial "RC732"
rom (
crc BA1B16FC
)
)
game (
comment "Konami's Football (Europe) (Alt 1)"
serial "RC732"
rom (
crc 93604C07
)
)
game (
comment "Konami's Football (Europe) (Alt 2)"
serial "RC732"
rom (
crc C700FC49
)
)
game (
comment "Konami's Golf (Japan)"
serial "RC723"
rom (
crc 08C7E406
)
)
game (
comment "Konami's Golf (Japan) (Alt 1)"
serial "RC723"
rom (
crc 0E3380FE
)
)
game (
comment "Konami's Golf (Japan) (Alt 2)"
serial "RC723"
rom (
crc F06BEFD3
)
)
game (
comment "Konami's Ping-Pong (Japan)"
serial "RC731"
rom (
crc 3F200491
)
)
game (
comment "Konami's Ping-Pong (Japan) (Alt 1)"
serial "RC731"
rom (
crc BBCDD731
)
)
game (
comment "Konami's Ping-Pong (Japan) (Alt 2)"
serial "RC731"
rom (
crc A4D465A4
)
)
game (
comment "Konami's Ping-Pong (Japan) (Alt 3)"
serial "RC731"
rom (
crc 2829A061
)
)
game (
comment "Konami's Soccer (Japan)"
serial "RC732"
rom (
crc 74BC8295
)
)
game (
comment "Konami's Soccer (Japan) (Alt 1)"
serial "RC732"
rom (
crc 58EA53B9
)
)
game (
comment "Konami's Soccer (Japan) (Alt 2)"
serial "RC732"
rom (
crc E861D2BD
)
)
game (
comment "Konami's Soccer (Japan) (Alt 3)"
serial "RC732"
rom (
crc CCFB0CA2
)
)
game (
comment "Konami's Tennis (Japan)"
serial "RC720"
rom (
crc 61726BE4
)
)
game (
comment "Konami's Tennis (Japan) (Alt 1)"
serial "RC720"
rom (
crc CFCE0A28
)
)
game (
comment "Magical Tree (Japan)"
serial "RC713"
rom (
crc 827038A2
)
)
game (
comment "Magical Tree (Japan) (Alt 1)"
serial "RC713"
rom (
crc F3606C66
)
)
game (
comment "Marchen Veil I (Japan)"
serial "HBJ-G057D"
rom (
crc 44AA5422
)
)
game (
comment "Meikyuu Shinwa (Japan)"
serial "HM-023"
rom (
crc 2F8065EB
)
)
game (
comment "Meikyuu Shinwa (Japan) (Alt 1)"
serial "HM-023"
rom (
crc 1D1EC602
)
)
game (
comment "Mopiranger (Japan)"
serial "RC728"
rom (
crc 9D73E4C5
)
)
game (
comment "Mopiranger (Japan) (Alt 1)"
serial "RC728"
rom (
crc 097F4E4A
)
)
game (
comment "Mopiranger (Japan) (Alt 2)"
serial "RC728"
rom (
crc 213E623B
)
)
game (
comment "Mopiranger (Japan) (Alt 3)"
serial "RC728"
rom (
crc 73D0CE5A
)
)
game (
comment "Mopiranger (Japan) (Alt 4)"
serial "RC728"
rom (
crc 6135BD9A
)
)
game (
comment "Ninjakun Majou (Japan)"
serial "SX-010"
rom (
crc EF339B82
)
)
game (
comment "Parodius (Japan)"
serial "RC759"
rom (
crc 9BB308F5
)
)
game (
comment "Parodius (Japan) (Alt 1)"
serial "RC759"
rom (
crc CA21CDE4
)
)
game (
comment "Pippols (Japan)"
serial "RC729"
rom (
crc BE6A5E19
)
)
game (
comment "Pippols (Japan) (Alt 1)"
serial "RC729"