-
Notifications
You must be signed in to change notification settings - Fork 0
/
_games.template
6227 lines (6225 loc) · 694 KB
/
_games.template
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
# pinHP Arcade Image
# Game definition file
# version=31OCT24
#
# USER EDITABLE:
# # sorted: true or false, true displays games in alphabetical order
# # title: Edit to display friendly game name
# # orientation: If "Orientationfilter" is set ON in game menu:
# h - Game is displayed in horizontal screen mode only
# v - Game is displayed in vertical screen mode only
# a - Game is displayed in all screen modes
#
# DO NOT EDIT:
# # rom: Rom file name
# # params: Required by game software, assigning games to submenus
# Values are set by game software (Caution: Edit *only* if you know what you are doing)
#
sorted = true
game { rom ="_DUMMY" title ="DO NOT EDIT THIS LINE" params ="-1ONE-1TWO-1TRE-1ALL-1FAV" orientation ="a" }
game { rom ="005" title ="005" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="11beat" title ="Eleven Beat" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="1941" title ="1941 - Counter Attack (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1941j" title ="1941 - Counter Attack (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1942" title ="1942 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1942a" title ="1942 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1942b" title ="1942 (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1943" title ="1943: The Battle of Midway (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1943j" title ="1943: Midway Kaisen (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1943kai" title ="1943 Kai: Midway Kaisen (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1943mii" title ="1943: The Battle of Midway Mark II (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="1944" title ="1944: The Loop Master (US 000620)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="1944j" title ="1944: The Loop Master (Japan 000620)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="1945kiii" title ="1945k III" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="19xx" title ="19XX: The War Against Destiny (US 951207)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="19xxa" title ="19XX: The War Against Destiny (Asia 951207)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="19xxh" title ="19XX: The War Against Destiny (Hispanic 951218)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="19xxj" title ="19XX: The War Against Destiny (Japan 951225)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="19xxjr1" title ="19XX: The War Against Destiny (Japan 951207)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="2020bb" title ="2020 Super Baseball (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="2020bba" title ="2020 Super Baseball (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="2020bbh" title ="2020 Super Baseball (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="280zzzap" title ="Datsun 280 Zzzap" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="3countb" title ="3 Count Bout / Fire Suplex" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="3in1semi" title ="XESS - The New Revolution (SemiCom 3-in-1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="3kokushi" title ="Sankokushi (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="3stooges" title ="The Three Stooges In Brides Is Brides" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="3wonders" title ="Three Wonders (World 910520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="3wonderu" title ="Three Wonders (US 910520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="40love" title ="Forty-Love" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="47pie2" title ="Idol Janshi Su-Chi-Pie 2 (v1.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="47pie2o" title ="Idol Janshi Su-Chi-Pie 2 (v1.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="4dwarrio" title ="4-D Warriors" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="4enraya" title ="4 En Raya" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="4in1" title ="4 Fun in 1" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="4in1boot" title ="Puzzle King (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="4psimasy" title ="Mahjong 4P Simasyo (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="600" title ="600" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="64streej" title ="64th. Street - A Detective Story (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="64street" title ="64th. Street - A Detective Story (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720" title ="720 Degrees (rev 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720g" title ="720 Degrees (German, rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720gr1" title ="720 Degrees (German, rev 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720r1" title ="720 Degrees (rev 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720r2" title ="720 Degrees (rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="720r3" title ="720 Degrees (rev 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="7jigen" title ="7jigen no Youseitachi - Mahjong 7 Dimensions (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="7toitsu" title ="Chi-Toitsu" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="800fath" title ="800 Fathoms" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="88games" title ="'88 Games" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="8ball" title ="Video Eight Ball" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="8ball1" title ="Video Eight Ball (Rev.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="8ballact" title ="Eight Ball Action (DK conversion)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="8ballat2" title ="Eight Ball Action (DKJr conversion)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="8bpm" title ="Eight Ball Action (Pac-Man conversion)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="99lstwar" title ="'99: The Last War" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="99lstwra" title ="'99: The Last War (alternate)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="99lstwrk" title ="'99: The Last War (Kyugo)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="9ballsh2" title ="9-Ball Shootout (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="9ballsh3" title ="9-Ball Shootout (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="9ballsht" title ="9-Ball Shootout (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="a51mxr3k" title ="Area 51 / Maximum Force Duo (R3000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="a51site4" title ="Area 51: Site 4" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aafb" title ="All American Football (rev E)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aafbb" title ="All American Football (rev B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aafbc" title ="All American Football (rev C)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aafbd2p" title ="All American Football (rev D, 2 Players)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="abaseb" title ="Atari Baseball (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="abaseb2" title ="Atari Baseball (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="abattle" title ="Astro Battle (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="abattle2" title ="Astro Battle (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="abcop" title ="A.B. Cop (FD1094 317-0169b)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="abscam" title ="Abscam" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="abunai" title ="Abunai Houkago - Mou Matenai (Japan 890325)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aburner" title ="After Burner (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aburner2" title ="After Burner II" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ace" title ="Ace" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="aceattac" title ="Ace Attacker (FD1094 317-0060)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="acedrvrw" title ="Ace Driver (Rev. AD2, World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="acitya" title ="Atlantic City Action" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="acombat" title ="Astro Combat" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="acommand" title ="Alien Command" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="acrobatm" title ="Acrobat Mission" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="actfanc1" title ="Act-Fancer Cybernetick Hyper Weapon (World revision 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="actfancj" title ="Act-Fancer Cybernetick Hyper Weapon (Japan revision 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="actfancr" title ="Act-Fancer Cybernetick Hyper Weapon (World revision 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="actionhw" title ="Action Hollywood" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ad2083" title ="A. D. 2083" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aerfboot" title ="Aero Fighters (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aeroboto" title ="Aeroboto" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aerofgt" title ="Aero Fighters" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aerofgtb" title ="Aero Fighters (Turbo Force hardware set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aerofgtc" title ="Aero Fighters (Turbo Force hardware set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="afighter" title ="Action Fighter, FD1089A 317-0018" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="afire" title ="Astro Fire" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="agallet" title ="Air Gallet" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="agress" title ="Agress" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="agressb" title ="Agress (English bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ainferno" title ="Air Inferno (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="airattck" title ="Air Attack" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="airbustj" title ="Air Buster: Trouble Specialty Raid Unit (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="airbustr" title ="Air Buster: Trouble Specialty Raid Unit (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="airco22b" title ="Air Combat 22 (Rev. ACS1 Ver.B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aircombj" title ="Air Combat (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aircombu" title ="Air Combat (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="airduel" title ="Air Duel (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="airraid" title ="Air Raid (encrypted)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="airwolf" title ="Airwolf" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ajax" title ="Ajax" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="ajaxj" title ="Ajax (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="akiss" title ="Mahjong Angel Kiss" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="akkanvdr" title ="Akkanbeder (Ver 2.5J 1995/06/14)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="alcon" title ="Alcon" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="alexkid1" title ="Alex Kidd: The Lost Stars (set 1, FD1089A 317-unknown)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alexkidd" title ="Alex Kidd: The Lost Stars (set 2, unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alibaba" title ="Ali Baba and 40 Thieves" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="alien3" title ="Alien3: The Gun (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alien3u" title ="Alien3: The Gun (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alienar" title ="Alien Arena" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alienaru" title ="Alien Arena (Stargate Upgrade)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alieninv" title ="Alien Invasion Part II" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="aliens" title ="Aliens (World set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliens2" title ="Aliens (World set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliens3" title ="Aliens (World set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensj" title ="Aliens (Japan set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensj2" title ="Aliens (Japan set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensu" title ="Aliens (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensy1" title ="Alien Syndrome (set 1, System 16A, FD1089A 317-0033)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensy2" title ="Alien Syndrome (set 2, System 16A, FD1089A 317-0033)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensy3" title ="Alien Syndrome (set 3, System 16B, FD1089A 317-0033)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aliensyn" title ="Alien Syndrome (set 4, System 16B, unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aligator" title ="Alligator Hunt" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aligatun" title ="Alligator Hunt (unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alleymas" title ="Alley Master" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="alphaho" title ="Alpha Fighter / Head On" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="alpham2" title ="Alpha Mission II / ASO II - Last Guardian" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alphamis" title ="Alpha Mission" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="alphaona" title ="Alpha One (prototype, 5 lives)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="alphaone" title ="Alpha One (prototype, 3 lives)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="alphaxz" title ="The Alphax Z (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="alpine" title ="Alpine Ski (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="alpinea" title ="Alpine Ski (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="alpinerc" title ="Alpine Racer (Rev. AR2 Ver.C)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alpinerd" title ="Alpine Racer (Rev. AR2 Ver.D)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alpinesa" title ="Alpine Surfer (Rev. AF2 Ver.A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="alpinr2b" title ="Alpine Racer 2 (Rev. ARS2 Ver.B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeaj1" title ="Juuouki (set 1, Japan, FD1094 317-0065)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeaj3" title ="Juuouki (set 3, Japan, FD1094 317-0068)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeas2" title ="Altered Beast (set 2, MC-8123B 317-0066)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeas4" title ="Altered Beast (set 4, MC-8123B 317-0066)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeas5" title ="Altered Beast (set 5, 8751 317-0076)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeasj" title ="Juuouki (set 6, Japan, 8751 317-0077)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="altbeast" title ="Altered Beast (set 7, 8751 317-0078)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="amatelas" title ="Sei Senshi Amatelass" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="amazon" title ="Soldier Girl Amazon" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="ambush" title ="Ambush" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ambusht" title ="Ambush (Tecfri)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ambushv" title ="Ambush (Volt Elec co-ltd)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="amerdar2" title ="AmeriDarts (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="amerdart" title ="AmeriDarts (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="amidar" title ="Amidar" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="amidarb" title ="Amidar (Bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="amidaro" title ="Amidar (Olympia)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="amidars" title ="Amidar (Scramble hardware)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="amidaru" title ="Amidar (Stern)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="amigo" title ="Amigo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ampoker2" title ="American Poker II (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ampokr2a" title ="American Poker II (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ampokr2b" title ="American Poker II (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ampokr2c" title ="American Poker II (set 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="amspdwy" title ="American Speedway (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="amspdwya" title ="American Speedway (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="androdun" title ="Andro Dunos" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="andromed" title ="Andromeda (Japan?)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="angelkds" title ="Angel Kids (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="animaljr" title ="Animalandia Jr." params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="anteater" title ="Anteater" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="anteatg" title ="Ameisenbaer (German)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="anteatgb" title ="The Anteater (UK)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="aodk" title ="Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aof" title ="Art of Fighting / Ryuuko no Ken" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aof2" title ="Art of Fighting 2 / Ryuuko no Ken 2 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aof2a" title ="Art of Fighting 2 / Ryuuko no Ken 2 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aof3" title ="Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aof3k" title ="Art of Fighting 3 - The Path of the Warrior (Korean release)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="apache3" title ="Apache 3" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="apb" title ="APB - All Points Bulletin (rev 7)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb1" title ="APB - All Points Bulletin (rev 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb2" title ="APB - All Points Bulletin (rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb3" title ="APB - All Points Bulletin (rev 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb4" title ="APB - All Points Bulletin (rev 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb5" title ="APB - All Points Bulletin (rev 5)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apb6" title ="APB - All Points Bulletin (rev 6)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apbf" title ="APB - All Points Bulletin (French)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="apbg" title ="APB - All Points Bulletin (German)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="aponow" title ="Apocaljpse Now" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="apparel" title ="Apparel Night (Japan 860929)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="appoooh" title ="Appoooh" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aquajack" title ="Aqua Jack (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aquajckj" title ="Aqua Jack (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aquario" title ="Clockwork Aquario (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aquarium" title ="Aquarium (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aquarush" title ="Aqua Rush (AQ1/VER.A1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_airh" title ="SportTime Table Hockey (Arcadia, V 2.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_bowl" title ="SportTime Bowling (Arcadia, V 2.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_dart" title ="World Darts (Arcadia, V 2.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_fast" title ="Magic Johnson's Fast Break (Arcadia, V 2.8)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_ldrb" title ="Leader Board (Arcadia, V 2.4?)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_ldrba" title ="Leader Board (Arcadia, V 2.5)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_ninj" title ="Ninja Mission (Arcadia, V 2.5)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_rdwr" title ="RoadWars (Arcadia, V 2.3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_sdwr" title ="Sidewinder (Arcadia, V 2.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_socc" title ="World Trophy Soccer (Arcadia, V 3.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_spot" title ="Spot (Arcadia)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_sprg" title ="Space Ranger (Arcadia, V 2.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ar_xeon" title ="Xenon (Arcadia, V 2.3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabfgt" title ="Arabian Fight (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabfgtj" title ="Arabian Fight (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabfgtu" title ="Arabian Fight (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabiamj" title ="Arabian Magic (Ver 1.0J 1992/07/06)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabiamu" title ="Arabian Magic (Ver 1.0A 1992/07/06)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arabian" title ="Arabian" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="arabiana" title ="Arabian (Atari)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="arabianm" title ="Arabian Magic (Ver 1.0O 1992/07/06)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arbalest" title ="Arbalester" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="arcadecl" title ="Arcade Classics (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arcadia" title ="Waga Seishun no Arcadia" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="archriv2" title ="Arch Rivals (rev 2.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="archrivl" title ="Arch Rivals (rev 4.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="area51" title ="Area 51 (R3000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="area51a" title ="Area 51 (Atari Games License)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="area51mx" title ="Area 51 / Maximum Force Duo v2.0" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="area51t" title ="Area 51 (Time Warner License)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="area88" title ="Area 88 (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arescue" title ="Air Rescue" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="argus" title ="Argus" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="argusg" title ="Argus (Gottlieb, prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arkangc" title ="Arkanoid (Game Corporation bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkanoid" title ="Arkanoid (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkarea" title ="Ark Area" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arkatayt" title ="Arkanoid (Tayto bootleg, Japanese)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkatour" title ="Tournament Arkanoid (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkbl2" title ="Arkanoid (Japanese bootleg Set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkbl3" title ="Arkanoid (Japanese bootleg Set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkbloc2" title ="Block (Game Corporation bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkblock" title ="Block (bootleg, Japanese)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknid2j" title ="Arkanoid - Revenge of DOH (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknid2u" title ="Arkanoid - Revenge of DOH (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknoid2" title ="Arkanoid - Revenge of DOH (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknoidj" title ="Arkanoid (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknoidu" title ="Arkanoid (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arknoiuo" title ="Arkanoid (US, older)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="arkretrn" title ="Arkanoid Returns (Ver 2.02J 1997/02/10)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="arlingtn" title ="Arlington Horse Racing (v1.21-D)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="armchmp2" title ="Arm Champs II" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="armedf" title ="Armed Formation" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="armora" title ="Armor Attack" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="armorap" title ="Armor Attack (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="armorar" title ="Armor Attack (Rock-ola)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="armorca2" title ="Armored Car (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="armorcar" title ="Armored Car (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="armwar" title ="Armored Warriors (Euro 941024)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="armwara" title ="Armored Warriors (Asia 940920)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="armwarr1" title ="Armored Warriors (Euro 941011)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="armwaru" title ="Armored Warriors (US 941024)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="armwrest" title ="Arm Wrestling" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ashnojoe" title ="Ashita no Joe (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="ashura" title ="Ashura Blaster (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="ashurau" title ="Ashura Blaster (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="aso" title ="ASO - Armored Scrum Object" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="assault" title ="Assault" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="assaultj" title ="Assault (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="assaultp" title ="Assault Plus (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astdelu1" title ="Asteroids Deluxe (rev 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astdelux" title ="Asteroids Deluxe (rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asterix" title ="Asterix (ver EAD)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asterock" title ="Asterock" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asteroi1" title ="Asteroids (rev 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asteroib" title ="Asteroids (bootleg on Lunar Lander hardware)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asteroid" title ="Asteroids (rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astinvad" title ="Astro Invader" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astorm" title ="Alien Storm (set 4, World, 2 Players, FD1094 317-0154)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astorm3" title ="Alien Storm (set 3, World, 3 Players, FD1094 317-0148)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astormbl" title ="Alien Storm (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astormj" title ="Alien Storm (set 1, Japan, 2 Players, FD1094 317-0146)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astormu" title ="Alien Storm (set 2, US, 3 Players, FD1094 317-0147)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astrass" title ="Astra SuperStars (J 980514 V1.002)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astrob" title ="Astro Blaster (version 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrob1" title ="Astro Blaster (version 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrob2" title ="Astro Blaster (version 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrob2a" title ="Astro Blaster (version 2a)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrof" title ="Astro Fighter (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrof2" title ="Astro Fighter (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrof3" title ="Astro Fighter (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="astrofl" title ="Astro Flash (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astrxeaa" title ="Asterix (ver EAA)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astrxeac" title ="Asterix (ver EAC)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="astyanax" title ="The Astyanax" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asuka" title ="Asuka & Asuka (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="asurabld" title ="Asura Blade - Sword of Dynasty (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asurabus" title ="Asura Buster - Eternal Warriors (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="asylum" title ="Asylum (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="atarifb" title ="Atari Football (revision 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atarifb1" title ="Atari Football (revision 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atarifb4" title ="Atari Football (4 players)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ataxx" title ="Ataxx (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ataxxa" title ="Ataxx (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ataxxj" title ="Ataxx (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atehate" title ="Athena no Hatena ?" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atetckt2" title ="Tetris (Cocktail set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="atetcktl" title ="Tetris (Cocktail set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="atetris" title ="Tetris (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atetrisa" title ="Tetris (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atetrisb" title ="Tetris (bootleg set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atetrsb2" title ="Tetris (bootleg set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="athena" title ="Athena" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atlantis" title ="Battle of Atlantis (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="atlantol" title ="Atlant Olimpic" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="atlants2" title ="Battle of Atlantis (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="atomboy" title ="Atomic Boy" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atomicp" title ="Atomic Point (Korea)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="atompunk" title ="Atomic Punk (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="attckufo" title ="Attack Ufo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="aurail" title ="Aurail (set 3, US, unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aurail1" title ="Aurail (set 2, World, FD1089B 317-0168)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aurailj" title ="Aurail (set 1, Japan, FD1089A 317-0167)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="av2mj1bb" title ="AV2Mahjong No.1 Bay Bridge no Seijo (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="av2mj2rg" title ="AV2Mahjong No.2 Rouge no Kaori (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avalnche" title ="Avalanche" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="avenger2" title ="Avengers (US set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="avengers" title ="Avengers (US set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="avengrgj" title ="Avengers In Galactic Storm (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avengrgs" title ="Avengers In Galactic Storm (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avsp" title ="Alien vs. Predator (Euro 940520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avspa" title ="Alien vs. Predator (Asia 940520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avsph" title ="Alien vs. Predator (Hispanic 940520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avspirit" title ="Avenging Spirit" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avspj" title ="Alien vs. Predator (Japan 940520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="avspu" title ="Alien vs. Predator (US 940520)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="aztarac" title ="Aztarac" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="azurian" title ="Azurian Attack" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="b2b" title ="Bang Bang Busters (2010 NCI release)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="backfira" title ="Backfire! (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="backfire" title ="Backfire!" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="baddudes" title ="Bad Dudes vs. Dragonninja (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="badlands" title ="Bad Lands" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bagman" title ="Bagman" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bagmanmc" title ="Bagman (Moon Cresta hardware)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bagmans" title ="Bagman (Stern set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bagmans2" title ="Bagman (Stern set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bagnard" title ="Le Bagnard (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bagnarda" title ="Le Bagnard (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bakatono" title ="Bakatonosama Mahjong Manyuki" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bakubaku" title ="Baku Baku Animal (J 950407 V1.000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bakubrkr" title ="Bakuretsu Breaker" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bakuhatu" title ="Mahjong Bakuhatsu Junjouden (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bakutotu" title ="Bakutotsu Kijuutei" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="balcube" title ="Bal Cube" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ballbomb" title ="Balloon Bomber" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ballbros" title ="Balloon Brothers" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="balonfgt" title ="Vs. Balloon Fight" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="baluba" title ="Baluba-louk no Densetsu" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bananadr" title ="Mahjong Banana Dream [BET] (Japan 891124)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bandido" title ="Bandido" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bang" title ="Bang!" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bangball" title ="Bang Bang Ball (v1.05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bangbead" title ="Bang Bead" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bangj" title ="Gun Gabacho (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bankp" title ="Bank Panic" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="baraduka" title ="Baraduke (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="baraduke" title ="Baraduke (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="barricad" title ="Barricade" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="barrier" title ="Barrier" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="basebal2" title ="Baseball The Season II" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bass" title ="Sega Bass Fishing" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batcir" title ="Battle Circuit (Euro 970319)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batcira" title ="Battle Circuit (Asia 970319)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batcirj" title ="Battle Circuit (Japan 970319)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batlbala" title ="Battle Balls (Asia)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batlball" title ="Battle Balls (Germany)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batlbubl" title ="Battle Bubble (v2.00)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batman" title ="Batman" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batman2" title ="Batman Part 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="batmanfr" title ="Batman Forever (JUE 960507 V1.000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="batrid" title ="Armed Police Batrider (Europe) (Fri Feb 13 1998)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridc" title ="Armed Police Batrider (China) (Fri Feb 13 1998)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridj" title ="Armed Police Batrider - B Version (Japan) (Fri Feb 13 1998)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridja" title ="Armed Police Batrider - A Version (Japan) (Mon Dec 22 1997)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridk" title ="Armed Police Batrider (Korea) (Fri Feb 13 1998)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridta" title ="Armed Police Batrider - A Version (Taiwan) (Mon Dec 22 1997)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batridu" title ="Armed Police Batrider (U.S.A.) (Fri Feb 13 1998)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batsugna" title ="Batsugun (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batsugun" title ="Batsugun (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlan2" title ="Battle Lane! Vol. 5 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlan3" title ="Battle Lane! Vol. 5 (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlane" title ="Battle Lane! Vol. 5 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlcry" title ="Battlecry" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="battlera" title ="Battle Rangers (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="battles" title ="Battles" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlex" title ="Battle Cross" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="battlntj" title ="Battlantis (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battlnts" title ="Battlantis" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="battroad" title ="The Battle-Road" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batugnsp" title ="Batsugun (Special Ver.)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="batwings" title ="Battle Wings (alt)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bayrout1" title ="Bay Route (set 1, US, unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bayroute" title ="Bay Route (set 3, World, FD1094 317-0116)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bayroutj" title ="Bay Route (set 2, Japan, FD1094 317-0115)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bayrtbl1" title ="Bay Route (bootleg set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bayrtbl2" title ="Bay Route (bootleg set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bballs" title ="Bouncing Balls" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bbbxing" title ="Best Bout Boxing" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bbmanw" title ="Bomber Man World / New Dyna Blaster - Global Quest" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bbmanwj" title ="Bomber Man World (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bbonk" title ="Bigfoot Bonkers" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bbprot" title ="Untitled Fighter 'BB' (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bbros" title ="Buster Bros. (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bbusters" title ="Beast Busters (World ?)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bchopper" title ="Battle Chopper" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bcrusher" title ="Bone Crusher" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bcruzm12" title ="Battle Cruiser M-12" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bcstry" title ="B.C. Story (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bcstrya" title ="B.C. Story (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beaminv" title ="Beam Invader" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="beastf" title ="Beastie Feastie" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="beastrzb" title ="Beastorizer (USA Bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beastrzr" title ="Beastorizer (USA)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beathead" title ="BeatHead (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beezer" title ="Beezer (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beezer1" title ="Beezer (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bel" title ="Behind Enemy Lines" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="benberob" title ="Ben Bero Beh (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="berabohm" title ="Beraboh Man (Japan version C)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="beraboho" title ="Beraboh Man (Japan version B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="berlwall" title ="The Berlin Wall" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="berlwalt" title ="The Berlin Wall (bootleg ?)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bermudaa" title ="Bermuda Triangle (US older version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bermudao" title ="Bermuda Triangle (Japan old version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bermudat" title ="Bermuda Triangle (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="berzerk" title ="Berzerk (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="berzerk1" title ="Berzerk (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bestleag" title ="Best League" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bgaregcn" title ="Battle Garegga - Type 2 (Denmark / China) (Tue Apr 2 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bgaregga" title ="Battle Garegga (Europe / USA / Japan / Asia) (Sat Feb 3 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bgareghk" title ="Battle Garegga (Austria / Hong Kong) (Sat Feb 3 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bgaregnv" title ="Battle Garegga - New Version (Austria / Hong Kong) (Sat Mar 2 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bgaregt2" title ="Battle Garegga - Type 2 (Europe / USA / Japan / Asia) (Sat Mar 2 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bgaregtw" title ="Battle Garegga (Taiwan / Germany) (Thu Feb 1 1996)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bigbang" title ="Big Bang" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bigbucks" title ="Big Bucks" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bigdeal" title ="Big Deal (Hungary, set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigdealb" title ="Big Deal (Hungary, set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigevglf" title ="Big Event Golf" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bigfghtr" title ="Tatakae! Big Fighter" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigkarnk" title ="Big Karnak" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigkong" title ="Big Kong" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bigprowr" title ="The Big Pro Wrestling!" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bigrun" title ="Big Run (11th Rallye version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bigstrik" title ="Big Striker" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigstrkb" title ="Big Striker (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bigtwin" title ="Big Twin" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bijokkog" title ="Bijokko Gakuen (Japan 880116)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bijokkoy" title ="Bijokko Yume Monogatari (Japan 870925)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="billiard" title ="The Billiards" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bioatack" title ="Bio Attack" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="biofreak" title ="BioFreaks (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="biomtoy" title ="Biomechanical Toy (unprotected)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bionicc" title ="Bionic Commando (US set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bionicc2" title ="Bionic Commando (US set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bioship" title ="Bio-ship Paladin" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="birdtry" title ="Birdie Try (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bishi" title ="Bishi Bashi Championship Mini Game Senshuken (ver JAA)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bjourney" title ="Blue's Journey / Raguy" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bjtwin" title ="Bombjack Twin" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bking" title ="Birdie King" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bking2" title ="Birdie King 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bking3" title ="Birdie King 3" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bkraidj" title ="Battle Bakraid (Japan) (Wed Apr 7 1999)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bkraidu" title ="Battle Bakraid - Unlimited Version (U.S.A.) (Tue Jun 8 1999)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bkraiduj" title ="Battle Bakraid - Unlimited Version (Japan) (Tue Jun 8 1999)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bkrtmaq" title ="Bakuretsu Quiz Ma-Q Dai Bouken (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bktigerb" title ="Black Tiger (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bladestl" title ="Blades of Steel (version T)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bladstle" title ="Blades of Steel (version E)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blandia" title ="Blandia" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blandiap" title ="Blandia (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blast30" title ="Blaster (early 30 wave version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blasted" title ="Blasted" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blaster" title ="Blaster" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blastkit" title ="Blaster (kit)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blasto" title ="Blasto" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blastoff" title ="Blast Off (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blazeon" title ="Blaze On (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blazer" title ="Blazer (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blazstar" title ="Blazing Star" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blckgalb" title ="Block Gal (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blckout2" title ="Block Out (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blckoutj" title ="Block Out (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bldwolf" title ="Bloody Wolf (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bldyror2" title ="Bloody Roar 2 (JAPAN)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blitz" title ="NFL Blitz (boot ROM 1.2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blitz11" title ="NFL Blitz (boot ROM 1.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blitz2k" title ="NFL Blitz 2000 Gold Edition" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blitz99" title ="NFL Blitz '99" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blkbustr" title ="BlockBuster" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blkdrgnb" title ="Black Dragon (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blkdrgon" title ="Black Dragon" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blkhearj" title ="Black Heart (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blkheart" title ="Black Heart" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blkhole" title ="Black Hole" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blkpnthr" title ="Black Panther" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blktiger" title ="Black Tiger" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blmbycar" title ="Blomby Car" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blmbycau" title ="Blomby Car (not encrypted)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="block" title ="Block Block (World 910910)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blockade" title ="Blockade" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blockbl" title ="Block Block (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blockcar" title ="Block Carnival / Thunder & Lightning 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blocken" title ="Blocken (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blockgal" title ="Block Gal" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blockhl" title ="Block Hole" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blockj" title ="Block Block (Japan 910910)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blockjoy" title ="Block Block (World 911106 Joystick)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="blockout" title ="Block Out (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloodbra" title ="Blood Bros. (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloodbro" title ="Blood Bros. (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloods11" title ="Blood Storm (v1.10)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloods21" title ="Blood Storm (v2.10)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloods22" title ="Blood Storm (v2.20)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloodstm" title ="Blood Storm (v2.22)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloodwar" title ="Blood Warrior" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloxeed" title ="Bloxeed (Japan, FD1094 317-0139)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloxeedc" title ="Bloxeed (World, C System)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bloxeedu" title ="Bloxeed (US, C System)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="blsthead" title ="Blasteroids (with heads)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blstroi2" title ="Blasteroids (rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blstroi3" title ="Blasteroids (rev 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blstroid" title ="Blasteroids (rev 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blstroig" title ="Blasteroids (German, rev 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blswhstl" title ="Bells & Whistles (Version L)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bluehawk" title ="Blue Hawk" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bluehawn" title ="Blue Hawk (NTC)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blueprnj" title ="Blue Print (Jaleco)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blueprnt" title ="Blue Print (Midway)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="blueshrk" title ="Blue Shark" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="blzntrnd" title ="Blazing Tornado" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bm1stmix" title ="beatmania (ver JA-B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bm2ndmix" title ="beatmania 2nd MIX (ver JA-B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bm2ndmxa" title ="beatmania 2nd MIX (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bm4thmix" title ="beatmania 4th MIX (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bm5thmix" title ="beatmania 5th MIX (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bm6thmix" title ="beatmania 6th MIX (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bmaster" title ="Blade Master (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bmcbowl" title ="BMC Bowling" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bmcompm2" title ="beatmania complete MIX 2 (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bmcompmx" title ="beatmania complete MIX (ver JA-B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bmcorerm" title ="beatmania CORE REMIX (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bmdct" title ="beatmania f. Dreams Come True (ver JA-A)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bnglngby" title ="Vs. Raid on Bungeling Bay (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bnj" title ="Bump 'n' Jump" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bnzabros" title ="Bonanza Bros (US, Floppy DS3-5000-07d?)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bnzabrsj" title ="Bonanza Bros (Japan, Floppy DS3-5000-07b)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boblbobl" title ="Bobble Bobble" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bodyslam" title ="Body Slam (8751 317-unknown)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bogeyman" title ="Bogey Manor" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boggy84" title ="Boggy '84" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bombbee" title ="Bomb Bee" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bombjac2" title ="Bomb Jack (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bombjack" title ="Bomb Jack (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bombkick" title ="Bomb Kick" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bomblord" title ="Bomber Lord (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bombrman" title ="Bomber Man (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bongo" title ="Bongo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bonkadv" title ="B.C. Kid / Bonk's Adventure / Kyukyoku!! PC Genjin" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bonzeado" title ="Bonze Adventure (World, Older)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bonzeadu" title ="Bonze Adventure (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bonzeadv" title ="Bonze Adventure (World, Newer)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boogwina" title ="Boogie Wings (Asia v1.5, 92.12.07)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boogwing" title ="Boogie Wings (Euro v1.5, 92.12.07)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boomrang" title ="Boomer Rang'r / Genesis" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bootcamp" title ="Boot Camp" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boothill" title ="Boot Hill" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="borench" title ="Borench" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="borntofi" title ="Born To Fight" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bosco" title ="Bosconian (new version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boscomd" title ="Bosconian (Midway, new version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boscomdo" title ="Bosconian (Midway, old version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boscoo" title ="Bosconian (old version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boscoo2" title ="Bosconian (older version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="botanic" title ="Botanic" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="botss" title ="Battle of the Solar System (rev. 1.1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bottom9" title ="Bottom of the Ninth (version T)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bottom9n" title ="Bottom of the Ninth (version N)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bouldash" title ="Boulder Dash / Boulder Dash Part 2 (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bouldshj" title ="Boulder Dash / Boulder Dash Part 2 (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bounty" title ="The Bounty" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bowler" title ="4 Player Bowling Alley" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bowlrama" title ="Bowl-O-Rama" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="boxer" title ="Boxer (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="boxingb" title ="Boxing Bugs" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="boxyboy" title ="Boxy Boy (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bradley" title ="Bradley Trainer" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brain" title ="Brain" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brapboys" title ="B.Rap Boys (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brapboysj" title ="B.Rap Boys Special (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brdrlinb" title ="Borderline (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="brdrline" title ="Borderline" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="breakers" title ="Breakers" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="breakrev" title ="Breakers Revenge" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="breywood" title ="Breywood (Japan revision 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brickyrd" title ="Brickyard" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brickzn" title ="Brick Zone (v5.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="brickzn3" title ="Brick Zone (v4.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="brival" title ="Burning Rival (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brivalj" title ="Burning Rival (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brix" title ="Brix" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="brkthru" title ="Break Thru (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brkthruj" title ="Kyohkoh-Toppa (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bronx" title ="Bronx" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="brubber" title ="Burnin' Rubber" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="brutforc" title ="Brute Force" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="brvblade" title ="Brave Blade (JAPAN)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bshark" title ="Battle Shark (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bsharkj" title ="Battle Shark (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bsktball" title ="Basketball" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bssoccer" title ="Back Street Soccer" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bstars" title ="Baseball Stars Professional" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bstars2" title ="Baseball Stars 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="btchamp" title ="Beat the Champ (GV053 UAA01)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="btime" title ="Burger Time (Data East set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="btime2" title ="Burger Time (Data East set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="btimem" title ="Burger Time (Midway)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="btlecity" title ="Vs. Battle City" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="btlfield" title ="Battle Field (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="btlfildb" title ="Battle Field (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="btlkroad" title ="Battle K-Road" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="btltryst" title ="Battle Tryst (ver JAC)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="btoads" title ="Battle Toads" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubblem" title ="Bubble Memories: The Story Of Bubble Bobble III (Ver 2.4O 1996/02/15)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubblemj" title ="Bubble Memories: The Story Of Bubble Bobble III (Ver 2.3J 1996/02/07)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubbles" title ="Bubbles" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubblesp" title ="Bubbles (prototype version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubblesr" title ="Bubbles (Solid Red label)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubbletr" title ="Bubble Trouble" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubbobr1" title ="Bubble Bobble (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bubl2000" title ="Bubble 2000" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bublbob1" title ="Bubble Bobble (older)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bublbob2" title ="Bubble Bobble II (Ver 2.5O 1994/10/05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bublbobl" title ="Bubble Bobble" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bublbobr" title ="Bubble Bobble (US with mode select)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bubsympe" title ="Bubble Symphony (Ver 2.5O 1994/10/05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubsymph" title ="Bubble Symphony (Ver 2.5J 1994/10/05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bubsympu" title ="Bubble Symphony (Ver 2.5A 1994/10/05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buccanra" title ="Buccaneers (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buccanrs" title ="Buccaneers (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buckrog" title ="Buck Rogers: Planet of Zoom" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buckrogn" title ="Buck Rogers: Planet of Zoom (not encrypted)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bucky" title ="Bucky O'Hare (ver EA)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buckyua" title ="Bucky O'Hare (ver UA)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buggyb1" title ="Buggy Boy (Single Monitor)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="buggyboy" title ="Buggy Boy" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="buggychl" title ="Buggy Challenge" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="buggycht" title ="Buggy Challenge (Tecfri)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="bullet" title ="Bullet (FD1094 317-0041)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bullfgt" title ="Bullfight" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bullfgtr" title ="Bull Fighter" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bullfgts" title ="Bull Fighter (Sega)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bullsdrt" title ="Bulls Eye Darts" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="buraiken" title ="Hissatsu Buraiken (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="burglarx" title ="Burglar X" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="buriki" title ="Buriki One (rev.B)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="burnforc" title ="Burning Force (Japan new version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="burnfrco" title ="Burning Force (Japan old version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="burningf" title ="Burning Fight (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="burningh" title ="Burning Fight (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="butasan" title ="Butasan (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bwcasino" title ="Boardwalk Casino" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bwidow" title ="Black Widow" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="bwing" title ="B-Wings (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bwings" title ="Battle Wings" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="bzone" title ="Battle Zone (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bzone2" title ="Battle Zone (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="bzonec" title ="Battle Zone (cocktail)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cabal" title ="Cabal (World, Joystick version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cabala" title ="Cabal (Alpha Trading)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cabalbl" title ="Cabal (bootleg of Joystick version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cabalus" title ="Cabal (US set 1, Trackball version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cabalus2" title ="Cabal (US set 2, Trackball version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cabaret" title ="Cabaret" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cachat" title ="Cachat (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cadanglr" title ="Angler Dangler (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cadash" title ="Cadash (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cadashf" title ="Cadash (France)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cadashi" title ="Cadash (Italy)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cadashj" title ="Cadash (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cadashu" title ="Cadash (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cairblad" title ="Change Air Blade (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="calibr50" title ="Caliber 50" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="calipso" title ="Calipso" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="calorie" title ="Calorie Kun vs Moguranian" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="calorieb" title ="Calorie Kun vs Moguranian (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="calspeda" title ="California Speed (Version 1.0r7a 3/4/98)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="calspeed" title ="California Speed (Version 2.1a, 4/17/98)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cameltrj" title ="Cameltry (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cameltry" title ="Cameltry (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="camltrua" title ="Cameltry (US, alt sound)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="candance" title ="Cannon Dancer (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cannball" title ="Cannon Ball" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cannonb" title ="Cannon Ball (Crazy Climber hardware)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cannonb2" title ="Cannonball (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="canvas" title ="Canvas Croquis" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="canyon" title ="Canyon Bomber" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="canyonp" title ="Canyon Bomber (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="capbowl" title ="Capcom Bowling (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="capbowl2" title ="Capcom Bowling (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="capbowl3" title ="Capcom Bowling (set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="capbowl4" title ="Capcom Bowling (set 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="capitol" title ="Capitol" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="captaven" title ="Captain America and The Avengers (Asia Rev 1.9)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captavna" title ="Captain America and The Avengers (Asia Rev 1.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captavne" title ="Captain America and The Avengers (UK Rev 1.4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captavnj" title ="Captain America and The Avengers (Japan Rev 0.2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captavnu" title ="Captain America and The Avengers (US Rev 1.9)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captavuu" title ="Captain America and The Avengers (US Rev 1.6)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captcomj" title ="Captain Commando (Japan 911202)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captcomm" title ="Captain Commando (World 911014)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="captcomu" title ="Captain Commando (US 910928)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="caractn" title ="Car Action" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cardline" title ="Card Line" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="carjmbre" title ="Car Jamboree" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="carnevil" title ="CarnEvil" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="carnival" title ="Carnival (upright)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="carnvckt" title ="Carnival (cocktail)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="carpolo" title ="Car Polo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cartfury" title ="Cart Fury" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cascade" title ="Cascade" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="castfant" title ="Astro Fantasia (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="catapult" title ="Catapult" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="catch22" title ="Catch-22 (version 8.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="caterplr" title ="Caterpillar" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="catmousa" title ="Cat and Mouse (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="catnmous" title ="Cat and Mouse (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="catt" title ="Catt (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cavelon" title ="Cavelon" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cavenger" title ="Cosmic Avenger" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cawing" title ="Carrier Air Wing (World 901012)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cawingj" title ="U.S. Navy (Japan 901012)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cawingr1" title ="Carrier Air Wing (World 901009)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cawingu" title ="Carrier Air Wing (US 901012)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbaj" title ="Cool Boarders Arcade Jam" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cball" title ="Cannonball (Atari, prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbasebal" title ="Capcom Baseball (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbdash" title ="Boulder Dash (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cbnj" title ="Bump N Jump (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cbombers" title ="Chase Bombers" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbtime" title ="Burger Time (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cburnrb2" title ="Burnin' Rubber (Cassette, set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cburnrub" title ="Burnin' Rubber (Cassette, set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cbuster" title ="Crude Buster (World FX version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbusterj" title ="Crude Buster (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cbusterw" title ="Crude Buster (World FU version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccasino" title ="Chinese Casino [BET] (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccastle2" title ="Crystal Castles (version 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccastle3" title ="Crystal Castles (version 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccastles" title ="Crystal Castles (version 4)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccboot" title ="Crazy Climber (bootleg set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ccboot2" title ="Crazy Climber (bootleg set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cchasm" title ="Cosmic Chasm (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cchasm1" title ="Cosmic Chasm (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cclimber" title ="Crazy Climber (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cclimbr2" title ="Crazy Climber 2 (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cclimbrj" title ="Crazy Climber (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cclmbr2a" title ="Crazy Climber 2 (Japan Harder)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cdiscon1" title ="Disco No.1 (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="centipd2" title ="Centipede (revision 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="centipdb" title ="Centipede (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="centiped" title ="Centipede (revision 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="centtime" title ="Centipede (1 player, timed)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cerberus" title ="Cerberus" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cexplore" title ="Explorer (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cfghtice" title ="Fighting Ice Hockey (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cfishing" title ="Fishing (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cflyball" title ="Flying Ball (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cgangpzj" title ="Cosmo Gang the Puzzle (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cgangpzl" title ="Cosmo Gang the Puzzle (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cgraplop" title ="Graplop (aka Cluster Buster) (Cassette, set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cgraplp2" title ="Graplop (aka Cluster Buster) (Cassette, set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="chainrec" title ="Chain Reaction (World, Version 2.2, 1995.09.25)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="chaknpop" title ="Chack'n Pop" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="challeng" title ="Challenger" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="chameleo" title ="Chameleon" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="champb2a" title ="Champion Baseball II (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champbas" title ="Champion Baseball" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champbb2" title ="Champion Baseball II (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champbbj" title ="Champion Baseball (Japan set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champbja" title ="Champion Baseball (Japan set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champbwl" title ="Championship Bowling" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="champwr" title ="Champion Wrestler (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champwrj" title ="Champion Wrestler (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="champwru" title ="Champion Wrestler (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="changela" title ="Change Lanes" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="changes" title ="Changes" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="changesa" title ="Changes (EME license)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="charlien" title ="Charlie Ninja" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chasehq" title ="Chase H.Q. (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="chasehqj" title ="Chase H.Q. (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="chboxing" title ="Champion Boxing" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="checkmaj" title ="Check Man (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="checkman" title ="Check Man" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="checkmat" title ="Checkmate" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cheekyms" title ="Cheeky Mouse" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cheesech" title ="Cheese Chase" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chelnov" title ="Chelnov - Atomic Runner (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chelnovj" title ="Chelnov - Atomic Runner (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chelnovu" title ="Chelnov - Atomic Runner (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chewing" title ="Chewing Gum" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cheyenne" title ="Cheyenne (version 1.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chikij" title ="Chiki Chiki Boys (Japan 900619)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chiller" title ="Chiller (version 3.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chimerab" title ="Chimera Beast (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chinagat" title ="China Gate (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chinatwn" title ="China Town (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chindrag" title ="Zhong Guo Long (Japan, V021J)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chinher2" title ="Chinese Hero (older)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="chinhero" title ="Chinese Hero" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="chinmoku" title ="Mahjong Chinmoku no Hentai (Japan 900511)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chmplst2" title ="Long Hu Bang II" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chokchok" title ="Choky! Choky!" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="choko" title ="Choko (Japan 010820)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chopper" title ="Chopper I (US set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="choppera" title ="Chopper I (US set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="chopperb" title ="Chopper I (US set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="chplft" title ="Choplifter" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chplftb" title ="Choplifter (alternate)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chplftbl" title ="Choplifter (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chqflag" title ="Chequered Flag" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="chqflagj" title ="Chequered Flag (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="chugokur" title ="Zhong Guo Long (Japan, V020J)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chukatai" title ="Chuka Taisen (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chukataj" title ="Chuka Taisen (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chukatau" title ="Chuka Taisen (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chwrestl" title ="Champion Pro Wrestling" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="chwy" title ="Highway Chase? (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="circus" title ="Circus" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="circusc" title ="Circus Charlie (Selectable level set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="circusc2" title ="Circus Charlie (Selectable level set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="circusc3" title ="Circus Charlie (No level select)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="circuscc" title ="Circus Charlie (Centuri)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="circusce" title ="Circus Charlie (Centuri, earlier)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cischeat" title ="Cisco Heat" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="citybmrj" title ="City Bomber (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="citybomb" title ="City Bomber (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="citycon" title ="City Connection (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="citycona" title ="City Connection (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="citylove" title ="City Love (Japan 860908)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="ckong" title ="Crazy Kong (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckonga" title ="Crazy Kong (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckongalc" title ="Crazy Kong (Alca bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckongb" title ="Crazy Kong (Alternative levels)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckongjeu" title ="Crazy Kong (Jeutel bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckongo" title ="Crazy Kong (Orca bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="ckongs" title ="Crazy Kong (Scramble hardware)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="clapapa" title ="Rootin' Tootin' (aka La.Pa.Pa) (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="clapapa2" title ="Rootin' Tootin' (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="claypign" title ="Clay Pigeon (version 2.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="clayshoo" title ="Clay Shoot" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="clbowl" title ="Coors Light Bowling" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cleopatr" title ="Cleopatra Fortune (Ver 2.1J 1996/09/05)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cloak" title ="Cloak & Dagger (rev 5)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cloakfr" title ="Cloak & Dagger (French)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cloakgr" title ="Cloak & Dagger (German)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cloaksp" title ="Cloak & Dagger (Spanish)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="clocknch" title ="Lock'n'Chase (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cloud9" title ="Cloud 9 (prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="clowns" title ="Clowns (rev. 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="clowns1" title ="Clowns (rev. 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="clshrdst" title ="Clash-Road (Status license)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="clshroad" title ="Clash-Road" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cltchitr" title ="Clutch Hitter (set 2, US, FD1094 317-0176)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cltchtrj" title ="Clutch Hitter (set 1, Japan, FD1094 317-0175)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="club90s" title ="Mahjong CLUB 90's (set 1) (Japan 900919)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="club90sa" title ="Mahjong CLUB 90's (set 2) (Japan 900919)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cluckypo" title ="Lucky Poker (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cluclu" title ="Vs. Clu Clu Land" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cm2841a" title ="Cherry Master II v8.41 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cm2v841" title ="Cherry Master II v8.41 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cmehyou" title ="Mahjong Circuit no Mehyou (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cmissnx" title ="Mission-X (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cmv801" title ="Cherry Master (v8.01)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cnights2" title ="Night Star (Cassette, set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cnightst" title ="Night Star (Cassette, set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cninja" title ="Caveman Ninja (World revision 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cninja0" title ="Caveman Ninja (World revision 0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cninjau" title ="Caveman Ninja (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cntsteer" title ="Counter Steer" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cobracmj" title ="Cobra-Command (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cobracom" title ="Cobra-Command (World revision 5)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="colmns97" title ="Columns '97 (JET 961209 V1.000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="colony7" title ="Colony 7 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="colony7a" title ="Colony 7 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="colt" title ="Colt" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="column2j" title ="Columns II: The Voyage Through Time (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="columns" title ="Columns (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="columns2" title ="Columns II: The Voyage Through Time (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="columnsj" title ="Columns (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="columnsu" title ="Columns (US, cocktail)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="combasc" title ="Combat School (joystick)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="combascb" title ="Combat School (bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="combascj" title ="Combat School (Japan trackball)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="combasct" title ="Combat School (trackball)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="combat" title ="Combat (version 3.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="commandj" title ="Senjou no Ookami" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="commando" title ="Commando (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="commandu" title ="Commando (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="commandw" title ="Command War - Super Special Battle & War Game (Ver 0.0J) (Prototype)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="commsega" title ="Commando (Sega)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="comotion" title ="Comotion" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="compglfo" title ="Competition Golf Final Round (old version)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="compgolf" title ="Competition Golf Final Round (revision 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="complexx" title ="Complex X" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="condor" title ="Condor" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="congo" title ="Congo Bongo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="conquer" title ="Conquer" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="contcirc" title ="Continental Circus (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="contcrcu" title ="Continental Circus (US set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="contcrua" title ="Continental Circus (US set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="contra" title ="Contra (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="contrab" title ="Contra (US bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="contraj" title ="Contra (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="contrajb" title ="Contra (Japan bootleg)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cookbib" title ="Cookie & Bibi" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cookbib2" title ="Cookie & Bibi 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cookbib3" title ="Cookie & Bibi 3" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cookrace" title ="Cook Race" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="coolmini" title ="Cool Minigame Collection" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="coolpool" title ="Cool Pool" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="coolridr" title ="Cool Riders" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="cop01" title ="Cop 01 (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cop01a" title ="Cop 01 (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="copsnrob" title ="Cops'n Robbers" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cosmccop" title ="Cosmic Cop (World)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cosmica" title ="Cosmic Alien" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmica2" title ="Cosmic Alien (older)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmicg" title ="Cosmic Guerilla" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmicm2" title ="Cosmic Monsters 2" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmicmo" title ="Cosmic Monsters" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmo" title ="Cosmo" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cosmogng" title ="Cosmo Gang the Video (US)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cosmognj" title ="Cosmo Gang the Video (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cosmos" title ="Cosmos" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cotton" title ="Cotton (set 3, World, FD1094 317-0181a)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cotton2" title ="Cotton 2 (JUET 970902 V1.000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cottonbm" title ="Cotton Boomerang (JUET 980709 V1.000)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cottong" title ="Cotocoto Cottong" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="cottonj" title ="Cotton (set 1, Japan, FD1094 317-0179a)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cottonu" title ="Cotton (set 2, US, FD1094 317-0180)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="countrb2" title ="Counter Run (bootleg set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="countrnb" title ="Counter Run (bootleg set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="countrun" title ="Counter Run" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="countryc" title ="Country Club" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="couple" title ="The Couples (Set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="couplei" title ="The Couples (Set 3)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="couplep" title ="The Couples (Set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="cppicf" title ="Peter Pepper's Ice Cream Factory (Cassette, set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cppicf2" title ="Peter Pepper's Ice Cream Factory (Cassette, set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cprobowl" title ="Pro Bowling (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cprogolf" title ="Pro Golf (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cprosocc" title ="Pro Soccer (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cptennis" title ="Pro Tennis (Cassette)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="cracksht" title ="Crackshot (version 2.0)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="crash" title ="Crash" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="crater" title ="Crater Raider" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" joy ="4" }
game { rom ="crazyblk" title ="Crazy Blocks" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" joy ="4" }
game { rom ="crazycop" title ="Crazy Cop (Japan)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="crazyfgt" title ="Crazy Fight" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="crbalon2" title ="Crazy Balloon (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="crbaloon" title ="Crazy Balloon (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="v" }
game { rom ="crgolf" title ="Crowns Golf (set 1)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }
game { rom ="crgolfa" title ="Crowns Golf (set 2)" params ="-0ONE-0TWO-0TRE-1ALL-0FAV" orientation ="h" }