-
Notifications
You must be signed in to change notification settings - Fork 792
/
Nintendo - Nintendo 64.dat
7101 lines (6213 loc) · 88.4 KB
/
Nintendo - Nintendo 64.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 "Nintendo - Nintendo 64"
description "Nintendo - Nintendo 64"
)
game (
comment "007 - GoldenEye (Japan)"
serial "NUS-NGEJ-JPN"
rom (
crc C26FED78
)
)
game (
comment "007 - The World Is Not Enough (Europe) (En,Fr,De)"
serial "NUS-N07P-EUR"
rom (
crc 7F030D3A
)
)
game (
comment "007 - The World Is Not Enough (USA)"
serial "NUS-N07E-USA"
rom (
crc 34F0EE5B
)
)
game (
comment "1080 TenEighty Snowboarding (Europe) (En,Ja,Fr,De)"
serial "NUS-NTEP-EUR"
rom (
crc B0256101
)
)
game (
comment "64 Hanafuda - Tenshi no Yakusoku (Japan)"
serial "NUS-NHFJ-JPN"
rom (
crc 2B43006C
)
)
game (
comment "64 Oozumou (Japan)"
serial "NUS-NOSJ-JPN"
rom (
crc A6DBF8AE
)
)
game (
comment "64 Oozumou 2 (Japan)"
serial "NUS-NO2J-JPN"
rom (
crc 3CD5E271
)
)
game (
comment "64 Trump Collection - Alice no Wakuwaku Trump World (Japan)"
serial "NUS-NTCJ-JPN"
rom (
crc 34BBB95D
)
)
game (
comment "64 de Hakken!! Tamagotchi - Minna de Tamagotchi World (Japan)"
serial "NUS-NTWJ-JPN"
rom (
crc C6400938
)
)
game (
comment "AI Shougi 3 (Japan)"
serial "NUS-NS3J-JPN"
rom (
crc 43022243
)
)
game (
comment "AeroFighters Assault (Europe) (En,Fr,De)"
serial "NUS-NSAP-EUR"
rom (
crc E493E46C
)
)
game (
comment "AeroFighters Assault (USA)"
serial "NUS-NERE-USA"
rom (
crc B08EF0B9
)
)
game (
comment "AeroGauge (Europe) (En,Fr,De)"
serial "NUS-NAGP-EUR"
rom (
crc D8CA6C8E
)
)
game (
comment "AeroGauge (Japan) (Rev A)"
serial "NUS-NAGJ-JPN"
rom (
crc 1A5F6C19
)
)
game (
comment "AeroGauge (USA)"
serial "NUS-NAGE-USA"
rom (
crc 04038CB8
)
)
game (
comment "Aidyn Chronicles - The First Mage (Europe)"
serial "NUS-NAYP-EUR"
rom (
crc 9DC07FC0
)
)
game (
comment "Aidyn Chronicles - The First Mage (USA)"
serial "NUS-NAYE-USA"
rom (
crc 8DA62304
)
)
game (
comment "Aidyn Chronicles - The First Mage (USA) (Rev A)"
serial "NUS-NAYE-USA"
rom (
crc 276178DF
)
)
game (
comment "Air Boarder 64 (Europe)"
serial "NUS-NABP-EUR"
rom (
crc 92659837
)
)
game (
comment "Air Boarder 64 (Japan)"
serial "NUS-NABJ-JPN"
rom (
crc 79F2DF14
)
)
game (
comment "Akumajou Dracula Mokushiroku - Real Action Adventure (Japan)"
serial "NUS-ND3J-JPN"
rom (
crc CA79D5A0
)
)
game (
comment "Akumajou Dracula Mokushiroku Gaiden - Legend of Cornell (Japan)"
serial "NUS-ND4J-JPN"
rom (
crc 420CE37B
)
)
game (
comment "All Star Tennis '99 (Europe) (En,Fr,De,Es,It)"
serial "NUS-NTNP-EUR"
rom (
crc E718347D
)
)
game (
comment "All Star Tennis 99 (USA)"
serial "NUS-NTNE-USA"
rom (
crc 7326E6C9
)
)
game (
comment "All-Star Baseball 2000 (Europe)"
serial "NUS-NBEP-EUR"
rom (
crc 15F18CAE
)
)
game (
comment "All-Star Baseball 2000 (USA)"
serial "NUS-NBEE-USA"
rom (
crc 15063EAC
)
)
game (
comment "All-Star Baseball 2001 (USA)"
serial "NUS-NASE-USA"
rom (
crc 3E8BE0E0
)
)
game (
comment "All-Star Baseball 99 (Europe)"
serial "NUS-NBSP-EUR"
rom (
crc CECD29A6
)
)
game (
comment "All-Star Baseball 99 (USA)"
serial "NUS-NBSE-USA"
rom (
crc 82B7E47D
)
)
game (
comment "Armorines - Project S.W.A.R.M. (Europe)"
serial "NUS-NARP-EUR"
rom (
crc 33332C57
)
)
game (
comment "Armorines - Project S.W.A.R.M. (Germany)"
serial "NUS-NARP-EUR"
rom (
crc 43A6829D
)
)
game (
comment "Armorines - Project S.W.A.R.M. (USA)"
serial "NUS-NARE-USA"
rom (
crc 950985F6
)
)
game (
comment "Army Men - Air Combat (USA)"
serial "NUS-NACE-USA"
rom (
crc 2355E4F3
)
)
game (
comment "Army Men - Sarge's Heroes (Europe) (En,Fr,De)"
serial "NUS-NAMP-EUR"
rom (
crc B2B54CC1
)
)
game (
comment "Army Men - Sarge's Heroes (USA)"
serial "NUS-NAME-USA"
rom (
crc 97BF6DB2
)
)
game (
comment "Army Men - Sarge's Heroes 2 (USA)"
serial "NUS-N32E-USA"
rom (
crc 3E9D1C51
)
)
game (
comment "Asteroids Hyper 64 (USA)"
serial "NUS-NAHE-USA"
rom (
crc FB982B44
)
)
game (
comment "Automobili Lamborghini (Europe)"
serial "NUS-NLCP-EUR"
rom (
crc 210F594E
)
)
game (
comment "Automobili Lamborghini (USA)"
serial "NUS-NLCE-USA"
rom (
crc 17932C62
)
)
game (
comment "Baku Bomber Man (Japan)"
serial "NUS-NHAJ-JPN"
rom (
crc B9FAA3E4
)
)
game (
comment "Baku Bomber Man 2 (Japan)"
serial "NUS-NBVJ-JPN"
rom (
crc 850675CC
)
)
game (
comment "Bakuretsu Muteki Bangaioh (Japan)"
serial "NUS-NBNJ-JPN"
rom (
crc 2A8CE2E1
)
)
game (
comment "Bakushou Jinsei 64 - Mezase! Resort Ou (Japan)"
serial "NUS-NBJJ-JPN"
rom (
crc 5FD42464
)
)
game (
comment "Banjo to Kazooie no Daibouken (Japan)"
serial "NUS-NBKJ-JPN"
rom (
crc 11AD432C
)
)
game (
comment "Banjo to Kazooie no Daibouken 2 (Japan)"
serial "NUS-NB7J-JPN"
rom (
crc 8A3D8792
)
)
game (
comment "Banjo-Kazooie (Europe) (En,Fr,De)"
serial "NUS-NBKP-EUR"
rom (
crc 4AF7C16B
)
)
game (
comment "Banjo-Kazooie (USA)"
serial "NUS-NBKE-USA"
rom (
crc 4FD43199
)
)
game (
comment "Banjo-Kazooie (USA) (Rev A)"
serial "NUS-NBKE-USA"
rom (
crc 90B38651
)
)
game (
comment "Banjo-Tooie (Australia)"
serial "NUS-NB7U-AUS"
rom (
crc 38EC4A6E
)
)
game (
comment "Banjo-Tooie (Europe) (En,Fr,De,Es)"
serial "NUS-NB7P-EUR"
rom (
crc 5EE620FB
)
)
game (
comment "Banjo-Tooie (USA)"
serial "NUS-NB7E-USA"
rom (
crc 0E0DC5A5
)
)
game (
comment "Bass Rush - ECOGEAR PowerWorm Championship (Japan)"
serial "NUS-NVBJ-JPN"
rom (
crc 0E388FAE
)
)
game (
comment "Bassmasters 2000 (USA)"
serial "NUS-NB4E-USA"
rom (
crc 8B7BD07E
)
)
game (
comment "Batman Beyond - Return of the Joker (USA)"
serial "NUS-NJQE-USA"
rom (
crc D64E0A7B
)
)
game (
comment "Batman of the Future - Return of the Joker (Europe) (En,Fr,De)"
serial "NUS-NJQP-EUR"
rom (
crc 86AA921C
)
)
game (
comment "BattleTanx (USA)"
serial "NUS-NBXE-USA"
rom (
crc 66123C8B
)
)
game (
comment "BattleTanx - Global Assault (Europe) (En,Fr,De)"
serial "NUS-NBQP-UKV"
rom (
crc EC02C5AD
)
)
game (
comment "BattleTanx - Global Assault (USA)"
serial "NUS-NBQE-USA"
rom (
crc 5819D423
)
)
game (
comment "Battlezone - Rise of the Black Dogs (USA)"
serial "NUS-NZOE-USA"
rom (
crc 18CCCCFD
)
)
game (
comment "Beetle Adventure Racing! (Europe) (En,Fr,De)"
serial "NUS-NNSP-EUR"
rom (
crc E6F43F48
)
)
game (
comment "Beetle Adventure Racing! (Japan)"
serial "NUS-NB8J-JPN"
rom (
crc 4246ACD8
)
)
game (
comment "Beetle Adventure Racing! (USA) (En,Fr,De)"
serial "NUS-NNSE-USA"
rom (
crc E3517FD8
)
)
game (
comment "Big Mountain 2000 (USA)"
serial "NUS-NMUE-USA"
rom (
crc FF44020C
)
)
game (
comment "Bio F.R.E.A.K.S. (Europe)"
serial "NUS-NBFP-EUR"
rom (
crc 3EC67AD8
)
)
game (
comment "Bio F.R.E.A.K.S. (USA)"
serial "NUS-NBFE-USA"
rom (
crc 52283865
)
)
game (
comment "Biohazard 2 (Japan)"
serial "NUS-NB5J-JPN"
rom (
crc 31A3B913
)
)
game (
comment "Blast Corps (Europe) (En,De)"
serial "NUS-NBCP-EUR"
rom (
crc 2FF810CF
)
)
game (
comment "Blast Corps (USA)"
serial "NUS-NBCE-USA"
rom (
crc 22CA221D
)
)
game (
comment "Blast Corps (USA) (Rev A)"
serial "NUS-NBCE-USA"
rom (
crc 23D415F8
)
)
game (
comment "Blastdozer (Japan)"
serial "NUS-NBCJ-JPN"
rom (
crc 4605759E
)
)
game (
comment "Blues Brothers 2000 (Europe) (En,Fr,De,Es,It,Nl)"
serial "NUS-NBPP-EUR"
rom (
crc 56507793
)
)
game (
comment "Blues Brothers 2000 (USA)"
serial "NUS-NBPE-USA"
rom (
crc 109907B5
)
)
game (
comment "Body Harvest (Europe) (En,Fr,De)"
serial "NUS-NBHP-EUR"
rom (
crc 2761BDAE
)
)
game (
comment "Body Harvest (USA)"
serial "NUS-NBHE-USA"
rom (
crc 7B878C56
)
)
game (
comment "Bokujou Monogatari 2 (Japan)"
serial "NUS-NYWJ-JPN"
rom (
crc 0837B349
)
)
game (
comment "Bokujou Monogatari 2 (Japan) (Rev A)"
serial "NUS-NYWJ-JPN"
rom (
crc BCFC0724
)
)
game (
comment "Bokujou Monogatari 2 (Japan) (Rev B)"
serial "NUS-NYWJ-JPN"
rom (
crc 36A97D01
)
)
game (
comment "Bomber Man 64 (Japan)"
serial "NUS-NHAJ-JPN"
rom (
crc 7C532342
)
)
game (
comment "Bomber Man Hero - Mirian Oujo o Sukue! (Japan)"
serial "NUS-NBDJ-JPN"
rom (
crc F3A50116
)
)
game (
comment "Bomberman 64 - The Second Attack! (USA)"
serial "NUS-NBVE-USA"
rom (
crc 302B3135
)
)
game (
comment "Bomberman Hero (Europe)"
serial "NUS-NBDP-EUR"
rom (
crc 28DAD01B
)
)
game (
comment "Bomberman Hero (USA)"
serial "NUS-NBDE-USA"
rom (
crc 3E73AF1A
)
)
game (
comment "Bottom of the 9th (USA)"
serial "NUS-NBOE-USA"
rom (
crc 0F016E17
)
)
game (
comment "Brunswick Circuit Pro Bowling (USA)"
serial "NUS-NOWE-USA"
rom (
crc 3AC1BBAE
)
)
game (
comment "Buck Bumble (Europe) (En,Fr,De,Es,It)"
serial "NUS-NBLP-EUR"
rom (
crc 08433E0D
)
)
game (
comment "Buck Bumble (Japan)"
serial "NUS-NBLJ-JPN"
rom (
crc 24D1A591
)
)
game (
comment "Buck Bumble (USA)"
serial "NUS-NBLE-USA"
rom (
crc DA2ACD5E
)
)
game (
comment "Bug's Life, A (Europe)"
serial "NUS-NBYP-EUR"
rom (
crc 0D101756
)
)
game (
comment "Bug's Life, A (France)"
serial "NUS-NBYP-EUR"
rom (
crc 2420C6FD
)
)
game (
comment "Bug's Life, A (Germany)"
serial "NUS-NBYP-EUR"
rom (
crc DE6CE3EF
)
)
game (
comment "Bug's Life, A (Italy)"
serial "NUS-NBYP-EUR"
rom (
crc 04244AAC
)
)
game (
comment "Bug's Life, A (USA)"
serial "NUS-NBYE-USA"
rom (
crc 7C2F610D
)
)
game (
comment "Bust-A-Move '99 (USA)"
serial "NUS-NB3E-USA"
rom (
crc 2A95290F
)
)
game (
comment "Bust-A-Move 2 - Arcade Edition (Europe)"
serial "NUS-NBUP-EUR"
rom (
crc 14F2CBE9
)
)
game (
comment "Bust-A-Move 2 - Arcade Edition (USA)"
serial "NUS-NBUE-USA"
rom (
crc 47511877
)
)
game (
comment "Bust-A-Move 3 DX (Europe)"
serial "NUS-NB3P-EUR"
rom (
crc 9F3F484B
)
)
game (
comment "California Speed (USA)"
serial "NUS-NCLE-USA"
rom (
crc 387B0C4C
)
)
game (
comment "Carmageddon 64 (Europe) (En,Fr,De,Es)"
serial "NUS-NCDP-EUR"
rom (
crc D8D87DCA
)
)
game (
comment "Carmageddon 64 (Europe) (En,Fr,Es,It)"
serial "NUS-NCDP-EUR"
rom (
crc 17B07602
)
)
game (
comment "Carmageddon 64 (USA)"
serial "NUS-NCDE-USA"
rom (
crc E78DEBB6
)
)
game (
comment "Castlevania (Europe) (En,Fr,De)"
serial "NUS-ND3P-EUR"
rom (
crc D1D4D306
)
)
game (
comment "Castlevania (USA)"
serial "NUS-ND3E-USA"
rom (
crc 84E815F3
)
)
game (
comment "Castlevania (USA) (Rev A)"
serial "NUS-ND3E-USA"
rom (
crc BF911B10
)
)
game (
comment "Castlevania (USA) (Rev B)"
serial "NUS-ND3E-USA"
rom (
crc 7F50E637
)
)
game (
comment "Castlevania - Legacy of Darkness (Europe) (En,Fr,De)"
serial "NUS-ND4P-EUR"
rom (
crc A12BF3DE
)
)
game (
comment "Castlevania - Legacy of Darkness (USA)"
serial "NUS-ND4E-USA"
rom (
crc 1F147376
)
)
game (
comment "Centre Court Tennis (Europe)"
serial "NUS-NTSP-EUR"
rom (
crc 2573171A
)
)
game (
comment "Chameleon Twist (Europe)"
serial "NUS-NCTP-EUR"
rom (
crc 2AF50883
)
)
game (
comment "Chameleon Twist (Japan)"
serial "NUS-NCTJ-JPN"
rom (
crc A2DCF689
)
)
game (
comment "Chameleon Twist (USA)"
serial "NUS-NCTE-USA"
rom (
crc 4246EE14
)
)
game (
comment "Chameleon Twist (USA) (Rev A)"
serial "NUS-NCTE-USA"
rom (
crc C0345565
)
)
game (
comment "Chameleon Twist 2 (Europe)"
serial "NUS-N2VP-EUR"
rom (
crc 35958F55
)
)
game (
comment "Chameleon Twist 2 (Japan)"
serial "NUS-NV2J-JPN"
rom (
crc F42BB75F
)
)
game (
comment "Chameleon Twist 2 (USA)"
serial "NUS-N2VE-USA"
rom (
crc 356736C7
)
)
game (
comment "Charlie Blast's Territory (Europe)"
serial "NUS-NCBP-EUR"
rom (
crc 831C5A55
)
)
game (
comment "Charlie Blast's Territory (USA)"
serial "NUS-NCBE-USA"
rom (
crc 928A2968
)
)
game (
comment "Chopper Attack (Europe)"
serial "NUS-NCHP-EUR"
rom (
crc 30CA7DBE
)
)
game (
comment "Chopper Attack (USA)"
serial "NUS-NCHE-USA"
rom (
crc 2C22147D
)
)
game (
comment "Choro Q 64 (Japan)"
serial "NUS-NCRJ-JPN"
rom (
crc C5722B49
)
)
game (
comment "Choro Q 64 II - Hacha Mecha Grand Prix Race (Japan)"
serial "NUS-NCGJ-JPN"
rom (
crc 42AE9174
)
)
game (
comment "Chou Kuukan Nighter Pro Yakyuu King (Japan)"
serial "NUS-NPKJ-JPN"
rom (
crc C73E336C
)
)
game (
comment "Chou Kuukan Nighter Pro Yakyuu King 2 (Japan)"
serial "NUS-NP2J-JPN"
rom (
crc C0FC82C0
)
)
game (
comment "Chou Snobo Kids (Japan)"
serial "NUS-NK2J-JPN"
rom (
crc AB53586B
)
)
game (
comment "City-Tour GP - Zen-Nihon GT Senshuken (Japan)"
serial "NUS-NGTJ-JPN"
rom (
crc 7A59354B
)
)
game (
comment "Clay Fighter - Sculptor's Cut (USA)"
serial "NUS-NC2E-USA"