-
Notifications
You must be signed in to change notification settings - Fork 792
/
NEC - PC Engine - TurboGrafx 16.dat
3077 lines (2692 loc) · 34.3 KB
/
NEC - PC Engine - TurboGrafx 16.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 "NEC - PC Engine - TurboGrafx 16"
description "NEC - PC Engine - TurboGrafx 16"
)
game (
comment "1943 Kai (Japan)"
serial "NX91002"
rom (
crc FDE08D6D
)
)
game (
comment "21 Emon - Mezase Hotel Ou!! (Japan)"
serial "HE93003"
rom (
crc 73614660
)
)
game (
comment "Adventure Island (Japan)"
serial "HC91035"
rom (
crc 8E71D4F3
)
)
game (
comment "Aero Blasters (Japan)"
serial "HC90038"
rom (
crc 25BE2B81
)
)
game (
comment "Aero Blasters (USA)"
serial "TGX040051"
rom (
crc B03E0B32
)
)
game (
comment "After Burner II (Japan)"
serial "NAPH-1011"
rom (
crc CA72A828
)
)
game (
comment "Air Zonk (USA)"
serial "TGX040084"
rom (
crc 933D5BCC
)
)
game (
comment "Alien Crush (Japan)"
serial "NX63001"
rom (
crc 60EDF4E1
)
)
game (
comment "Alien Crush (USA)"
serial "NPUF-30008"
rom (
crc EA488494
)
)
game (
comment "Andre' Panza Kick Boxing (USA)"
serial "TGX040068"
rom (
crc A980E0E9
)
)
game (
comment "Ankoku Densetsu (Japan)"
serial "JC63007"
rom (
crc CACC06FB
)
)
game (
comment "Aoi Blink (Japan)"
serial "HC90030"
rom (
crc 08A09B9A
)
)
game (
comment "Appare Gateball (Japan)"
serial "HC63013"
rom (
crc 2B54CBA2
)
)
game (
comment "Armed F (Japan)"
serial "PV2004"
rom (
crc 20EF87FD
)
)
game (
comment "Atomic Robo-Kid Special (Japan)"
serial "UP01001"
rom (
crc DD175EFD
)
)
game (
comment "Ballistix (Japan)"
serial "CJ0001"
rom (
crc 8ACFC8AA
)
)
game (
comment "Ballistix (USA)"
serial "TGX030059"
rom (
crc 420FA189
)
)
game (
comment "Bari Bari Densetsu (Japan)"
serial "TP01003"
rom (
crc C267E25D
)
)
game (
comment "Barunba (Japan)"
serial "NC90003"
rom (
crc 4A3DF3CA
)
)
game (
comment "Batman (Japan)"
serial "SS90003"
rom (
crc 106BB7B2
)
)
game (
comment "Battle Lode Runner (Japan)"
serial "HC93054"
rom (
crc 59E44F45
)
)
game (
comment "Battle Royale (USA)"
serial "TGX030049"
rom (
crc E70B01AF
)
)
game (
comment "Be Ball (Japan)"
serial "HC90028"
rom (
crc E439F299
)
)
game (
comment "Benkei Gaiden (Japan)"
serial "SS89002"
rom (
crc E1A73797
)
)
game (
comment "Benkei Gaiden (Japan) (Alt 1)"
serial "SS89002"
rom (
crc C9626A43
)
)
game (
comment "Bikkuriman World (Japan)"
serial "HC62002"
rom (
crc 2841FD1E
)
)
game (
comment "Bikkuriman World (Japan) (Alt 1)"
serial "HC62002"
rom (
crc 34893891
)
)
game (
comment "Blazing Lazers (USA)"
serial "TGX030010"
rom (
crc B4A1B0F6
)
)
game (
comment "Blodia (Japan)"
serial "HC90027"
rom (
crc 958BCD09
)
)
game (
comment "Bloody Wolf (USA)"
serial "TGX040037"
rom (
crc 37BAF6BC
)
)
game (
comment "Bomberman '93 (Japan)"
serial "HC92061"
rom (
crc B300C5D0
)
)
game (
comment "Bomberman '93 (Japan) (Special Version)"
serial "HC92061"
rom (
crc 02309AA0
)
)
game (
comment "Bomberman '93 (USA)"
serial "TGX040093"
rom (
crc 56171C1C
)
)
game (
comment "Bomberman '94 (Japan)"
serial "NPJJ-30001"
rom (
crc 05362516
)
)
game (
comment "Bomberman (Japan)"
serial "HC90036"
rom (
crc 9ABB4D1F
)
)
game (
comment "Bomberman (USA)"
serial "TGX020053"
rom (
crc 5F6F3C2A
)
)
game (
comment "Bonk III - Bonk's Big Adventure (USA)"
serial "TGX080097"
rom (
crc 5A3F76D8
)
)
game (
comment "Bonk's Adventure (USA)"
serial "TGX030028"
rom (
crc 599EAD9B
)
)
game (
comment "Bonk's Revenge (USA)"
serial "TGX040058"
rom (
crc 14250F9A
)
)
game (
comment "Bouken Danshaku Don - The Lost Sunheart (Japan)"
serial "IM92001"
rom (
crc 8F4D9F94
)
)
game (
comment "Boxyboy (USA)"
serial "TGX010031"
rom (
crc 605BE213
)
)
game (
comment "Bravoman (USA)"
serial "TGX040047"
rom (
crc CCA08B02
)
)
game (
comment "Break In (Japan)"
serial "NX89002"
rom (
crc C9D7426A
)
)
game (
comment "Bubblegum Crash! - Knight Sabers 2034 (Japan)"
serial "NX91005"
rom (
crc 0D766139
)
)
game (
comment "Bull Fight - Ring no Haja (Japan)"
serial "CC-01001"
rom (
crc 5C4D1991
)
)
game (
comment "Burning Angels (Japan)"
serial "NX90008"
rom (
crc D233C05A
)
)
game (
comment "Busou Keiji - Cyber Cross (Japan)"
serial "FA01-002"
rom (
crc D0C250CA
)
)
game (
comment "Cadash (Japan)"
serial "TP02015"
rom (
crc 8DC0D85F
)
)
game (
comment "Cadash (USA)"
serial "WTG040501"
rom (
crc BB0B3AEF
)
)
game (
comment "Champion Wrestler (Japan)"
serial "TP02014"
rom (
crc 9EDC0AEA
)
)
game (
comment "Champions Forever Boxing (USA)"
serial "TGX040077"
rom (
crc 15EE889A
)
)
game (
comment "Chew Man Fu (USA)"
serial "TGX020035"
rom (
crc 8CD13E9A
)
)
game (
comment "Chibi Maruko-chan - Quiz de Piihyara (Japan)"
serial "NC92001"
rom (
crc 951ED380
)
)
game (
comment "Chikudenya Toubei - Kubikiri Yakata Yori (Japan)"
serial "NX89004"
rom (
crc CAB21B2E
)
)
game (
comment "Chikudenya Toubei - Kubikiri Yakata Yori (Japan) (Alt 1)"
serial "NX89004"
rom (
crc 84098884
)
)
game (
comment "China Warrior (USA)"
serial "TGX020008"
rom (
crc A2EE361D
)
)
game (
comment "Chouzetsu Rinjin - Bravoman (Japan)"
serial "NC90005"
rom (
crc 0DF57C90
)
)
game (
comment "Circus Lido (Japan)"
serial "PJ91001"
rom (
crc C3212C24
)
)
game (
comment "City Hunter (Japan)"
serial "SS90001"
rom (
crc F91B055F
)
)
game (
comment "Columns (Japan)"
serial "TJ03002"
rom (
crc 99F7A572
)
)
game (
comment "Coryoon - Child of Dragon (Japan)"
serial "NX91004"
rom (
crc B4D29E3B
)
)
game (
comment "Coryoon - Child of Dragon (Japan) (Alt 1)"
serial "NX91004"
rom (
crc D5389889
)
)
game (
comment "Cratermaze (USA)"
serial "TGX020027"
rom (
crc 9033E83A
)
)
game (
comment "Cross Wiber - Cyber Combat Police (Japan)"
serial "FA02-008"
rom (
crc 2DF97BD0
)
)
game (
comment "Cyber Core (Japan)"
serial "AI-02001"
rom (
crc A98D276A
)
)
game (
comment "Cyber Core (USA)"
serial "TGX030030"
rom (
crc 4CFB6E3E
)
)
game (
comment "Cyber Dodge (Japan)"
serial "TON92005"
rom (
crc C1139BD3
)
)
game (
comment "Cyber Knight (Japan)"
serial "TON90003"
rom (
crc A594FAC0
)
)
game (
comment "Daichi-kun Crisis - Do Natural (Japan)"
serial "SL01001"
rom (
crc 61A2935F
)
)
game (
comment "Daisenpuu (Japan)"
serial "NAPH-1014"
rom (
crc 9107BCC8
)
)
game (
comment "Darius Plus (Japan)"
serial "NAPH-1009"
rom (
crc BEBFE042
)
)
game (
comment "Darkwing Duck (USA)"
serial "TGX040066"
rom (
crc 4AC97606
)
)
game (
comment "Davis Cup Tennis (USA)"
serial "TGX040061"
rom (
crc 9EDAB596
)
)
game (
comment "Dead Moon (USA)"
serial "TGX040081"
rom (
crc F5D98B0B
)
)
game (
comment "Dead Moon - Getsu Sekai no Akumu (Japan)"
serial "TS91001"
rom (
crc 56739BC7
)
)
game (
comment "Deep Blue (USA)"
serial "TGX020012"
rom (
crc 16B40B44
)
)
game (
comment "Deep Blue - Kaitei Shinwa (Japan)"
serial "PV1002"
rom (
crc 053A0F83
)
)
game (
comment "Detana!! TwinBee (Japan)"
serial "KM92004"
rom (
crc 5CF59D80
)
)
game (
comment "Devil's Crush (USA)"
serial "TGX030038"
rom (
crc 157B4492
)
)
game (
comment "Die Hard (Japan)"
serial "NB90003"
rom (
crc 1B5B1CB1
)
)
game (
comment "Digital Champ (Japan)"
serial "NX89003"
rom (
crc 17BA3032
)
)
game (
comment "Don Doko Don! (Japan)"
serial "TP02010"
rom (
crc F42AA73E
)
)
game (
comment "Doraemon - Meikyuu Daisakusen (Japan)"
serial "HC89023"
rom (
crc DC760A07
)
)
game (
comment "Doraemon - Nobita no Dorabian Night (Japan)"
serial "HC91051"
rom (
crc 013A747F
)
)
game (
comment "Double Dungeons - W (Japan)"
serial "NCS89006"
rom (
crc 86087B39
)
)
game (
comment "Double Dungeons - W (USA)"
serial "TGX020036"
rom (
crc 4A1A8C60
)
)
game (
comment "Download (Japan)"
serial "NAPH-1007"
rom (
crc 85101C20
)
)
game (
comment "Download (Japan) (Alt 1)"
serial "NAPH-1007"
rom (
crc 4E0DE488
)
)
game (
comment "Dragon Egg! (Japan)"
serial "NCS91003"
rom (
crc 442405D5
)
)
game (
comment "Dragon Saber - After Story of Dragon Spirit (Japan)"
serial "NC91005"
rom (
crc 3219849C
)
)
game (
comment "Dragon Saber - After Story of Dragon Spirit (Japan) (Alt 1)"
serial "NC91005"
rom (
crc C89CE75A
)
)
game (
comment "Dragon Spirit (Japan)"
serial "NC63003"
rom (
crc 01A76935
)
)
game (
comment "Dragon Spirit (USA)"
serial "TGX020016"
rom (
crc 086F148C
)
)
game (
comment "Dragon's Curse (USA)"
serial "TGX020039"
rom (
crc 7D2C4B09
)
)
game (
comment "Drop Rock Hora Hora (Japan)"
serial "DE90005"
rom (
crc 67EC5EC4
)
)
game (
comment "Drop Rock Hora Hora (Japan) (Alt 1)"
serial "DE90005"
rom (
crc 8E81FCAC
)
)
game (
comment "Drop.Off (USA)"
serial "TGX020042"
rom (
crc FEA27B32
)
)
game (
comment "Dungeon Explorer (Japan)"
serial "HC63015"
rom (
crc 1B1A80A2
)
)
game (
comment "Dungeon Explorer (USA)"
serial "TGX030006"
rom (
crc 4FF01515
)
)
game (
comment "Energy (Japan)"
serial "NCS89005"
rom (
crc CA68FF21
)
)
game (
comment "Eternal City - Toshi Tensou Keikaku (Japan)"
serial "NX91003"
rom (
crc B18D102D
)
)
game (
comment "F-1 Dream (Japan)"
serial "H54G-1005"
rom (
crc D50FF730
)
)
game (
comment "F-1 Pilot - You're King of Kings (Japan)"
serial "PV1001"
rom (
crc 09048174
)
)
game (
comment "F1 Circus '91 - World Championship (Japan)"
serial "NB90002"
rom (
crc D7CFD70F
)
)
game (
comment "F1 Circus '92 - The Speed of Sound (Japan)"
serial "NB90002"
rom (
crc B268F2A2
)
)
game (
comment "F1 Circus (Japan)"
serial "NB90002"
rom (
crc E14DEE08
)
)
game (
comment "F1 Circus (Japan) (Alt 1)"
serial "NB90002"
rom (
crc 79705779
)
)
game (
comment "F1 Triple Battle (Japan)"
serial "HM89002"
rom (
crc 13BF0409
)
)
game (
comment "Falcon (USA)"
serial "TGX040067"
rom (
crc 0BC0A12B
)
)
game (
comment "Fantasy Zone (Japan)"
serial "H49G-1001"
rom (
crc 72CB0F9D
)
)
game (
comment "Fantasy Zone (USA)"
serial "TGX020017"
rom (
crc E8C3573D
)
)
game (
comment "Fighting Run (Japan)"
serial "NB91005"
rom (
crc 1828D2E5
)
)
game (
comment "Final Blaster (Japan)"
serial "NC90007"
rom (
crc C90971BA
)
)
game (
comment "Final Lap Twin (Japan)"
serial "NC89003"
rom (
crc C8C084E3
)
)
game (
comment "Final Lap Twin (USA)"
serial "TGX030020"
rom (
crc 26408EA3
)
)
game (
comment "Final Match Tennis (Japan)"
serial "HM91004"
rom (
crc 560D2305
)
)
game (
comment "Final Soldier (Japan)"
serial "HC91045"
rom (
crc AF2DD2AF
)
)
game (
comment "Final Soldier (Japan) (Special Version)"
serial "HC91045"
rom (
crc 02A578C5
)
)
game (
comment "Fire Pro Wrestling - Combination Tag (Japan)"
serial "HM89001"
rom (
crc 90ED6575
)
)
game (
comment "Fire Pro Wrestling 2 - 2nd Bout (Japan)"
serial "HM91005"
rom (
crc E88987BB
)
)
game (
comment "Fire Pro Wrestling 3 - Legend Bout (Japan)"
serial "HM92006"
rom (
crc 534E8808
)
)
game (
comment "Formation Soccer - Human Cup '90 (Japan)"
serial "HM90003"
rom (
crc 85A1E7B6
)
)
game (
comment "Formation Soccer - On J. League (Japan)"
serial "HM94007"
rom (
crc 7146027C
)
)
game (
comment "Fushigi no Yume no Alice (Japan)"
serial "FA02-007"
rom (
crc 12C4E6FD
)
)
game (
comment "Gai Flame (Japan)"
serial "NCS90001"