forked from libretro/libretro-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSNK - Neo Geo.dat
1673 lines (1672 loc) · 53.1 KB
/
SNK - Neo Geo.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 "SNK - Neo Geo"
description "SNK - Neo Geo"
)
game (
name "2020 Super Baseball (set 1)"
description "2020 Super Baseball (set 1)"
publisher "SNK / Pallas"
rom ( name "2020bb.neo" size 7081984 crc 8041AD52 )
)
game (
name "2020 Super Baseball (set 2)"
description "2020 Super Baseball (set 2)"
publisher "SNK / Pallas"
rom ( name "2020bba.neo" size 7081984 crc E9526781 )
)
game (
name "2020 Super Baseball (set 3)"
description "2020 Super Baseball (set 3)"
publisher "SNK / Pallas"
rom ( name "2020bbh.neo" size 7081984 crc 9143727F )
)
game (
name "3 Count Bout _ Fire Suplex (NGM-043)(NGH-043)"
description "3 Count Bout _ Fire Suplex (NGM-043)(NGH-043)"
publisher "SNK"
rom ( name "3countb.neo" size 13897728 crc 03BDC5A6 )
)
game (
name "Aero Fighters 2 / Sonic Wings 2"
description "Aero Fighters 2 / Sonic Wings 2"
publisher "Video System Co."
rom ( name "sonicwi2.neo" size 13897728 crc AC1851BB )
)
game (
name "Aero Fighters 3 / Sonic Wings 3"
description "Aero Fighters 3 / Sonic Wings 3"
publisher "Video System Co."
rom ( name "sonicwi3.neo" size 21237760 crc 10EDC4FF )
)
game (
name "Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008)(ADH-008)"
description "Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008)(ADH-008)"
publisher "ADK / SNK"
rom ( name "aodk.neo" size 23334912 crc 8DCAFD3B )
)
game (
name "Alpha Mission II / ASO II - Last Guardian (NGM-007)(NGH-007)"
description "Alpha Mission II / ASO II - Last Guardian (NGM-007)(NGH-007)"
publisher "SNK"
rom ( name "alpham2.neo" size 6164480 crc D8CB49E9 )
)
game (
name "Alpha Mission II / ASO II - Last Guardian (prototype)"
description "Alpha Mission II / ASO II - Last Guardian (prototype)"
publisher "SNK"
rom ( name "alpham2p.neo" size 9179136 crc AAB8F811 )
)
game (
name "Andro Dunos (NGM-049)(NGH-049)"
description "Andro Dunos (NGM-049)(NGH-049)"
publisher "Visco"
rom ( name "androdun.neo" size 4460544 crc 6AAED441 )
)
game (
name "Art of Fighting / Ryuuko no Ken (NGM-044)(NGH-044)"
description "Art of Fighting / Ryuuko no Ken (NGM-044)(NGH-044)"
publisher "SNK"
rom ( name "aof.neo" size 13373440 crc 02E281F9 )
)
game (
name "Art of Fighting 2 / Ryuuko no Ken 2 (NGH-056)"
description "Art of Fighting 2 / Ryuuko no Ken 2 (NGH-056)"
publisher "SNK"
rom ( name "aof2a.neo" size 23334912 crc C649E151 )
)
game (
name "Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056)"
description "Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056)"
publisher "SNK"
rom ( name "aof2.neo" size 23334912 crc BC3E4C20 )
)
game (
name "Art of Fighting 3 - The Path of the Warrior (Korean release)"
description "Art of Fighting 3 - The Path of the Warrior (Korean release)"
publisher "SNK"
rom ( name "aof3k.neo" size 39063552 crc 890A3F7A )
)
game (
name "Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden"
description "Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden"
publisher "SNK"
rom ( name "aof3k.neo" size 39063552 crc 46B7EAC3 )
)
game (
name "Bakatonosama Mahjong Manyuuki (MOM-002)(MOH-002)"
description "Bakatonosama Mahjong Manyuuki (MOM-002)(MOH-002)"
publisher "Monolith Corp."
rom ( name "bakatono.neo" size 7081984 crc 4E1ACD2B )
)
game (
name "Bang Bang Busters (2010 NCI release)"
description "Bang Bang Busters (2010 NCI release)"
publisher "Visco"
rom ( name "b2b.neo" size 6033408 crc 5228FABA )
)
game (
name "Bang Bead"
description "Bang Bead"
publisher "Visco"
rom ( name "bangbead.neo" size 24383488 crc 0003BB08 )
)
game (
name "Baseball Stars 2"
description "Baseball Stars 2"
publisher "SNK"
rom ( name "bstars2.neo" size 7606272 crc CEA02498 )
)
game (
name "Baseball Stars Professional (NGH-002)"
description "Baseball Stars Professional (NGH-002)"
publisher "SNK"
rom ( name "bstarsh.neo" size 6688768 crc 1FFF2E59 )
)
game (
name "Baseball Stars Professional (NGM-002)"
description "Baseball Stars Professional (NGM-002)"
publisher "SNK"
rom ( name "bstars.neo" size 6688768 crc 221E9FDB )
)
game (
name "Battle Flip Shot"
description "Battle Flip Shot"
publisher "Visco"
rom ( name "flipshot.neo" size 7606272 crc E3D2D230 )
)
game (
name "Blazing Star"
description "Blazing Star"
publisher "Yumekobo"
rom ( name "blazstar.neo" size 45355008 crc 21AA3A79 )
)
game (
name "Blue's Journey / Raguy (ALH-001)"
description "Blue's Journey / Raguy (ALH-001)"
publisher "Alpha Denshi Co."
rom ( name "bjourneyh.neo" size 6557696 crc C552EA99 )
)
game (
name "Blue's Journey / Raguy (ALM-001)(ALH-001)"
description "Blue's Journey / Raguy (ALM-001)(ALH-001)"
publisher "Alpha Denshi Co."
rom ( name "bjourney.neo" size 7606272 crc 3D0805DE )
)
game (
name "Breakers Revenge"
description "Breakers Revenge"
publisher "Visco"
rom ( name "breakrev.neo" size 35917824 crc 0874FF8B )
)
game (
name "Breakers"
description "Breakers"
publisher "Visco"
rom ( name "breakers.neo" size 27529216 crc E9E191F2 )
)
game (
name "Burning Fight (NGH-018)(US)"
description "Burning Fight (NGH-018)(US)"
publisher "SNK"
rom ( name "burningfh.neo" size 7081984 crc ADCC7B7D )
)
game (
name "Burning Fight (NGM-018)(NGH-018)"
description "Burning Fight (NGM-018)(NGH-018)"
publisher "SNK"
rom ( name "burningf.neo" size 7081984 crc 62C88A2D )
)
game (
name "Burning Fight (prototype, near final, ver 23.3, 910326)"
description "Burning Fight (prototype, near final, ver 23.3, 910326)"
publisher "SNK"
rom ( name "burningfpa.neo" size 7606272 crc B5DF2D4E )
)
game (
name "Burning Fight (prototype, newer, V07)"
description "Burning Fight (prototype, newer, V07)"
publisher "SNK"
rom ( name "burningfpb.neo" size 7606272 crc F208A832 )
)
game (
name "Burning Fight (prototype, older)"
description "Burning Fight (prototype, older)"
publisher "SNK"
rom ( name "burningfp.neo" size 7081984 crc 8D3E9C7B )
)
game (
name "Captain Tomaday"
description "Captain Tomaday"
publisher "Visco"
rom ( name "ctomaday.neo" size 15994880 crc 0CE8E4F2 )
)
game (
name "Chibi Marukochan Deluxe Quiz"
description "Chibi Marukochan Deluxe Quiz"
publisher "Takara"
rom ( name "marukodq.neo" size 15994880 crc A725E249 )
)
game (
name "Choutetsu Brikin'ger - Iron Clad (prototype)"
description "Choutetsu Brikin'ger - Iron Clad (prototype)"
publisher "Saurus"
rom ( name "ironclad.neo" size 23334912 crc E38554FB )
)
game (
name "Choutetsu Brikin'ger - Iron Clad (prototype, bootleg)"
description "Choutetsu Brikin'ger - Iron Clad (prototype, bootleg)"
publisher "bootleg"
rom ( name "ironclado.neo" size 23334912 crc 300B920A )
)
game (
name "Crossed Swords (ALM-002)(ALH-002)"
description "Crossed Swords (ALM-002)(ALH-002)"
publisher "Alpha Denshi Co."
rom ( name "crsword.neo" size 6033408 crc 75FABD5D )
)
game (
name "Crossed Swords 2 (bootleg of CD version)"
description "Crossed Swords 2 (bootleg of CD version)"
publisher "bootleg (Razoola)"
rom ( name "crswd2bl.neo" size 12849152 crc 9ACFB8E5 )
)
game (
name "Crouching Tiger Hidden Dragon 2003 (hack of The King of Fighters 2001)"
description "Crouching Tiger Hidden Dragon 2003 (hack of The King of Fighters 2001)"
publisher "bootleg (Phenixsoft)"
rom ( name "cthd2003.neo" size 89395200 crc 62E9EF46 )
)
game (
name "Crouching Tiger Hidden Dragon 2003 Super Plus (hack of The King of Fighters 2001)"
description "Crouching Tiger Hidden Dragon 2003 Super Plus (hack of The King of Fighters 2001)"
publisher "bootleg (Phenixsoft)"
rom ( name "ct2k3sp.neo" size 89526272 crc 060956CE )
)
game (
name "Crouching Tiger Hidden Dragon 2003 Super Plus (hack of The King of Fighters 2001, alternate).neo"
description "Crouching Tiger Hidden Dragon 2003 Super Plus (hack of The King of Fighters 2001, alternate).neo"
publisher "bootleg (Phenixsoft)"
rom ( name "ct2k3sa.neo" size 89395200 crc 7E74BDF9 )
)
game (
name "Cyber-Lip (NGM-010)"
description "Cyber-Lip (NGM-010)"
publisher "SNK"
rom ( name "cyberlip.neo" size 6557696 crc D20D6A3E )
)
game (
name "Digger Man [Homebrew]"
description "Digger Man [Homebrew]"
publisher "Kyle Hodgetts"
rom ( name "diggerma.neo" size 2363392 crc 41581AE2 )
)
game (
name "Double Dragon (Neo-Geo)"
description "Double Dragon (Neo-Geo)"
publisher "Technos Japan"
rom ( name "doubledr.neo" size 21237760 crc 5F92A3AA )
)
game (
name "Dragon's Heaven (development board)"
description "Dragon's Heaven (development board)"
publisher "Face"
rom ( name "dragonsh.neo" size 36966400 crc 1E3E2500 )
)
game (
name "Eight Man (NGM-025)(NGH-025)"
description "Eight Man (NGM-025)(NGH-025)"
publisher "SNK / Pallas"
rom ( name "eightman.neo" size 6033408 crc 843DCF30 )
)
game (
name "Far East of Eden - Kabuki Klash _ Tengai Makyou - Shin Den"
description "Far East of Eden - Kabuki Klash _ Tengai Makyou - Shin Den"
publisher "Hudson"
rom ( name "kabukikl.neo" size 26480640 crc E5C7C02F )
)
game (
name "Fatal Fury - King of Fighters _ Garou Densetsu - shukumei no tatakai (NGM-033)(NGH-033)"
description "Fatal Fury - King of Fighters _ Garou Densetsu - shukumei no tatakai (NGM-033)(NGH-033)"
publisher "SNK"
rom ( name "fatfury1.neo" size 7213056 crc DABCC80B )
)
game (
name "Fatal Fury 2 _ Garou Densetsu 2 - arata-naru tatakai (NGM-047)(NGH-047)"
description "Fatal Fury 2 _ Garou Densetsu 2 - arata-naru tatakai (NGM-047)(NGH-047)"
publisher "SNK"
rom ( name "fatfury2.neo" size 13897728 crc 1A896E27 )
)
game (
name "Fatal Fury 3 - Road to the Final Victory _ Garou Densetsu 3 - haruka-naru tatakai (NGM-069)(NGH-069)"
description "Fatal Fury 3 - Road to the Final Victory _ Garou Densetsu 3 - haruka-naru tatakai (NGM-069)(NGH-069)"
publisher "SNK"
rom ( name "fatfury3.neo" size 34869248 crc D353EEED )
)
game (
name "Fatal Fury Special _ Garou Densetsu Special (set 1)(NGM-058)(NGH-058)"
description "Fatal Fury Special _ Garou Densetsu Special (set 1)(NGM-058)(NGH-058)"
publisher "SNK"
rom ( name "fatfursp.neo" size 19664896 crc BECCEF57 )
)
game (
name "Fatal Fury Special _ Garou Densetsu Special (set 2)(NGM-058)(NGH-058)"
description "Fatal Fury Special _ Garou Densetsu Special (set 2)(NGM-058)(NGH-058)"
publisher "SNK"
rom ( name "fatfurspa.neo" size 19664896 crc E2F91CAC )
)
game (
name "Fight Fever (set 1)"
description "Fight Fever (set 1)"
publisher "Viccom"
rom ( name "fightfev.neo" size 12849152 crc 8515503B )
)
game (
name "Fight Fever (set 2)"
description "Fight Fever (set 2)"
publisher "Viccom"
rom ( name "fightfeva.neo" size 12849152 crc BABD8403 )
)
game (
name "Fighters Swords (Korean release of Samurai Shodown III)"
description "Fighters Swords (Korean release of Samurai Shodown III)"
publisher "SNK"
rom ( name "fswords.neo" size 36966400 crc E6AA08C1 )
)
game (
name "Football Frenzy (NGM-034)(NGH-034)"
description "Football Frenzy (NGM-034)(NGH-034)"
publisher "SNK"
rom ( name "fbfrenzy.neo" size 6033408 crc 2DB33EC0 )
)
game (
name "Galaxy Fight - Universal Warriors"
description "Galaxy Fight - Universal Warriors"
publisher "Sunsoft"
rom ( name "galaxyfg.neo" size 22286336 crc EC905658 )
)
game (
name "Ganryu / Musashi Ganryuki"
description "Ganryu / Musashi Ganryuki"
publisher "Visco"
rom ( name "ganryu.neo" size 23334912 crc 382E661F )
)
game (
name "Garou - Mark of the Wolves (bootleg)"
description "Garou - Mark of the Wolves (bootleg)"
publisher "bootleg"
rom ( name "garoubl.neo" size 89788416 crc 2C3351E9 )
)
game (
name "Garou - Mark of the Wolves (NGH-2530)"
description "Garou - Mark of the Wolves (NGH-2530)"
publisher "SNK"
rom ( name "garouha.neo" size 94113792 crc 9F96E440 )
)
game (
name "Garou - Mark of the Wolves (NGM-2530) (NGH-2530)"
description "Garou - Mark of the Wolves (NGM-2530) (NGH-2530)"
publisher "SNK"
rom ( name "garouh.neo" size 94113792 crc BF2204C4 )
)
game (
name "Garou - Mark of the Wolves (NGM-2530)"
description "Garou - Mark of the Wolves (NGM-2530)"
publisher "SNK"
rom ( name "garou.neo" size 94113792 crc 25D2E39E )
)
game (
name "Garou - Mark of the Wolves (prototype)"
description "Garou - Mark of the Wolves (prototype)"
publisher "SNK"
rom ( name "garoup.neo" size 89526272 crc 81275C80 )
)
game (
name "Ghost Pilots (NGH-020)(US)"
description "Ghost Pilots (NGH-020)(US)"
publisher "SNK"
rom ( name "gpilotsh.neo" size 7213056 crc EEA2B267 )
)
game (
name "Ghost Pilots (NGM-020)(NGH-020)"
description "Ghost Pilots (NGM-020)(NGH-020)"
publisher "SNK"
rom ( name "gpilots.neo" size 7213056 crc AAD82C6C )
)
game (
name "Ghost Pilots (prototype)"
description "Ghost Pilots (prototype)"
publisher "SNK"
rom ( name "gpilotsp.neo" size 7606272 crc 3B16438B )
)
game (
name "Ghostlop (prototype)"
description "Ghostlop (prototype)"
publisher "Data East Corporation"
rom ( name "ghostlop.neo" size 11800576 crc ADAFD77A )
)
game (
name "Goal! Goal! Goal!"
description "Goal! Goal! Goal!"
publisher "Visco"
rom ( name "goalx3.neo" size 14946304 crc 1A3799D6 )
)
game (
name "Gururin"
description "Gururin"
publisher "Face"
rom ( name "gururin.neo" size 5509120 crc 5C587362 )
)
game (
name "Idol Mahjong Final Romance 2 (Neo-Geo, bootleg of CD version)"
description "Idol Mahjong Final Romance 2 (Neo-Geo, bootleg of CD version)"
publisher "bootleg"
rom ( name "froman2b.neo" size 10227712 crc E7D57377 )
)
game (
name "Jyanshin Densetsu - Quest of Jongmaster"
description "Jyanshin Densetsu - Quest of Jongmaster"
publisher "Aicom"
rom ( name "janshin.neo" size 7606272 crc C62AB999 )
)
game (
name "Jockey Grand Prix (set 1)"
description "Jockey Grand Prix (set 1)"
publisher "Sun Amusement / BrezzaSoft"
rom ( name "jockeygp.neo" size 20582400 crc 71DB01DD )
)
game (
name "Jockey Grand Prix (set 2)"
description "Jockey Grand Prix (set 2)"
publisher "Sun Amusement / BrezzaSoft"
rom ( name "jockeygpa.neo" size 20582400 crc 23102F16 )
)
game (
name "Karnov's Revenge _ Fighter's History Dynamite"
description "Karnov's Revenge _ Fighter's History Dynamite"
publisher "Data East Corporation"
rom ( name "karnovr.neo" size 15994880 crc BE78C856 )
)
game (
name "King of Gladiator (The King of Fighters '97 bootleg)"
description "King of Gladiator (The King of Fighters '97 bootleg)"
publisher "bootleg"
rom ( name "kog.neo" size 61083648 crc 890805A0 )
)
game (
name "King of the Monsters (set 1)"
description "King of the Monsters (set 1)"
publisher "SNK"
rom ( name "kotm.neo" size 7213056 crc 03919498 )
)
game (
name "King of the Monsters (set 2)"
description "King of the Monsters (set 2)"
publisher "SNK"
rom ( name "kotmh.neo" size 7213056 crc A4C35BFD )
)
game (
name "King of the Monsters 2 - The Next Thing (NGM-039)(NGH-039)"
description "King of the Monsters 2 - The Next Thing (NGM-039)(NGH-039)"
publisher "SNK"
rom ( name "kotm2.neo" size 10752000 crc 45D1EE0C )
)
game (
name "King of the Monsters 2 - The Next Thing (older)"
description "King of the Monsters 2 - The Next Thing (older)"
publisher "SNK"
rom ( name "kotm2a.neo" size 10752000 crc 8244FE15 )
)
game (
name "King of the Monsters 2 - The Next Thing (prototype)"
description "King of the Monsters 2 - The Next Thing (prototype)"
publisher "SNK"
rom ( name "kotm2p.neo" size 10752000 crc 2589D82E )
)
game (
name "Kizuna Encounter - Super Tag Battle / Fu'un Super Tag Battle"
description "Kizuna Encounter - Super Tag Battle / Fu'un Super Tag Battle"
publisher "SNK"
rom ( name "kizuna.neo" size 40112128 crc 4A93EF82 )
)
game (
name "Lansquenet 2004 (Shock Troopers - 2nd Squad bootleg)"
description "Lansquenet 2004 (Shock Troopers - 2nd Squad bootleg)"
publisher "bootleg"
rom ( name "lans2004.neo" size 67375104 crc F0BDEB60 )
)
game (
name "Last Hope (bootleg AES to MVS conversion, no coin support)"
description "Last Hope (bootleg AES to MVS conversion, no coin support)"
publisher "NG:DEV.TEAM"
rom ( name "lasthope.neo" size 24317952 crc 16C6AE63 )
)
game (
name "Last Resort (prototype)"
description "Last Resort (prototype)"
publisher "SNK"
rom ( name "lresortp.neo" size 7606272 crc C41B32C3 )
)
game (
name "Last Resort"
description "Last Resort"
publisher "SNK"
rom ( name "lresort.neo" size 6033408 crc 6738AEB0 )
)
game (
name "League Bowling (NGM-019)(NGH-019)"
description "League Bowling (NGM-019)(NGH-019)"
publisher "SNK"
rom ( name "lbowling.neo" size 3411968 crc 7222C3CE )
)
game (
name "Legend of Success Joe _ Ashitano Joe Densetsu"
description "Legend of Success Joe _ Ashitano Joe Densetsu"
publisher "SNK / Wave"
rom ( name "legendos.neo" size 6033408 crc 67F65C54 )
)
game (
name "Magical Drop II"
description "Magical Drop II"
publisher "Data East Corporation"
rom ( name "magdrop2.neo" size 11276288 crc FD5D3E9A )
)
game (
name "Magical Drop III"
description "Magical Drop III"
publisher "Data East Corporation"
rom ( name "magdrop3.neo" size 22810624 crc 7BF1A9B0 )
)
game (
name "Magician Lord (NGH-005)"
description "Magician Lord (NGH-005)"
publisher "Alpha Denshi Co."
rom ( name "maglordh.neo" size 5640192 crc F2D54371 )
)
game (
name "Magician Lord (NGM-005)"
description "Magician Lord (NGM-005)"
publisher "Alpha Denshi Co."
rom ( name "maglord.neo" size 5640192 crc 11971FBF )
)
game (
name "Mahjong Kyo Retsuden (NGM-004)(NGH-004)"
description "Mahjong Kyo Retsuden (NGM-004)(NGH-004)"
publisher "SNK"
rom ( name "mahretsu.neo" size 5509120 crc 18309421 )
)
game (
name "Matrimelee _ Shin Gouketsuji Ichizoku Toukon (bootleg) [Bootleg]"
description "Matrimelee _ Shin Gouketsuji Ichizoku Toukon (bootleg) [Bootleg]"
publisher "bootleg"
rom ( name "matrimbl.neo" size 89788416 crc 96DE3019 )
)
game (
name "Matrimelee _ Shin Gouketsuji Ichizoku Toukon (NGM-2660) (NGH-2660)"
description "Matrimelee _ Shin Gouketsuji Ichizoku Toukon (NGM-2660) (NGH-2660)"
publisher "Noise Factory / Atlus"
rom ( name "matrim.neo" size 89788416 crc B09A3C96 )
)
game (
name "Metal Slug - Super Vehicle-001"
description "Metal Slug - Super Vehicle-001"
publisher "Nazca"
rom ( name "mslug.neo" size 27529216 crc 05BE3849 )
)
game (
name "Metal Slug 2 - Super Vehicle-001_II (NGM-2410) (NGH-2410)"
description "Metal Slug 2 - Super Vehicle-001_II (NGM-2410) (NGH-2410)"
publisher "SNK"
rom ( name "mslug2.neo" size 45355008 crc AC0AA8EF )
)
game (
name "Metal Slug 2 Turbo (NGM-9410) (hack)"
description "Metal Slug 2 Turbo (NGM-9410) (hack)"
publisher "hack (trap15)"
rom ( name "mslug2t.neo" size 45355008 crc 2056E958 )
)
game (
name "Metal Slug 3 (NGH-2560)"
description "Metal Slug 3 (NGH-2560)"
publisher "SNK"
rom ( name "mslug3h.neo" size 90181632 crc 24B483C3 )
)
game (
name "Metal Slug 3 (NGM-2560)"
description "Metal Slug 3 (NGM-2560)"
publisher "SNK"
rom ( name "mslug3.neo" size 94375936 crc 296F41B1 )
)
game (
name "Metal Slug 3 (NGM-2560, earlier)"
description "Metal Slug 3 (NGM-2560, earlier)"
publisher "SNK"
rom ( name "mslug3a.neo" size 94375936 crc 4D42CAF5 )
)
game (
name "Metal Slug 4 (NGH-2630)"
description "Metal Slug 4 (NGH-2630)"
publisher "Mega / Noise Factory / Playmore"
rom ( name "mslug4h.neo" size 73011200 crc 9A041B23 )
)
game (
name "Metal Slug 4 (NGM-2630)"
description "Metal Slug 4 (NGM-2630)"
publisher "Mega / Noise Factory / Playmore"
rom ( name "mslug4.neo" size 73011200 crc 80822177 )
)
game (
name "Metal Slug 4 Plus (bootleg)"
description "Metal Slug 4 Plus (bootleg)"
publisher "bootleg"
rom ( name "ms4plus.neo" size 72617984 crc 9AEC5792 )
)
game (
name "Metal Slug 5 (bootleg, set 1)"
description "Metal Slug 5 (bootleg, set 1)"
publisher "bootleg"
rom ( name "mslug5b.neo" size 89395200 crc 5D1F010C )
)
game (
name "Metal Slug 5 (NGH-2680)"
description "Metal Slug 5 (NGH-2680)"
publisher "SNK Playmore"
rom ( name "mslug5h.neo" size 92934144 crc BA52E48D )
)
game (
name "Metal Slug 5 (NGM-2680)"
description "Metal Slug 5 (NGM-2680)"
publisher "SNK Playmore"
rom ( name "mslug5.neo" size 92934144 crc 11E4F258 )
)
game (
name "Metal Slug 5 Plus (bootleg)"
description "Metal Slug 5 Plus (bootleg)"
publisher "bootleg"
rom ( name "ms5plus.neo" size 89788416 crc 0271C9C4 )
)
game (
name "Metal Slug 6 (bootleg of Metal Slug 3)"
description "Metal Slug 6 (bootleg of Metal Slug 3)"
publisher "bootleg"
rom ( name "mslug3b6.neo" size 89788416 crc F70D50CB )
)
game (
name "Metal Slug X - Super Vehicle-001 (NGM-2500)(NGH-2500)"
description "Metal Slug X - Super Vehicle-001 (NGM-2500)(NGH-2500)"
publisher "SNK"
rom ( name "mslugx.neo" size 66326528 crc FDC65A72 )
)
game (
name "Minasanno Okagesamadesu! Daisugorokutaikai (MOM-001)(MOH-001)"
description "Minasanno Okagesamadesu! Daisugorokutaikai (MOM-001)(MOH-001)"
publisher "Monolith Corp."
rom ( name "minasan.neo" size 7081984 crc FA5F4DE4 )
)
game (
name "Money Puzzle Exchanger / Money Idol Exchanger"
description "Money Puzzle Exchanger / Money Idol Exchanger"
publisher "Face"
rom ( name "miexchng.neo" size 11276288 crc 7EDFBB25 )
)
game (
name "Mutation Nation (NGM-014)(NGH-014)"
description "Mutation Nation (NGM-014)(NGH-014)"
publisher "SNK"
rom ( name "mutnat.neo" size 7081984 crc 100027FA )
)
game (
name "NAM-1975 (NGM-001)(NGH-001)"
description "NAM-1975 (NGM-001)(NGH-001)"
publisher "SNK"
rom ( name "nam1975.neo" size 6164480 crc 338F2DEE )
)
game (
name "Neo Bomberman"
description "Neo Bomberman"
publisher "Hudson"
rom ( name "neobombe.neo" size 17043456 crc 452609D6 )
)
game (
name "Neo Drift Out - New Technology"
description "Neo Drift Out - New Technology"
publisher "Visco"
rom ( name "neodrift.neo" size 14946304 crc F2063AFC )
)
game (
name "Neo Mr. Do!"
description "Neo Mr. Do!"
publisher "Visco"
rom ( name "neomrdo.neo" size 7606272 crc 6AB90D70 )
)
game (
name "Neo Turf Masters / Big Tournament Golf"
description "Neo Turf Masters / Big Tournament Golf"
publisher "Nazca"
rom ( name "turfmast.neo" size 19140608 crc F00C2138 )
)
game (
name "Neo-Geo Cup '98 - The Road to the Victory"
description "Neo-Geo Cup '98 - The Road to the Victory"
publisher "SNK"
rom ( name "neocup98.neo" size 25432064 crc 3896F2D9 )
)
game (
name "Nightmare in the Dark (bootleg)"
description "Nightmare in the Dark (bootleg)"
publisher "bootleg"
rom ( name "nitdbl.neo" size 13766656 crc ED62A567 )
)
game (
name "Nightmare in the Dark"
description "Nightmare in the Dark"
publisher "Eleven / Gavaking"
rom ( name "nitd.neo" size 22155264 crc 42CE8908 )
)
game (
name "Ninja Combat (NGH-009)"
description "Ninja Combat (NGH-009)"
publisher "Alpha Denshi Co."
rom ( name "ncombath.neo" size 6033408 crc 00A23C2A )
)
game (
name "Ninja Combat (NGM-009)"
description "Ninja Combat (NGM-009)"
publisher "Alpha Denshi Co."
rom ( name "ncombat.neo" size 6033408 crc 75D42338 )
)
game (
name "Ninja Commando"
description "Ninja Commando"
publisher "Alpha Denshi Co."
rom ( name "ncommand.neo" size 7081984 crc 817DB341 )
)
game (
name "Ninja Master's - Haoh-ninpo-cho"
description "Ninja Master's - Haoh-ninpo-cho"
publisher "ADK / SNK"
rom ( name "ninjamas.neo" size 43257856 crc 6C043356 )
)
game (
name "Over Top"
description "Over Top"
publisher "ADK"
rom ( name "overtop.neo" size 27529216 crc 935C39EA )
)
game (
name "Pae Wang Jeon Seol / Legend of a Warrior (Korean censored Samurai Shodown IV)"
description "Pae Wang Jeon Seol / Legend of a Warrior (Korean censored Samurai Shodown IV)"
publisher "SNK"
rom ( name "samsho4k.neo" size 49549312 crc 9642929C )
)
game (
name "Panic Bomber"
description "Panic Bomber"
publisher "Eighting / Hudson"
rom ( name "panicbom.neo" size 6033408 crc C7799F9D )
)
game (
name "Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219)"
description "Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219)"
publisher "Saurus"
rom ( name "pgoal.neo" size 19140608 crc 463FE2BC )
)
game (
name "Pochi and Nyaa (Ver 2.00)"
description "Pochi and Nyaa (Ver 2.00)"
publisher "Aiky / Taito"
rom ( name "pnyaaa.neo" size 22679552 crc AEA780C7 )
)
game (
name "Pochi and Nyaa (Ver 2.02)"
description "Pochi and Nyaa (Ver 2.02)"
publisher "Aiky / Taito"
rom ( name "pnyaa.neo" size 22679552 crc 9A371AE5 )
)
game (
name "Pop 'n Bounce / Gapporin"
description "Pop 'n Bounce / Gapporin"
publisher "Video System Co."
rom ( name "popbounc.neo" size 7606272 crc 30C2F23F )
)
game (
name "Power Spikes II (NGM-068)"
description "Power Spikes II (NGM-068)"
publisher "Video System Co."
rom ( name "pspikes2.neo" size 10752000 crc 7E6BB2EB )
)
game (
name "Prehistoric Isle 2"
description "Prehistoric Isle 2"
publisher "Yumekobo / Saurus"
rom ( name "preisle2.neo" size 62132224 crc 2734D1BE )
)
game (
name "Pulstar"
description "Pulstar"
publisher "Aicom"
rom ( name "pulstar.neo" size 41160704 crc 71D34714 )
)
game (
name "Puzzle Bobble _ Bust-A-Move (Neo-Geo) (bootleg) [Bootleg]"
description "Puzzle Bobble _ Bust-A-Move (Neo-Geo) (bootleg) [Bootleg]"
publisher "bootleg"
rom ( name "pbobblenb.neo" size 9703424 crc 54FA6513 )
)
game (
name "Puzzle Bobble _ Bust-A-Move (Neo-Geo) (NGM-083)"
description "Puzzle Bobble _ Bust-A-Move (Neo-Geo) (NGM-083)"
publisher "Taito"
rom ( name "pbobblen.neo" size 9703424 crc 71619B37 )
)
game (
name "Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo)"
description "Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo)"
publisher "Taito (SNK license)"
rom ( name "pbobbl2n.neo" size 20189184 crc 1710150C )
)
game (
name "Puzzle De Pon! R!"
description "Puzzle De Pon! R!"
publisher "Visco"
rom ( name "puzzldpr.neo" size 3411968 crc A7EA0A8A )
)
game (
name "Puzzle De Pon!"
description "Puzzle De Pon!"
publisher "Visco"
rom ( name "puzzledp.neo" size 3411968 crc 9610638A )
)
game (
name "Puzzled / Joy Joy Kid (NGM-021)(NGH-021)"
description "Puzzled / Joy Joy Kid (NGM-021)(NGH-021)"
publisher "SNK"
rom ( name "joyjoy.neo" size 3018752 crc 2C368D6A )
)
game (
name "Quiz Daisousa Sen - The Last Count Down (NGM-023)(NGH-023)"
description "Quiz Daisousa Sen - The Last Count Down (NGM-023)(NGH-023)"
publisher "SNK"
rom ( name "quizdais.neo" size 4460544 crc 483B8670 )
)
game (
name "Quiz King of Fighters (Korea)"
description "Quiz King of Fighters (Korea)"
publisher "Saurus / Viccom (SNK license)"
rom ( name "quizkofk.neo" size 15994880 crc F660F0D9 )
)
game (
name "Quiz King of Fighters (SAM-080)(SAH-080)"
description "Quiz King of Fighters (SAM-080)(SAH-080)"
publisher "Saurus (SNK license)"
rom ( name "quizkof.neo" size 15994880 crc 0603F66D )
)
game (
name "Quiz Meitantei Neo & Geo - Quiz Daisousa Sen part 2 (NGM-042)(NGH-042)"
description "Quiz Meitantei Neo & Geo - Quiz Daisousa Sen part 2 (NGM-042)(NGH-042)"
publisher "SNK"
rom ( name "quizdai2.neo" size 6557696 crc BD15B7A1 )
)
game (
name "Quiz Salibtamjeong - The Last Count Down (Korean localized Quiz Daisousa Sen)"
description "Quiz Salibtamjeong - The Last Count Down (Korean localized Quiz Daisousa Sen)"
publisher "SNK / Viccom"
rom ( name "quizdaisk.neo" size 5509120 crc D0C614A0 )
)
game (
name "Rage of the Dragons (NGM-264_)"
description "Rage of the Dragons (NGM-264_)"
publisher "Evoga / Playmore"
rom ( name "rotdh.neo" size 87298048 crc ECF6A9F7 )
)
game (
name "Rage of the Dragons (NGM-2640)"
description "Rage of the Dragons (NGM-2640)"
publisher "Evoga / Playmore"
rom ( name "rotd.neo" size 92540928 crc 29AE65FD )
)
game (
name "Ragnagard / Shin-Oh-Ken"
description "Ragnagard / Shin-Oh-Ken"
publisher "Saurus"
rom ( name "ragnagrd.neo" size 44306432 crc 8C08477B )
)
game (
name "Real Bout Fatal Fury / Real Bout Garou Densetsu (bug fix revision)"
description "Real Bout Fatal Fury / Real Bout Garou Densetsu (bug fix revision)"
publisher "SNK"
rom ( name "rbff1a.neo" size 45355008 crc EC8B37F0 )
)
game (
name "Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release)"
description "Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release)"
publisher "SNK"
rom ( name "rbff1k.neo" size 45355008 crc BF5B4349 )
)
game (
name "Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release, bug fix revision)"
description "Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release, bug fix revision)"
publisher "SNK"
rom ( name "rbff1ka.neo" size 45355008 crc 40EB7054 )
)
game (
name "Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095)(NGH-095)"
description "Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095)(NGH-095)"
publisher "SNK"
rom ( name "rbff1.neo" size 45355008 crc 9DE2BC23 )
)
game (
name "Real Bout Fatal Fury 2 - The Newcomers (Korean release)"
description "Real Bout Fatal Fury 2 - The Newcomers (Korean release)"
publisher "SNK"
rom ( name "rbff2k.neo" size 70651904 crc D23D0173 )
)
game (
name "Real Bout Fatal Fury 2 - The Newcomers _ Real Bout Garou Densetsu 2 - the newcomers (NGH-2400)"
description "Real Bout Fatal Fury 2 - The Newcomers _ Real Bout Garou Densetsu 2 - the newcomers (NGH-2400)"
publisher "SNK"
rom ( name "rbff2h.neo" size 70651904 crc FC3BE0DE )
)
game (
name "Real Bout Fatal Fury 2 - The Newcomers _ Real Bout Garou Densetsu 2 - the newcomers (NGM-2400)"
description "Real Bout Fatal Fury 2 - The Newcomers _ Real Bout Garou Densetsu 2 - the newcomers (NGM-2400)"
publisher "SNK"
rom ( name "rbff2.neo" size 70651904 crc 5BA5AA03 )
)
game (
name "Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special (Korean release)"
description "Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special (Korean release)"
publisher "SNK"
rom ( name "rbffspeck.neo" size 51646464 crc DA1E9521 )
)
game (
name "Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special"
description "Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special"
publisher "SNK"
rom ( name "rbffspec.neo" size 51646464 crc 60F8FCF8 )
)
game (
name "Riding Hero (NGM-006)(NGH-006)"
description "Riding Hero (NGM-006)(NGH-006)"
publisher "SNK"
rom ( name "ridhero.neo" size 6164480 crc 4221F383 )
)
game (
name "Riding Hero (set 2)"
description "Riding Hero (set 2)"
publisher "SNK"
rom ( name "ridheroh.neo" size 6164480 crc 17184BAF )
)
game (
name "Robo Army (NGM-032)(NGH-032)"
description "Robo Army (NGM-032)(NGH-032)"
publisher "SNK"
rom ( name "roboarmya.neo" size 6033408 crc 77923E2D )
)
game (
name "Robo Army (set 1)"
description "Robo Army (set 1)"
publisher "SNK"
rom ( name "roboarmy.neo" size 6033408 crc 23B6CAAF )
)
game (
name "Samurai Shodown / Samurai Spirits (NGH-045)"
description "Samurai Shodown / Samurai Spirits (NGH-045)"
publisher "SNK"
rom ( name "samshoh.neo" size 15470592 crc 20519852 )
)
game (
name "Samurai Shodown / Samurai Spirits (NGM-045)"
description "Samurai Shodown / Samurai Spirits (NGM-045)"
publisher "SNK"
rom ( name "samsho.neo" size 17043456 crc 12CC6BF3 )
)
game (
name "Samurai Shodown II _ Shin Samurai Spirits - Haohmaru jigokuhen (NGM-063)(NGH-063)"
description "Samurai Shodown II _ Shin Samurai Spirits - Haohmaru jigokuhen (NGM-063)(NGH-063)"
publisher "SNK"
rom ( name "samsho2.neo" size 26480640 crc 9208E903 )
)
game (
name "Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGH-087)"
description "Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGH-087)"
publisher "SNK"
rom ( name "samsho3h.neo" size 36966400 crc B738594D )
)
game (
name "Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087)"
description "Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087)"
publisher "SNK"
rom ( name "samsho3.neo" size 36966400 crc 2BF539CF )