-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathN64Compat.json
3972 lines (3972 loc) · 128 KB
/
N64Compat.json
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
{
"compatibility": [
{
"game_name": "007: The World is not Enough",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Game Runs OK but has no sound , to fix the weapons seeing glitch use useViewportZScale = 1 on the ini but still no sound.."
},
{
"game_name": "40 Winks (Proto)",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, system hangs, tried several base roms, tested varios settings in the config ini file, same result. Tested on Loadiine GX2"
},
{
"game_name": "40 Winks (Proto)",
"game_region": "EUR",
"base_name": "Bomberman 64 US",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, system hangs, tried several base roms, tested varios settings in the config ini file, same result. Tested on Loadiine GX2"
},
{
"game_name": "40 Winks (Proto)",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, system hangs, tried several base roms, tested varios settings in the config ini file, same result. Tested on Loadiine GX2"
},
{
"game_name": "64 de Hakken!! Tamagotchi Minna de Tamagotchi World",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Game boots and sounds okay but is missing some textures not tested further since jap only game."
},
{
"game_name": "64 Hanafuda - Tenshi no Yakusoku",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Game boots to black screen."
},
{
"game_name": "A Bug's Life",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "A Bug's Life",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "A Bug's Life (German)",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Must use PALadin V3.1 to patch rom with option /f to remove country check."
},
{
"game_name": "A Bug's Life (Italy)",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Must use PALadin V3.1 to patch rom with option /f to remove country check."
},
{
"game_name": "Aerofighters Assault",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 0,
"notes": "Black screen on boot."
},
{
"game_name": "Aerogauge",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 2,
"notes": "Tested on Loadiine Gx2"
},
{
"game_name": "Aerogauge",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Tested on Loadiine Gx2"
},
{
"game_name": "Aerogauge",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Freezes Wii U after finishing races or qualifying."
},
{
"game_name": "Aidyn Chronicles: The First Mage",
"game_region": "USA",
"base_name": "Mario Party 2",
"base_region": "USA",
"status": 2,
"notes": "Seems to work perfect with the ini provided."
},
{
"game_name": "Air Boarder 64",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots into black screen, system hangs, tested on Loadiine GX2."
},
{
"game_name": "Air Boarder 64",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots into black screen, system hangs, tested on Loadiine GX2."
},
{
"game_name": "Armorines Project Swarm",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 0,
"notes": "Black screen on boot."
},
{
"game_name": "Army Men: Air Combat",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 0,
"notes": "Freezes Wii U on boot."
},
{
"game_name": "Army Men: Sarge's Heroes",
"game_region": "USA",
"base_name": "Mario Party 2",
"base_region": "USA",
"status": 2,
"notes": "Can't change to hi rez graphics but thats about it."
},
{
"game_name": "Army Men: Sarge's Heroes 2",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 2,
"notes": "None"
},
{
"game_name": "Asteroids Hyper 64",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "B3313 (Super Mario 64 Internal Plexus)",
"game_region": "USA",
"base_name": "1080 Snowboarding",
"base_region": "USA",
"status": 0,
"notes": "After booting up the game and seeing the splashscreen, the Wii U crashes on a black screen."
},
{
"game_name": "B3313 (Super Mario 64 Internal Plexus)",
"game_region": "USA",
"base_name": "Super Mario 64",
"base_region": "USA",
"status": 0,
"notes": "After booting up the game and seeing the splashscreen, the Wii U crashes on a black screen after hearing the coin sound."
},
{
"game_name": "B3313 (Super Mario 64 Internal Plexus)",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Title screen fully functional, but the console crashes after pressing start and attempting to pick a save file."
},
{
"game_name": "Bakuretsu Muteki Bangaioh",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, tried various ini settings."
},
{
"game_name": "Bakuretsu Muteki Bangaioh",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, tried various ini settings."
},
{
"game_name": "Banjo to Kazooie no Daibouken",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Playable."
},
{
"game_name": "Banjo to Kazooie no Daibouken 2",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Will get you some video and sound, button press doesn't do anything, most likely requires complex ini config settings to get to work."
},
{
"game_name": "Banjo-Dreamie",
"game_region": "USA",
"base_name": "Mario Kart 64",
"base_region": "USA",
"status": 2,
"notes": "Uses same ini config as Banjo-Kazooie USA."
},
{
"game_name": "Banjo-Kazooie",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 2,
"notes": "Bottom Screen Part will get out a little bit and cutscenes have some lag. Updated ini file to include RENDER options to make the screen centered instead of being off centered to the left."
},
{
"game_name": "Banjo-Kazooie",
"game_region": "EUR",
"base_name": "Paper Mario",
"base_region": "EUR",
"status": 2,
"notes": "Some input lag, but works flawlessly. Updated ini file to include RENDER options to make the screen centered instead of being off centered to the left."
},
{
"game_name": "Banjo-Kazooie",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Linear-sampled audio"
},
{
"game_name": "Banjo-Kazooie",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Linear-sampled audio"
},
{
"game_name": "Banjo-Kazooie",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Use the following .ini file from here https://discord.com/channels/386898225161961493/461150523366834177/1003420207559221268 and change the Banjo-Kazooie rom's title ID to match the Japanese version. Everything will work perfectly!"
},
{
"game_name": "Banjo-Kazooie",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Another user mentioned needing to change the title ID of their rom to the Japanese version; mine didn't work unless I left the title ID unchanged."
},
{
"game_name": "Banjo-Kazooie - The Bear Waker",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Works fine."
},
{
"game_name": "Banjo-Kazooie - The Bear Waker",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Works fine."
},
{
"game_name": "Banjo-Tooie",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 1,
"notes": "Works with ini, some music and slowdown on certain areas, pal version works with less slowdowns. Added Notes: Same issue as the EUR version below."
},
{
"game_name": "Banjo-Tooie",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 1,
"notes": "Works with ini. Almost always full speed with very ocasional fps drops. To see the botton part of the subtitltes go to the settings screen and change screen scale, it will still be cut on the botton but you can read all the subtitles. Added Notes: There has been reports from a few people that this game crashes at the same spot in the game on level 5 and also random in game crashes, click https://discord.com/channels/386898225161961493/1308040315063635988/1308040575957729301 to read more info."
},
{
"game_name": "Banjo-Tooie",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Black screen."
},
{
"game_name": "Bass Hunter 64",
"game_region": "USA",
"base_name": "Paper Mario",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Batman Beyond - Return of the Joker",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "BattleTanx",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Freezes Wii U on boot with and without an ini."
},
{
"game_name": "BattleTanx Global Assault",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Black screen on boot."
},
{
"game_name": "Beetle Adventures Racing",
"game_region": "USA",
"base_name": "Mario Party 2",
"base_region": "USA",
"status": 2,
"notes": "Minor graphical glitch in Menus, Mount mayen track goes black when you press the Break(B) button but returns picture right after you let go of the button."
},
{
"game_name": "Beetle Adventures Racing",
"game_region": "USA",
"base_name": "Super Mario 64",
"base_region": "USA",
"status": 1,
"notes": "Root menu renders black; car colors hard to differentiate; minor graphical issues in menus and race; control stick not responding properly (might need ini fixes)"
},
{
"game_name": "Big Mountain 2000",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, system crashes, tried various bases and config ini settings, same result."
},
{
"game_name": "Biohazard 2",
"game_region": "JPN",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "FMV cutscenes show up in a strange way. Don't shoot too often or it will crash. If you go back to the game (Suspended point unavoidable), you will get very slow framerate. Only works fine if started for the first time."
},
{
"game_name": "Blast Corps",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Not even with jap header."
},
{
"game_name": "Blast Dozer",
"game_region": "JPN",
"base_name": "Mario Golf Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Tested on loadiine v4."
},
{
"game_name": "Blast Dozer",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "Tested on loadiine v4."
},
{
"game_name": "Body Harvest",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 1,
"notes": "Game works fine but a 2 FPS at best."
},
{
"game_name": "Bomberman 64",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "None"
},
{
"game_name": "Bomberman 64",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Bomberman 64",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 1,
"notes": "Minor graphical issues but nothing unplayable so far."
},
{
"game_name": "Bomberman Hero",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Provided ini provides minor render improvements, less artifacts around 2D sprites."
},
{
"game_name": "Bomberman: The Second attack",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Bomberman: The Second attack",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Brunswick Circuit Pro Bowling",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, system crashes, tried various bases and config ini settings, same result."
},
{
"game_name": "Buck Bumble",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Loadiine v4 tested."
},
{
"game_name": "Bust-a-Move 2 - Arcade Edition",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Opening cutscene is slow, the rest is fine and plays perfectly"
},
{
"game_name": "Bust-a-Move 3 DX",
"game_region": "EUR",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 1,
"notes": "Game works fine however the resolution is missing on the bottom of the screen, probably due to the EUR/PAL resolution is different for this game, basically this game is the same as Bust-A-Move 99 USA"
},
{
"game_name": "Bust-a-Move 3 DX",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Game works fine however the resolution is missing on the bottom of the screen, probably due to the EUR/PAL resolution is different for this game, basically this game is the same as Bust-A-Move 99 USA"
},
{
"game_name": "Bust-a-Move 3 DX",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Game works fine however the resolution is missing on the bottom of the screen, probably due to the EUR/PAL resolution is different for this game, basically this game is the same as Bust-A-Move 99 USA"
},
{
"game_name": "Bust-a-Move 99",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "California Speed",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, but can exit game, tried various ini settings, same result, tested on Loadiine GX2."
},
{
"game_name": "California Speed",
"game_region": "USA",
"base_name": " Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, but can exit game, tried various ini settings, same result, tested on Loadiine GX2."
},
{
"game_name": "Carmageddon 64",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Freezes after start race."
},
{
"game_name": "Castlevania",
"game_region": "USA",
"base_name": "The Legend of Zelda: Majora's Mask",
"base_region": "USA",
"status": 2,
"notes": "Edit the header name and id with an hex editor to match castlevania 2, seems to play perfectly."
},
{
"game_name": "Castlevania Legacy of Darkness",
"game_region": "USA",
"base_name": "The Legend of Zelda: Majora's Mask",
"base_region": "USA",
"status": 2,
"notes": "It almost runs perfectly but the blur effect is glitched in some cutscenes and when you access the shop. The floor in Tower of Ruins also has missing textures in a few spots."
},
{
"game_name": "Castlevania Legacy of Darkness",
"game_region": "USA",
"base_name": "Excitebike 64",
"base_region": "USA",
"status": 2,
"notes": "It almost runs perfectly but the blur effect is glitched in some cutscenes and when you access the shop. The floor in Tower of Ruins also has missing textures in a few spots."
},
{
"game_name": "Chameleon Twist",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 2,
"notes": "None"
},
{
"game_name": "Chameleon Twist (English Translation)",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Use ini settings with this translation patch from http://www.romhacking.net/translations/2767/, game boots fine."
},
{
"game_name": "Chameleon Twist 2",
"game_region": "EUR",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 0,
"notes": "Shows severe graphical glitches and then crashes wiiu before main menu."
},
{
"game_name": "Charlie Blast's Territory",
"game_region": "JAP",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Chopper Attack",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Tested on Loadiine GX2"
},
{
"game_name": "Choro Q 64 II - Hacha Mecha Grand Prix Race",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "English translation patch also works."
},
{
"game_name": "Chou Snobow Kids",
"game_region": "JPN",
"base_name": "Paper Mario",
"base_region": "USA",
"status": 2,
"notes": "Also works on EUR region console."
},
{
"game_name": "Clayfighter 63 1/3",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "It shows Nintendo logo at 1 FPS, then freezes Wii U after a few seconds."
},
{
"game_name": "Clayfighter 63 1/3 - Sculptor's Cut",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Freezes Wii U."
},
{
"game_name": "Command & Conquer",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Graphic glitches on boot logo and in game menu, heavy graphic glitches when game starts, then crashes system, tested on Loadiine GX2"
},
{
"game_name": "Command & Conquer",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Graphic glitches on boot logo and in game menu, heavy graphic glitches when game starts, then crashes system, tested on Loadiine GX2"
},
{
"game_name": "Conker's Bad Fur Day",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Black screen on boot"
},
{
"game_name": "Conker's Bad Fur Day",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Black screen on boot"
},
{
"game_name": "Conker's Bad Fur Day",
"game_region": "USA",
"base_name": "Paper Mario",
"base_region": "USA",
"status": 0,
"notes": "None"
},
{
"game_name": "Conker's Bad Fur Day",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Sound, but no picture."
},
{
"game_name": "Cruis'n Exotica",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots up, but completely unplayable due to graphical glitches"
},
{
"game_name": "Cruis'n Exotica",
"game_region": "USA",
"base_name": "Paper Mario",
"base_region": "USA",
"status": 0,
"notes": "Boots up, but completely unplayable due to graphical glitches"
},
{
"game_name": "Cruis'n USA",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, able to exit back to main menu, tried different base roms and ini settings, still don't work, tested on Loadiine GX2"
},
{
"game_name": "Cruis'n USA",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, able to exit back to main menu, tried different base roms and ini settings, still don't work, tested on Loadiine GX2"
},
{
"game_name": "Cruis'n World",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, able to exit back to main menu, tried different base roms and ini settings, still don't work, tested on Loadiine GX2"
},
{
"game_name": "Custom Robo",
"game_region": "JPN",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Custom Robo V2",
"game_region": "JPN",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Dance Dance Revolution - Disney Dancing Museum",
"game_region": "JPN",
"base_name": "The Legend of Zelda: Majora's Mask",
"base_region": "USA",
"status": 2,
"notes": "Perfect."
},
{
"game_name": "Dark Rift",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Black screen, you can go back to Home Menu."
},
{
"game_name": "Deadly Arts",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "You can hear Konami logo and sound, but no image, only black screen, you can exit to Wii U Menu though."
},
{
"game_name": "Densha De Go 64 (English Translation)",
"game_region": "JPN",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Freezes Wii U on boot."
},
{
"game_name": "Destruction Derby 64",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 1,
"notes": "Use provided ini cfg settings, Missing gfx in game mode menu only, no car model in car select screen, stuttering audio, semi playable."
},
{
"game_name": "Diddy Kong Racing",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 1,
"notes": "Use the config ini provided, game will boot, missing and messed up graphics, sound works but stutters, somewhat playable but unplayable."
},
{
"game_name": "Diddy Kong Racing",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Freezes Wii U on boot."
},
{
"game_name": "Disney's Tarzan",
"game_region": "USA",
"base_name": "Paper Mario",
"base_region": "USA",
"status": 0,
"notes": "Nothing loads."
},
{
"game_name": "Donald Duck: Quack Attack",
"game_region": "EUR",
"base_name": "The Legend of Zelda: Ocarina of Time",
"base_region": "USA",
"status": 0,
"notes": "Loads black screen. VC Menu and HOME Menu can still be triggered however."
},
{
"game_name": "Donkey Kong 64",
"game_region": "USA",
"base_name": "Super Mario 64",
"base_region": "JPN",
"status": 2,
"notes": "None"
},
{
"game_name": "Donkey Kong 64 (Demo)(Kiosk)",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, tried various bases and config ini settings."
},
{
"game_name": "Donkey Kong 64 (Demo)(Kiosk)",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen, tried various bases and config ini settings."
},
{
"game_name": "DOOM 64",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Game doesn't work on EUR region console, use EUR version instead."
},
{
"game_name": "DOOM 64",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "Works perfectly, censored version with green blood."
},
{
"game_name": "Doraemon",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Doraemon 2",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen."
},
{
"game_name": "Doraemon 3",
"game_region": "JPN",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "Boots to black screen."
},
{
"game_name": "Doubutsu no Mori",
"game_region": "JPN",
"base_name": "Donkey Kong 64",
"base_region": "EUR",
"status": 1,
"notes": "Dialog boxes and NPC names do not appear, otherwise it's playable. Black screen on entering character name if injected into SM64."
},
{
"game_name": "Doubutsu no Mori",
"game_region": "JPN",
"base_name": "Super Mario 64",
"base_region": "EUR",
"status": 1,
"notes": "Dialog boxes and NPC names do not appear, otherwise it's playable. Black screen on entering character name if injected into SM64."
},
{
"game_name": "Dr. Mario 64",
"game_region": "USA",
"base_name": "1080 Snowboarding",
"base_region": "USA",
"status": 0,
"notes": "Sound and graphics largely work, but mega vitamins do not display while in motion, rendering the game essentially unplayable."
},
{
"game_name": "Dual Heroes",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 0,
"notes": "After Hudson logo, white screen and system freezes, tried various ini settings, all same results."
},
{
"game_name": "Dual Heroes",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "After Hudson logo, white screen and system freezes, tried various ini settings, all same results."
},
{
"game_name": "Dual Heroes",
"game_region": "USA",
"base_name": "Super Mario 64",
"base_region": "USA",
"status": 0,
"notes": "After Hudson logo, white screen and system freezes, tried various ini settings, all same results."
},
{
"game_name": "Duck Dodgers Starring Daffy Duck",
"game_region": "USA",
"base_name": "Mario Party 2",
"base_region": "USA",
"status": 2,
"notes": "When you dive deep in the water the screen goes all blue and you cant see anything."
},
{
"game_name": "Duke Nuken 64",
"game_region": "USA",
"base_name": "F-Zero X",
"base_region": "USA",
"status": 2,
"notes": "None"
},
{
"game_name": "Duke Nuken 64",
"game_region": "USA",
"base_name": "Super Mario 64",
"base_region": "USA",
"status": 0,
"notes": "broken hud/weapons + hard crash on level start"
},
{
"game_name": "Duke Nuken Zero Hour",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 1,
"notes": "Game boots fine but freezes wiiu when starting levels."
},
{
"game_name": "Earthworm Jim 3D",
"game_region": "USA",
"base_name": "Donkey Kong 64",
"base_region": "USA",
"status": 0,
"notes": "Freezes Wii U on boot."
},
{
"game_name": "Excitebike 64",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,
"notes": "Even with jap header Wii U freezes when starting races."
},
{
"game_name": "Excitebike 64",
"game_region": "JPN",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 2,
"notes": "Loadiine v4 tested."
},
{
"game_name": "Extreme G",
"game_region": "USA",
"base_name": "Mario Golf",
"base_region": "USA",
"status": 0,