-
Notifications
You must be signed in to change notification settings - Fork 792
/
Nintendo - Game Boy Color.dat
8757 lines (7662 loc) · 119 KB
/
Nintendo - Game Boy Color.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 - Game Boy Color"
description "Nintendo - Game Boy Color"
)
game (
comment "10-Pin Bowling (Europe)"
serial "CGB-AXPP-EUR"
rom (
crc 5449CAC0
)
)
game (
comment "10-Pin Bowling (USA) (Rumble Version)"
serial "CGB-VP9E-USA"
rom (
crc 720C7023
)
)
game (
comment "102 Dalmatas - Cachorros Al Rescate (Spain)"
serial "CGB-B99P-EUR"
rom (
crc F2128908
)
)
game (
comment "102 Dalmatiens a la Rescousse, Les (France)"
serial "CGB-B99P-EUR"
rom (
crc E84191A8
)
)
game (
comment "102 Dalmatiner (Germany)"
serial "CGB-B99P-EUR"
rom (
crc 725A3483
)
)
game (
comment "3-D Ultra Pinball - Thrillride (USA) (Rumble Version)"
serial "CGB-VUPE-USA"
rom (
crc 1766E558
)
)
game (
comment "4x4 World Trophy (Europe) (En,Fr,De,Es,It)"
serial "DMG-AQ3P"
rom (
crc F62AD75E
)
)
game (
comment "Adventures of Elmo in Grouchland, The (Europe)"
serial "DMG-AELP-EUR"
rom (
crc 41228EE7
)
)
game (
comment "Adventures of Elmo in Grouchland, The (USA)"
serial "DMG-AELE-USA"
rom (
crc 2C4C2A5F
)
)
game (
comment "Adventures of the Smurfs, The (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BSFP-UKV-1"
rom (
crc D0D3DFED
)
)
game (
comment "AirForce Delta (Japan)"
serial "CGB-BDLJ-JPN"
rom (
crc 5DFFF5E2
)
)
game (
comment "AirForce Delta (USA)"
serial "CGB-BDLE-USA"
rom (
crc FF31CC92
)
)
game (
comment "Aladdin (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BADP-EUR"
rom (
crc 446573CD
)
)
game (
comment "Aladdin (USA)"
serial "CGB-BADE-USA"
rom (
crc A91EC059
)
)
game (
comment "Alfred's Adventure (Europe) (En,Fr,De,Es,It)"
serial "CGB-BAAP-EUR"
rom (
crc 6F9EF15E
)
)
game (
comment "Alice in Wonderland (Europe) (En,Fr,De,Es)"
serial "CGB-AIWP-EUR"
rom (
crc 85545D81
)
)
game (
comment "Alice in Wonderland (USA)"
serial "CGB-AIWE-USA"
rom (
crc 3199F65F
)
)
game (
comment "All Star Tennis 2000 (Europe)"
serial "DMG-AZTP-EUR"
rom (
crc 952B94E5
)
)
game (
comment "All-Star Baseball 2001 (USA)"
serial "CGB-BASE-USA"
rom (
crc BC562466
)
)
game (
comment "Alone in the Dark - The New Nightmare (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BIDP-EUR"
rom (
crc 7FF2042F
)
)
game (
comment "Alone in the Dark - The New Nightmare (USA) (En,Fr,Es)"
serial "CGB-BIDE-USA"
rom (
crc C145C036
)
)
game (
comment "Animal Breeder 3 (Japan) (SGB Enhanced)"
serial "DMG-AA3J-JPN"
rom (
crc C62A4C30
)
)
game (
comment "Animal Breeder 4 (Japan)"
serial "CGB-A4AJ-JPN"
rom (
crc 83D838C3
)
)
game (
comment "Animastar GB (Japan)"
serial "CGB-BNMJ-JPN"
rom (
crc B14920F0
)
)
game (
comment "Animorphs (Europe) (En,Fr,De,Es,It)"
serial "CGB-BAMP-EUR"
rom (
crc 7FD46DA1
)
)
game (
comment "Animorphs (USA)"
serial "CGB-BAME-USA"
rom (
crc B4F293CC
)
)
game (
comment "Anpfiff - Der RTL Fussball-Manager (Germany)"
serial "CGB-BFB"
rom (
crc B54D264A
)
)
game (
comment "Antz (Europe) (En,Fr,De,Es,It,Nl)"
serial "DMG-ANXP"
rom (
crc 4839E0C1
)
)
game (
comment "Antz (USA) (En,Fr,Es)"
serial "DMG-ANXE-USA"
rom (
crc DC0BE439
)
)
game (
comment "Antz Racing (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BAZP-EUR"
rom (
crc F625A959
)
)
game (
comment "Antz Racing (USA) (En,Fr,De,Es,It,Nl)"
serial "CGB-BAZE-USA"
rom (
crc DFDF90C0
)
)
game (
comment "Aqualife (Japan) (SGB Enhanced)"
serial "DMG-AALJ-JPN"
rom (
crc E243FEB4
)
)
game (
comment "Arle no Bouken - Mahou no Jewel (Japan) (SGB Enhanced)"
serial "DMG-BRBJ-JPN"
rom (
crc 8EE043EA
)
)
game (
comment "Armada - FX Racers (USA)"
serial "CGB-BARE-USA"
rom (
crc D952CBAB
)
)
game (
comment "Arthur's Absolutely Fun Day! (USA)"
serial "CGB-BFDE-USA"
rom (
crc F03599A3
)
)
game (
comment "Asterix & Obelix (Europe) (En,Fr,De,Es)"
serial "CGB-AOLP"
rom (
crc 6628CDEE
)
)
game (
comment "Asterix & Obelix vs Caesar (Europe) (En,Fr,De,Es,Nl)"
serial "DMG-BAOP"
rom (
crc 71043D76
)
)
game (
comment "Atsumete Asobu Kuma no Pooh-san - Mori no Takaramono (Japan)"
serial "CGB-BPUJ-JPN"
rom (
crc 476EDE93
)
)
game (
comment "Austin Powers - Oh, Behave! (Europe) (En,Fr,De,Es,It)"
serial "CGB-BAPP-EUR"
rom (
crc BF99F8CB
)
)
game (
comment "Austin Powers - Oh, Behave! (USA)"
serial "CGB-BAPE-USA"
rom (
crc BB89190E
)
)
game (
comment "Austin Powers - Welcome to my Underground Lair! (USA)"
serial "CGB-BEAE-USA"
rom (
crc ABA42B78
)
)
game (
comment "Aventures de Buzz l'Eclair, Les (France)"
serial "CGB-BUZP-EUR"
rom (
crc 841674B0
)
)
game (
comment "Azarashi Sentai Inazuma - Dokidoki Daisakusen! (Japan)"
serial "CGB-BOAJ-JPN"
rom (
crc 98F63BD4
)
)
game (
comment "Azure Dreams (Europe) (En,Fr,De) (SGB Enhanced)"
serial "DMG-AAYP-EUR"
rom (
crc F9CCAB09
)
)
game (
comment "Azure Dreams (USA) (SGB Enhanced)"
serial "DMG-AAZE-USA"
rom (
crc 71D52876
)
)
game (
comment "B-Daman Bakugaiden - Victory e no Michi (Japan) (SGB Enhanced)"
serial "DMG-AOKJ-JPN"
rom (
crc DDCE76D6
)
)
game (
comment "B-Daman Bakugaiden V - Final Mega Tune (Japan)"
serial "CGB-AJRJ-JPN"
rom (
crc 547A9A69
)
)
game (
comment "Babe and Friends (Europe) (En,Fr,De,Es,It)"
serial "DMG-AVAP"
rom (
crc B3681854
)
)
game (
comment "Babe and Friends (USA)"
serial "DMG-AVAE-USA"
rom (
crc E25407F1
)
)
game (
comment "Baby Felix - Halloween (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BFHP-EUR"
rom (
crc 7DED5C71
)
)
game (
comment "Backgammon (Europe) (En,Fr,De,Es)"
serial "DMG-AAKP-EUR"
rom (
crc D33D6F7B
)
)
game (
comment "Backgammon (Japan)"
serial "DMG-AAKJ-JPN"
rom (
crc 712A49B3
)
)
game (
comment "Bad Badtz-Maru Robo Battle (Japan)"
serial "CGB-BBRJ-JPN"
rom (
crc 4DD29B09
)
)
game (
comment "Bakukyuu Renpatsu!! Super B-Daman - Gekitan! Rising Valkyrie!! (Japan) (SGB Enhanced)"
serial "DMG-A4RJ-JPN"
rom (
crc 5C95D5A2
)
)
game (
comment "Bakusou Dekotora Densetsu GB Special - Otoko Dokyou no Tenka Touitsu (Japan)"
serial "CGB-BDBJ-JPN"
rom (
crc 92C8B9B5
)
)
game (
comment "Bakusou Senki Metal Walker GB - Koutetsu no Yuujou (Japan)"
serial "DMG-AUEJ-JPN"
rom (
crc D514C9A0
)
)
game (
comment "Bakuten Shoot Beyblade (Japan)"
serial "CGB-BB3J-JPN"
rom (
crc BC306EA4
)
)
game (
comment "Ballistic (USA)"
serial "DMG-ALIE-USA"
rom (
crc A9050F72
)
)
game (
comment "Balloon Fight GB (Japan) (NP, SGB Enhanced)"
serial "DMG-BSJ-JPN"
rom (
crc D2AF64CE
)
)
game (
comment "Barbie - Aventura Submarina (Spain)"
serial "DMG-ADYP-EUR"
rom (
crc 0CF2B7F2
)
)
game (
comment "Barbie - Avventure nell'Oceano (Italy)"
serial "DMG-ADYP-EUR"
rom (
crc 59645A18
)
)
game (
comment "Barbie - Chasse au Tresor Sous-Marine (France)"
serial "DMG-ADYP-EUR"
rom (
crc 4068E981
)
)
game (
comment "Barbie - Diepzee Avontuur (Netherlands)"
serial "DMG-ADYP-EUR"
rom (
crc 39C6B8DF
)
)
game (
comment "Barbie - Magic Genie Adventure (USA)"
serial "CGB-BMCE-USA"
rom (
crc 57F1A202
)
)
game (
comment "Barbie - Meeres Abenteuer (Germany)"
serial "DMG-ADYP-EUR"
rom (
crc 5E46D64A
)
)
game (
comment "Barbie - Ocean Discovery (Europe)"
serial "DMG-ADYP-EUR"
rom (
crc FDC8E7F1
)
)
game (
comment "Barbie - Ocean Discovery (USA)"
serial "DMG-ADYE-USA"
rom (
crc 746936C6
)
)
game (
comment "Barbie - Pet Rescue (Europe) (En,Fr,De,Es,It)"
serial "CGB-BPEP-EUR"
rom (
crc 48E638CE
)
)
game (
comment "Barbie - Pet Rescue (USA)"
serial "CGB-BPEE-USA"
rom (
crc 1FC972CC
)
)
game (
comment "Barcode Taisen Bardigun (Japan) (SGB Enhanced)"
serial "DMG-ABEJ-JPN"
rom (
crc DDFCF4B7
)
)
game (
comment "Batman Beyond - Return of the Joker (USA)"
serial "CGB-BTKE-USA"
rom (
crc B32F4586
)
)
game (
comment "Batman of the Future - Return of the Joker (Europe) (En,Fr,De)"
serial "CGB-BTKP-EUR"
rom (
crc F9D5B399
)
)
game (
comment "Battle Fishers (Japan)"
serial "CGB-BBAJ-JPN"
rom (
crc C99CF3C5
)
)
game (
comment "BattleTanx (Europe) (En,Fr,De)"
serial "CGB-AVNP"
rom (
crc 2FCECB70
)
)
game (
comment "BattleTanx (USA)"
serial "CGB-AVNE-USA"
rom (
crc 4431F8E7
)
)
game (
comment "Beach'n Ball (Europe) (En,Fr,De,Es,It)"
serial "CGB-BVBP-EUR"
rom (
crc 82D1A721
)
)
game (
comment "Bear in the Big Blue House (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BBNP-EUR"
rom (
crc 48C99939
)
)
game (
comment "Bear in the Big Blue House (USA) (En,Fr,De,Es,It,Nl)"
serial "CGB-BB7E-USA"
rom (
crc 851C8710
)
)
game (
comment "Beatmania GB (Japan) (SGB Enhanced)"
serial "DMG-AOOJ-JPN"
rom (
crc 0D9CB195
)
)
game (
comment "Beatmania GB - Gotcha Mix 2 (Japan)"
serial "CGB-B3GJ-JPN"
rom (
crc B92A6D16
)
)
game (
comment "Beatmania GB2 - Gotcha Mix (Japan) (SGB Enhanced)"
serial "DMG-A2GJ-JPN"
rom (
crc 59BEB372
)
)
game (
comment "Beauty and the Beast - A Board Game Adventure (Europe) (En,Fr,De,Es,It) (SGB Enhanced)"
serial "DMG-AVUP-EUR"
rom (
crc E4C410F0
)
)
game (
comment "Beauty and the Beast - A Board Game Adventure (USA) (SGB Enhanced)"
serial "DMG-AVUE-USA"
rom (
crc 6DE1D581
)
)
game (
comment "Benjamin Bluemchen - Ein verrueckter Tag im Zoo (Germany)"
serial "CGB-BB5D-NOE"
rom (
crc 51972995
)
)
game (
comment "Beyblade - Fighting Tournament (Japan)"
serial "CGB-BBVJ-JPN"
rom (
crc 1EC9DB95
)
)
game (
comment "Bibi und Tina - Fohlen Felix in Gefahr (Germany)"
serial "CGB-BFED-NOE"
rom (
crc 8874ACD4
)
)
game (
comment "Bikkuriman 2000 - Charging Card GB (Japan) (SGB Enhanced)"
serial "DMG-BC2J-JPN"
rom (
crc 5BE2517C
)
)
game (
comment "Biohazard Gaiden (Japan)"
serial "CGB-BIOJ-JPN"
rom (
crc C2531D36
)
)
game (
comment "Black Onyx, The (Japan)"
serial "CGB-BBOJ-JPN"
rom (
crc 582FE338
)
)
game (
comment "Blue's Clues - Blue's Alphabet Book (USA)"
serial "CGB-BALE-USA"
rom (
crc 748D1345
)
)
game (
comment "Boarder Zone (USA)"
serial "CGB-AXWE-USA"
rom (
crc A7152869
)
)
game (
comment "Bob the Builder - Fix it Fun! (Europe) (En,Fr,De,Es,Nl)"
serial "CGB-BOBP-EUR"
rom (
crc EA33FE3D
)
)
game (
comment "Bob the Builder - Fix it Fun! (Europe) (En,Fr,It)"
serial "CGB-BOBP-EUR"
rom (
crc A8EBD88B
)
)
game (
comment "Bob the Builder - Fix it Fun! (Europe) (En,Sv,No,Da,Fi)"
serial "CGB-BOBP-EUR"
rom (
crc F319E823
)
)
game (
comment "Bob the Builder - Fix it Fun! (USA)"
serial "CGB-BOBE-USA"
rom (
crc 93FA37BD
)
)
game (
comment "Boku no Camp-jou (Japan)"
serial "CGB-BDPJ-JPN"
rom (
crc C87120B5
)
)
game (
comment "Bokujou Monogatari GB2 (Japan)"
serial "DMG-A37J-JPN"
rom (
crc EE993302
)
)
game (
comment "Bokujou Monogatari GB3 - Boy Meets Girl (Japan)"
serial "CGB-BWAJ-JPN"
rom (
crc 3A18B41F
)
)
game (
comment "Bomber Man Max - Hikari no Yuusha (Japan)"
serial "CGB-A8BJ-JPN"
rom (
crc 7A44CE88
)
)
game (
comment "Bomber Man Max - Yami no Senshi (Japan)"
serial "CGB-A7BJ-JPN"
rom (
crc 48B60E8E
)
)
game (
comment "Bomberman Max - Blue Champion (USA)"
serial "CGB-A8BE-USA"
rom (
crc 5CCB66CF
)
)
game (
comment "Bomberman Max - Red Challenger (USA)"
serial "CGB-A7BE-USA"
rom (
crc 4853F586
)
)
game (
comment "Bomberman Quest (Europe) (En,Fr,De) (SGB Enhanced)"
serial "DMG-AQVP-EUR"
rom (
crc 5A9B9AE6
)
)
game (
comment "Bomberman Quest (USA) (SGB Enhanced)"
serial "DMG-AVQE-USA"
rom (
crc A089C656
)
)
game (
comment "Brave Saga - Shinshou Astaria (Japan)"
serial "CGB-BBSJ-JPN"
rom (
crc 5D5D294A
)
)
game (
comment "Bug's Life, A (Europe) (SGB Enhanced)"
serial "DMG-APXP-EUR"
rom (
crc DB93E0F6
)
)
game (
comment "Bug's Life, A (USA) (SGB Enhanced)"
serial "DMG-APXE-USA"
rom (
crc 8360047A
)
)
game (
comment "Bugs Bunny & Lola Bunny - Operation Carrots (Europe) (En,Fr,De,Es,It,Nl)"
serial "DMG-ABLP-EUR"
rom (
crc F0CC407F
)
)
game (
comment "Bugs Bunny - Crazy Castle 3 (Japan)"
serial "DMG-AB6J-JPN"
rom (
crc AE839CAE
)
)
game (
comment "Bugs Bunny et le Chateau des Catastrophes (France)"
serial "CGB-AO4P-EUU"
rom (
crc 6DA8E6EB
)
)
game (
comment "Bugs Bunny in Crazy Castle 4 (Europe)"
serial "CGB-AO4P-EUU"
rom (
crc 53155E60
)
)
game (
comment "Bugs Bunny in Crazy Castle 4 (Japan)"
serial "CGB-AO4J-JPN"
rom (
crc D6387EAA
)
)
game (
comment "Bugs Bunny in Crazy Castle 4 (USA)"
serial "CGB-AO4E-USA"
rom (
crc 98DBFFE0
)
)
game (
comment "Burai Senshi Color (Japan)"
serial "CGB-AZYJ-JPN"
rom (
crc E52FBD12
)
)
game (
comment "Burger Burger Pocket (Japan) (SGB Enhanced)"
serial "DMG-ABNJ-JPN"
rom (
crc 1ABCEDBE
)
)
game (
comment "Burger Paradise International (Japan)"
serial "CGB-AEYJ-JPN"
rom (
crc 9092B0EB
)
)
game (
comment "Cannon Fodder (Europe) (En,Fr,De,Es,It)"
serial "CGB-BCFP-EUR"
rom (
crc 824C3BF3
)
)
game (
comment "Cannon Fodder (USA) (En,Fr,De,Es,It)"
serial "CGB-BCFE-USA"
rom (
crc 26F8E1A0
)
)
game (
comment "Captain Buzz Lightyear - Star Command (Germany)"
serial "CGB-BUZP-EUR"
rom (
crc F06D296C
)
)
game (
comment "Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan)"
serial "DMG-AM7J-JPN"
rom (
crc 89BA58ED
)
)
game (
comment "Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev A)"
serial "DMG-AM7J-JPN"
rom (
crc 43F28E22
)
)
game (
comment "Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev B)"
serial "DMG-AM7J-JPN"
rom (
crc 7243E258
)
)
game (
comment "Cardcaptor Sakura - Tomoeda Shougakkou Daiundoukai (Japan)"
serial "CGB-BS7J-JPN"
rom (
crc F78F7998
)
)
game (
comment "Carl Lewis Athletics 2000 (Europe) (En,Fr,De,Es,It,Nl)"
serial "CGB-BCLP-EUR"
rom (
crc 15430979
)
)
game (
comment "Carmageddon - Carpocalypse Now (Germany)"
serial "CGB-AKWD-NOE"