-
Notifications
You must be signed in to change notification settings - Fork 16
/
whatsnew.html
4163 lines (3988 loc) · 268 KB
/
whatsnew.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FB Alpha - What's New</title>
<meta charset="UTF-8" />
<style type="text/css">
body {
font-family: verdana, lucida, sans-serif;
font-size: 0.8em;
color: #333333;
background-color: #CE6A57;
margin: 0em;
text-align: center;
}
a:link {
color: #C03029;
text-decoration: none;
}
a:visited {
color: #C03029;
text-decoration: none;
}
a:hover {
color: #333333;
text-decoration: underline;
}
a:active {
color: #C03029;
text-decoration: underline;
}
a.active:link {
color: #C03029;
text-decoration: none;
font-weight:bold;
font-style: italic;
}
a.active:visited {
color: #C03029;
text-decoration: none;
font-weight:bold;
font-style: italic;
}
a.active:hover {
color: #333333;
text-decoration: underline;
font-weight:bold;
font-style: italic;
}
a.active:active {
color: #C03029;
text-decoration: underline;
font-weight:bold;
font-style: italic;
}
h2 {
color: #C03029;
font-size: 1.4em;
margin-top: 1em;
}
h3 {
color: #FFFFFF;
font-size: 1.2em;
margin-top: 3em;
background-color: #aaaaaa;
width: 6.0em;
padding: 0.5em;
border-radius: 10px;
text-align: center;
}
h4 {
color: #C03029;
font-size: 1.0em;
}
li {
padding: 0.1em;
}
.outer {
width: 78em;
margin: 0em auto;
text-align: left;
padding: 0.7em 0.7em 0.7em 0.7em;
background-color: #FFFFFF;
border: 0.08em solid #808080;
margin-top: 1em;
margin-bottom: 1em;
}
.note {
color: #C03029;
padding: 1em;
background-color: #DDD9D9;
font-style: italic;
}
</style>
</head>
<body>
<div class="outer">
<h2>FB Alpha - What's New</h2>
<p><a href="https://www.fbalpha.com">https://www.fbalpha.com</a><br />
<a href="http://neosource.1emu.net/forums">http://neosource.1emu.net/forums</a></p>
<h3>v0.2.97.42</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Restore MSVC full optimisation (should see slightly faster performance) [Barry]</li>
</ul>
<h3>v0.2.97.41</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Speed-up the Game List (F6) window considerably [dink]</li>
<li>Fixed 16-bit rendering for most games on Konami and Metro hardware [iq_132]</li>
<li>Fixed 16-bit RGB555 rendering in Taito F3 [dink]</li>
<li>Separate Force 16-Bit Video option between D3D Enhanced blitter and DX9 Alt blitter [Barry]</li>
<li>Fixed scfinals coin-up issue with a kludge [dink]</li>
<li>Fixed missing background layer in Bio-ship Paladin level 2 [dink]</li>
<li>Fixed an issue with Pururun's sound [dink]</li>
<li>Massive Taito-F3 video fix-a-thon<ul>
<li>Arabian Magic: ugly line down the screen at stage start, caused by off-by-one clipping</li>
<li>Arabian Magic: missing text in the cutscenes</li>
<li>Puzzle Bobble 4: missing end-of-round you won/lost animations</li>
<li>Land Maker: missing you won/lost text</li>
<li>Land Maker: tilemap alignment issues</li>
<li>Grid Seeker: missing continue screen</li>
</ul></li>
<li>Remove unneeded DWM and MDI code, causes issues in Win10 [Barry]</li>
<li>Updated modern Windows builds to use the Segoe font recommended by Microsoft [Barry]</li>
<li>Fixed broken background issue in Ashura Blaster [dink]</li>
<li>Fixed animated background in Universal's Space Raider [dink]</li>
<li>Added experimental SekBurnUntilInt() code to the 68k core [dink]</li>
<li>Fixed layer alignments and screensize in Ajax / Typhoon [dink]</li>
<li>Fix shadow/highlights for 2-cell column vscroll in Megadrive, in particular fixes the intro to Trouble Shooter / Battle Mania [dink]</li>
<li>Fix Super Real Darwin sprite:tile priorities [dink]</li>
<li>Fix timing inconsistencies / framerate issues on some Win 10 machines (high precision timer) [dink]</li>
<li>Fix Galaxian-custom sound that dink broke [Barry]</li>
<li>Add ability to rotate player digitally in Forgotten Worlds [dink]</li>
<li>Fix layer priorities in G-Loc (gloc) [Barry]</li>
<li>Fix cutscene crystal ball in some sets of Altered Beast [Barry]</li>
<li>Fixed broken sound in Puzzle King (4in1boot) [dink]</li>
<li>Disabled Force 16-bit emulation by default, can still be enabled by user, but causes issues with some systems, eg, Taito F3 [Barry]</li>
<li>Made the Enhanced blitter the default for normal builds [Barry]</li>
<li>Made force flip a default option for the Direct Draw blitter [Barry]</li>
<li>Set the full-screen resolution to the desktop resolution on first program start [Barry]</li>
<li>Fixed blue squares in Street Fighter Alpha 2 high score entry screen [Barry]</li>
<li>Added a message to install the Direct X runtimes if the DLLs are missing when starting the DirectX9 blitters, removed the message that showed at every FB Alpha start [Barry]</li>
<li>Added ability to choose which monitor (separated for Horizontal and Vertical games) to use for fullscreen in the DirectX 9 blitters [Barry]</li>
<li>Added alpha transparencies to Raiga Strato Fighter [iq_132]</li>
<li>Fixed video offset issue in Gundhara [dink]</li>
<li>Fixed alpha blending and many sprite:tile priority issues in Nitro Ball [dink]</li>
<li>Fixed MSM6295 Banking in Boogie Wings [dink]</li>
<li>For debug builds: show negative numbers with the debug counter ('m' and 'n') [dink]</li>
<li>Fixed the road and sky levels (broken raster effects) in Ed Randy / The Cliffhanger [dink]</li>
<li>Fixed "stuck" sprites in Pitfall II on Sega System 1 hardware [dink]</li>
<li>Fixed slow music tempo when sound rate set to 44100 in Contra, Jaleco Megasystem 1 games, Konami's Surprise Attack and several Data East 16-Bit games [dink]</li>
<li>Fixed strange music tempo in Route 16 [dink]</li>
<li>Fixed un-smooth scrolling and cut-off end-of-level message in Konami's Surprise Attack [dink]</li>
<li>Fixed video offset issue in X-Multiply m81 version [dink]</li>
<li>Ported the Namco C140 sound core to FBAlpha [dink]</li>
<li>Added resampling to the Konami K054539 Soundcore, now most later Konami games (Xexex, Moo Mesa, Bucky O'Hare, etc) will sound great at any user-selected soundrate [dink]</li>
<li>Fixed occasional sprite flickering in Mystic Warriors [dink]</li>
<li>Fixed occasional freeze in Atomic Robo-Kid when playing via keyboard and up+down or left+right is pressed at the same time [dink]</li>
<li>Fixed music, graphics, timing and color issues in Psychic 5 [dink]</li>
<li>Added CPU_IRQSTATUS_HOLD support to m6809 cpu core [dink]</li>
<li>Add watchdog device. Hook it up to Momoko 120% driver as an example. [iq_132]</li>
<li>Use real MCU for Nekketsu Kouha Kunio-kun, Guardian/Get Star, Fairy Land Story, Rumba Lumber, Onna Sansirou - Typhoon Gal, Chack'n Pop, Golden Axe (set 2, US) [Barry]</li>
<li>Added BurnRandom() / BurnRandomScan(), a predictable random number generator based on old BSD LCG [dink]</li>
<li>Hooked up BurnRandom() to games using rand() to allow for reliable input recordings and states [dink]</li>
<li>Enabled Alpha Transparency effects in Mystic Warriors [dink]</li>
<li>Fixed music issues in DJ Boy [dink]</li>
<li>Fixed a palette issue and possibly(?) fixed a timing issue in Heavy Unit [dink]</li>
<li>EEPROM saves path now configurable [Barry]</li>
<li>General source tidy-up/maintenance, and conversion to BurnMalloc/BurnFree [Barry]</li>
<li>Add support for the new format hiscore.dat file [Barry]</li>
<li>Fix issue with IPS Manager sometimes saving ini file incorrectly [Barry]</li>
<li>Added Generate All .dat file function [Barry]</li>
<li>Added checkbox filters to the HTML debug log, and added ten new output levels [Barry]</li>
<li>Added extra compile step to link drivers separately to avoid Windows 32KB process limit [Barry]</li>
<li>Updated the documentation [Barry]</li>
</ul>
<!-- new drivers -->
<h4>New drivers</h4>
<ul>
<li>Add driver for Mappy, Dig Dug II, Super Pacman, Pac & Pal, Grobda and The Tower of Druaga [iq_132, dink]</li>
<li>Add driver for Gaplus / Galaga 3 [iq_132]</li>
<li>Added driver for Toypop and Libble Rabble on misc. Namco Hardware [iq_132]</li>
<li>Added driver for Cannon Ball, Magix / Rock and Rock Tris on Yun Sung 8 hardware [iq_132]</li>
<li>Added driver for US Games trivia [iq_132]</li>
<li>Added driver for Double Wings on Data East 16-bit Hardware [iq_132]</li>
<li>Added driver for Assault, Burning Force, Cosmo Gang: The Video, Dragon Saber, Mirai Ninja, Valkyrie no Densetsu, Ordyne, Phelios, Rolling Thunder 2, Marvel Land, Metal Hawk, Kyuukai Douchuuki, Super World Stadium 92 and 93, Steel Gunner, Steel Gunner 2, Dirt Fox, Finest Hour and Lucky and Wild on Namco System 2 Hardware [iq_132, dink]</li>
<li>Add driver for Time Soldiers/Battle Field, Sky Soldiers, Sky Adventure, Gang Wars, Super Champion Baseball on Alpha68k II and VI hardware [iq_132, dink]</li>
<li>Added driver for Sauro and Tricky Doc [iq_132]</li>
<li>Added driver and sound core for Wiping / Rug Rats [iq_132, dink]</li>
</ul>
<!-- new game additions to existing drivers -->
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Dottori-Man Jr. to the Dottori Kun driver [hap, JacKc]</li>
<li>Added Revenger '84 to the EPOS driver [dink]</li>
<li>Added Ultimate Mortal Kombat Trilogy Hack r.5149 to Megadrive [dink]</li>
<li>Added Shinobi III M.I.J.E.T. Enhancement Hack to Megadrive [dink]</li>
</ul>
<!-- clones and updated romsets in drivers -->
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Added clone of Gals Panic DX (Asia) [arcade mod bios]</li>
<li>Added American Horseshoes (Taito-L) - was missing from the .40 release by accident [dink]</li>
<li>Added clone of Macross II (Korea) [CoolMod, CS, The Dumping Union, JacKc]</li>
<li>Added clone of The Last Blade (Special 2017, hack) [GSC20017, JacKc, iq_132]</li>
<li>Added clone of Street Fighter II: The World Warrior (Japan 911210, CPS-B-17) [ShouTime, Bonky, MetalliC, JacKc]</li>
<li>Added clone of Operation Wolf (Japan, SC) [ShouTime, JacKc]</li>
<li>Added clone of Operation Thunderbolt (Japan, SC) [ShouTime, JacKc]</li>
<li>Added clone of Silk Worm (prototype?) [frsj8112, JacKc]</li>
<li>Added clone of Double Dragon (Special 2017, hack) [JacKc, iq_132]</li>
<li>Added clone of Palamedes (US) [caius, The Dumping Union, JacKc]</li>
<li>Added Nebulous Bee, clone of Galaga [JacKc]</li>
<li>Added clone of Jackal (bootleg, Rotary Joystick) [f205v, The Iron Goat, JacKc]</li>
<li>Added clone of Rastan Saga (Japan Rev 1) [Michel BLANCO, JacKc]</li>
<li>Added clone of Captain Silver (Japan, revision 1) [Apocalypse, The Dumping Union, JacKc]</li>
<li>Added clone of Super Street Fighter II to the CPS-2 driver [Barry, idc/Team Avalaunch]</li>
<li>Added clone of Bucky O'Hare (ver JA) [ShouTime, The Dumping Union, JacKc]</li>
<li>Added Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin (Special 2017, hack) [GSC2007, JacKc]</li>
<li>Updated The King of Fighters '98 (Combo) to Ver. 2017/04/08 [JacKc]</li>
<li>Sync. romsets with MAME 0.187 [Barry]</li>
</ul>
<h3>v0.2.97.40</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Added Favorites feature: mark games as favorite from the Game Info window, or right-click in the list. Toggle favorites mode in the "Filters" section [dink]</li>
<li>Added right-click context menu (Play game, View in Progetto Emma, Game Info and Mark as Favorite) [Barry]</li>
<li>Added a gear-shifter display for Chequered Flag, Contental Circus, Super Chase, Chase HQ, SCI, Double Axle, Racing Beat, Top Speed, KonamiGT / RF2, OutRun / Turbo Outrun and Power Drift. Can be enabled/disabled in Misc -> Options. [dink]</li>
<li>Hooked up newly dumped sound-MCU's in Fire Shark, Vimana and Teki Paki, giving these games sound! Thank you CapsOff!! [dink]</li>
<li>Added bSkipStartupCheck - hidden .ini option for developers or those who never scan their romsets [dink]</li>
<li>Fixed odd-word/long reads and writes in the m68000 cpu interface which in turn fixes the nasty 68x020 bug that has been plaguing us for ages. This fixes freeze-ups in Asura Buster and other 68ec020-based games. [iq_132/dink]</li>
<li>Fixed in Asura Buster / Blade: Sprite & tile glitches, music synchronization [dink]</li>
<li>Fixed several issues which caused FBAlpha to crash when loading romsets with missing roms [dink]</li>
<li>Fixed Tail 2 Nose missing backgrounds [dink]</li>
<li>Added TMS32010 cpu core for the Flying Shark/Twin Cobra/Wardner drivers [dink]</li>
<li>Fixed Demon World sprite and tile offsets, also hooked up TMS32010 cpu and removed the no-TMS32010 hack [iq_132 / dink]</li>
<li>Fixed Flicky on SG-1000 hw [dink]</li>
<li>Fixed default eeprom settings for Charlie Ninja [dink]</li>
<li>Fixed sound in regulusu [dink]</li>
<li>Fixed Head Panic default settings, game is now playable [dink]</li>
<li>Fixed broken graphics/corruption in Mille Miglia 2: Great 1000 Miles Rally [dink]</li>
<li>Increased the Icon limit [dink]</li>
<li>Fixed P2 Start in Asterix [dink]</li>
<li>Added 1-bit dac/key clicker, map joy to cursor keys, Swap tape side A/B and lots of games to the MSX driver [dink]</li>
<li>Improved savestate stability/reliability with the MSX driver [dink]</li>
<li>Improved the MSM5205 interface w/MSM5205NewFrame() and MSM5205UpdateScanline(), for games that need a 256 interleave. [dink]</li>
<li>Fixed diagonal movements in Toaplan/Taito's GetStar / Guardian [dink]</li>
<li>Fixed a crash-scenario w/DonPachi on ARM and 64-bit systems [dink]</li>
<li>Fixed sound in Speed Spin [iq_132]</li>
<li>Added encrypted DataEast cpus to the M6502 core [iq_132]</li>
<li>Fixed service mode, sprite offsets and corrupt tilemaps in G.I.Joe [dink]</li>
<li>Fixed audio issues, movement issues, slowdowns in Captain Silver [dink]</li>
<li>Mega-update to the ES5506 core: dynamic resampling, volume functions [iq_132], 5505-interface fix, clipping issues and savestate support [dink]</li>
<li>Add NEC-V60 CPU Core [iq_132 / Romhack]</li>
<li>Add UPD-7725 DSP Core [iq_132]</li>
<li>Fixed sound, video issues and crash issues in Welltris [dink]</li>
<li>Fixed sound and hooked up proper analogue inputs for Taito's Super Chase [dink]</li>
<li>Fixed DAC speech and reboot issues in Baraduke / Alien Sector [dink]</li>
<li>Fixed missing sounds in Pac-Land and Sky Kid [dink]</li>
<li>Fixed a bug in the M6502 core where it wouldn't save the subtype and instruction handler [dink]</li>
<li>Added rotation code for Caliber 50 and DownTown [dink]</li>
<li>Fixed video layer offsets in namcos86 driver, improving video for Rolling Thunder, Hopping Mappy and SkyKid DX [dink]</li>
<li>Fixed Taito/Toaplan's RallyBike titlescreen [dink]</li>
<li>Added M6502ReleaseSlice() the the M6502 cpu core interface [dink]</li>
<li>Add UPD-7810 CPU Core [iq_132]</li>
<li>Fixed Thunder Cross 2 Japan and Asian versions [dink]</li>
<li>Fixed dim palette in Lightning Fighters [dink]</li>
<li>Enhanced the glass effect in Surprise Attack [dink]</li>
<li>Fixed grapics issues in Konami's Xexex: Sprite masking effect in intro, flashes between scene changes, offset issue in the highscore table, missing effect in Japanese version continue screen [dink]</li>
<li>Added new tilemap system with all the bells & whistles [iq_132]</li>
<li>Fixed dips in Dam Busters [dink]</li>
<li>Fixed gameover animation in Vapor Trail [rb6502]</li>
<li>Fixed titlescreen raster effect in R-Type Leo [dink]</li>
<li>Fixed sprite glitching in Shogun Warriors [dink]</li>
<li>Fixed strangely flipped tiles in Cosmic Cop [dink]</li>
<li>Ported latest i8051 core with DS5002FP support [dink]</li>
<li>Added support for 6821 PIA devices [dink]</li>
<li>Added apan callback support to the K054539 soundchip [dink]</li>
<li>Fixed service mode in Xexex. Bucky O`Hare and Moo Mesa [dink]</li>
<li>Fixed tile priority issue in Shackled [dink]</li>
<li>Re-wrote driver for Shadow Force and added raster effects [iq_132]</li>
<li>Re-wrote driver for Exed Exes [iq_132]</li>
<li>Fixed screen priority & graphics issues in Chase HQ, SCI and Night Striker [dink]</li>
<li>Fixed DIPs for Mars by Artic [dink]</li>
<li>Added proper MCU emulation on Heavy Barrel with the new i8051 core [dink]</li>
<li>Fixed Speed Coin - freezes up when the coin breaks if audio set to 48khz [dink]</li>
<li>timer.cpp: added ability to attach a timer to a NULL cpu for for instances where the main cpu cycles possibly vary [dink]</li>
<li>Added BDF_GAME_NOT_WORKING flag to burn.h [dink]</li>
<li>Fixed 8-way movements in Jump Shot [dink]</li>
<li>System 16 Updates [Barry]<ul>
<li>Added support for the Sega 315 5195 Memory Mapper chip<ul>
<li>Hooked up in Sega System 16B driver</li>
<li>Hooked up in Sega OutRun driver</li>
<li>Hooked up in Sega System 18 driver</li>
<li>Added Moonwalker and clones to the Sega System 18 driver now they can be supported</li>
</ul></li>
<li>Properly emulate the shadow/hilight palettes in Sega System 16 and associated drivers</li>
<li>Emulate priority buffer for Y-Board driver when mixing in System 16B sprites</li>
<li>Added Lock On (Philko) to the Sega System 16B driver</li>
<li>Fixed tile banking in some Altered Beast sets</li>
<li>Emulated the I8751 MCU in the parent set of Altered Beast</li>
<li>Emulated the I8751 MCU in the parent set of Golden Axe</li>
<li>Emulated the I8751 MCU in the parent set of Body Slam</li>
<li>Emulated the I8751 MCU in the clone Quartet 2 (8751 317-0010)</li>
<li>Added 5 bootlegs of SDI to the Sega System 16B driver</li>
<li>Fixed game ini saving for SDI & clones</li>
<li>Implemented full controls in Ace Attacker in the Sega System 16B driver</li>
<li>Fix outrundxj</li>
<li>Hooked up PPI8255 reads in Major League</li>
<li>Fix life counter in Space Harrier</li>
<li>Added support for screen flipping in Sega System 16A/16B drivers - fixes some levels of SDI which rely on it</li>
</ul></li>
<li>Added a module for Resister Networks (Palette Generation) [Barry]</li>
<li>Update lzma sdk to 16.04 [Barry]</li>
<li>Update libpng to 1.6.28 [Barry]</li>
<li>Update zlib to 1.2.11 [Barry]</li>
<li>Synchronize romsets with the latest MAME [Barry]</li>
<li>Fixed sprite priority issues in Task Force Harrier [dink]</li>
<li>Fixed alignment issues in Swat Police and Head Panic, x-scroll issues, and added missing flashing sprite effect on ESD16 Hardware [dink]</li>
<li>Synthesized a proper color palette for Time Limit [dink]</li>
<li>Improvements/Fixes for Super Kaneko Nova System: [dink]<ul>
<li>New cpu-based speedhack for most games - dip option</li>
<li>Fixed Music and SFX in Gals Panic S</li>
<li>Fixed attract-mode music cut short in VS Block Breaker/Saru Kani</li>
<li>Fixed garbage on screen when the game starts in VS Block Breaker/Saru Kani</li>
</ul>
<li>Updated KonamiBlendCopy() to be faster/more efficient [iq_132]</li>
<li>Fixed a crash in Donkey Kong 3 Japanese version [dink]</li>
<li>Fixed Z80's ZetRunEnd(); *revisited*. This fixes slowdown issues with Strikers 1945 Plus [dink]</li>
<li>Added newer-style VezMapMemory() function to the NEC V20-35 cpu interfaces. [dink]</li>
<li>Fixed a masking issue in NEC V20-35's read port interface [dink]</li>
<li>Fixed a blitter issue in Kangaroo, fixed savestates: video banking and lost music [dink]</li>
<li>Fixed nasty crackling/popping noises in Darius 2 [dink]</li>
<li>Hooked up shot and explosion samples to Seibu Stinger and Scion[c] [dink]</li>
<li>Fixed sprite flickering and freeze-ups in Xain'd Sleena [dink]</li>
<li>Front-End fix: when starting a game from the commandline, only init the blitter once. also don't get stuck in fullscreen when loading fails due to a bad romset [dink]</li>
<li>Fix some structure alignment issues so drivers can benefit from vectorization/SIMD optimizations present in latest gcc w/ -O3 and other recent compilers [dink, barbudreadmon]</li>
<li>Fix dipswitch issues in several games thanks to info from the libretro/fba guys [barbudreadmon, dink]</li>
<li>Fixed Dac and scrolling issues in Konami's Finalizer [dink]</li>
<li>Fixed a crash issue in Super-X (NTC) when up + down was pressed [dink]</li>
<li>Default Full Screen depth to 32bpp [dink]</li>
<li>Fixed DAC DC Offset on some System16 games: Shinobi, Quartet 1 and 2, eliminating pops and clicks [dink]</li>
<li>Added proper inputs for Wall Crash [dink]</li>
<li>Add default gun calibrations and fix sprite:tile priority issues in Operation Wolf 3 [dink]</li>
<li>Reduce the time duration "state loaded/saved" is displayed on the screen [dink]</li>
<li>Fixed mosaic tile effect on scene transitions in FixEight [dink]</li>
<li>Fixed sound synchronization issues in Batrider [dink]</li>
<li>Improvements and Fixes to the Input (re)Recording/Playback feature: [dink]<ul>
<li>Add Record from Power On option to replay/input recording</li>
<li>Shift+Backspace to disable/enable the frame counter while recording or playing back recordings</li>
<li>Fix a nasty bug that caused desynchs in some recordings</li>
</ul>
<li>Add original author(s) credit to each driver and core [iq_132]</li>
<li>Add trackball support to Capcom Bowling and Krazy Bowl [dink]</li>
<li>Fix crash with Force 16bit Emulation and Megadrive [dink]</li>
<li>Fix Gun & Frontier sprite lag issue [dink]</li>
<li>Fix Zero Point 1 and 2 Sprite priorities and sound effects in Zero Point 2 [dink]</li>
<li>Slight speedup with the search function [tumu]</li>
<li>Fix Demon World savestates [dink]</li>
<li>Fix timing issue in D-Con [dink]</li>
<li>Fix sprite alignment in oisipuzl [dink]</li>
<li>Fix savestate compatibility between 32bit/64bit systems [barbudreadmon & libretro guys, dink]</li>
<li>Fix Ghost 'n Goblins savestate banking issue, improve timing [dink]</li>
<li>Fix timing issue in Toki that occasionally caused tiles in the map-screen to jitter [dink]</li>
<li>Fix Hit the Ice inputs and graphics issues [dink]</li>
<li>Fix timing issues in 4 En Raya [dink]</li>
<li>Fix missing button #3 and video issues in Strategy X [dink]</li>
<li>Hook up trackball and fix palette issues - U.S. Classic now playable [dink]</li>
<li>Fix music and banking issues in Funny Bubble [dink]</li>
<li>Fix soundfx and timing in Tripool [dink]</li>
<li>Fixed soundcpu communications in Gauntlet, hooked up the Pokey sound generator and savestates [dink]</li>
<li>Improved M6502 core by properly handling indexed read/writes, fixed pulsing the nmi line with CPU_IRQSTATUS_AUTO [dink]</li>
<!-- new drivers -->
</ul>
<h4>New drivers</h4>
<ul>
<li>Konami's The Main Event and Cosmo Police Galivan / Ninja Emaki / UFO Robo Dangar were accidentally left out of the last release, sorry!</li>
<li>Added driver for Twin Cobra, Flying Shark / Sky Shark / Gulf War II [iq_132]</li>
<li>Added driver for Wardner [iq_132]</li>
<li>Added driver for Taito System-L (Fighting Hawk, Raimais, Champion Wrestler, Puzznic, Kuri Kinton, Evil Stone, etc) [iq_132]</li>
<li>Added driver for Dacholer / KickBoy and Itazura Tenshi [iq_132]</li>
<li>Add driver for games on SSV hardware: Twin Eagle 2, Vasara I and II, Change Air Blade, Dyna Gear, Survival Arts, Drift Out '94, Mobil Suit Gundam Final Shooting, Ultra-X-Weapons, Storm Blade and more [iq_132]</li>
<li>Added driver for FireTrap by WoodPlace [iq_132]</li>
<li>Added driver for games on Metro hardware: Blazing Tornado, Gun Master, Pang Poms, Sky Alert, Puzzli, Mouse Shooter GoGo/Bang Bang Ball/Battle Bubble, Bal Cube, Dharma Doujou [iq_132]</li>
<li>Added driver for Bogey Manor by Technos on modified Data East hardware [iq_132]</li>
<li>Added driver for Cloak and Dagger [iq_132 w/dink]</li>
<li>Added driver for B-Wings and Zaviga [iq_132]</li>
<li>Added driver for Sigma's Submarine [iq_132]</li>
<li>Added driver for Macross Plus [iq_132]</li>
<li>Added driver for Atari's Canyon Bomber [iq_132]</li>
<li>Added driver for Gaelco's World Rally [iq_132, dink]</li>
<li>Added driver for Dream World, Cute Fighter, Baryon Future Assault, Rolling Crush, Gaia on SemiCom DreamWorld Hardware [iq_132]</li>
<li>Added driver for Puzzle Bobble 2, 3 & 4, Gunlock/Rayforce, Bubble Bobble 2 & 3, Gekirindan, Grid Seeker, Twin Cobra II, Recalhorn, Land Maker and a whole bunch more on Taito F3 hardware [iq_132, dink]</li>
<li>Added driver for Shadow Land, Dragon Spirit, Pac-Mania, Galaga '88, Splatter House and others on Namco System 1 Hardware [iq_132, dink]</li>
<li>Added driver for Fantasy Land, Galaxy Gunner and Wheels Runner [iq_132, dink]</li>
<li>Added driver for Susume! / Go Go! Mile Smile and Gyakuten! Puzzle Bancho on Fuuki 16-bit Hardware [iq_132, dink]</li>
<li>Added driver for Karate Champ by Data East [iq_132, dink]</li>
<li>Added driver for Shot Rider, Zippy Race / Traverse USA [iq_132, dink]</li>
<li>Added driver for Konami's Hyper Sports and Road Fighter [iq_132]</li>
<li>Added driver for Konami's Juno First [iq_132]</li>
<li>Added driver for Battle Cross and DodgeMan [iq_132]</li>
<li>Added driver for Shoot Out by Data East [iq_132, dink]</li>
<li>Added driver for Acrobatic Dog Fight [iq_132, dink]</li>
<li>Added driver for Tetris, Hang-On Jr. and Transformer on Sega System E hardware [vbt]</li>
<li>Added drivers for Big Striker bootlegs [iq_132]</li>
<li>Added driver for Kusayakyuu (Baseball) [iq_132]</li>
<li>Added driver for Paddle Mania and The Next Space on Alpha 68k I hardware [iq_132]</li>
<!-- new game additions to existing drivers -->
</ul>
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Mini Planets (REV02) to the Megadrive driver [dink]</li>
<li>Added Miss World 2002 [NeoGeo de Ahuizotla, Artemio Urbina, The Dumping Union, JacKc]</li>
<li>Added Eeekk!! on pacman hardware [iq_132]</li>
<li>Added Sky Robo and Tatakae! Big Fighter to the armedf driver. Thanks to CapsOff for dumping the impossible protection MCU! [dink]</li>
<li>Added Hangzo! to the DataEast Rohga driver [iq_132]</li>
<li>Added Gals Panic S2 (Europe), now its the parent [rtw, JacKc]</li>
<li>Added Samurai Shodown II (Spacial 2017) [GSC2007, JacKc, iq_132]</li>
<li>Finished emulation of early Seta games: Caliber 50, ThunderCade, Twin Eagle, DownTown, Meta Fox and Arbalester [dink]</li>
<li>Added Ken Sei Mogura: Street Fighter II (Japan 940418, Ver 1.00) [Barry]</li>
<!-- clones and updated romsets in drivers -->
</ul>
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Update kof98cb to 20170108 version [JacKc]</li>
<li>Replaced Mutant Night (mnight) with World version, Kawakus license now mnightj [JacKc]</li>
<li>Added clone of Burning Fight (prototype, ver 23.3, 910326) [Collin Foust, JacKc]</li>
<li>Added clone of WWF WrestleFest (World) [Hammy, The Dumping Union, JacKc]</li>
<li>Added clone of Mustache Boy (Italy) [ShouTime, JacKc]</li>
<li>Added clone of ORIENTAL SOFT 1945k III OPCX1 2000 Version (Korea) [ShouTime, JacKc]</li>
<li>Added clone of Forgotten Worlds (USA, B-Board 88618B-2, Rev. E) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Vendetta (World, 2 Players, ver. ?) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Sol Divide - The Sword Of Darkness (Korea) [Nomax, The Dumping Union, JacKc, dink]</li>
<li>Added clone of Raiden (Korea, bootleg) [Tirino73, JacKc]</li>
<li>Added clone of Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release) [Brian Hargrove, JacKc]</li>
<li>Added clone of Flicky (128k Version, 315-5051, larger roms) [system11, JacKc]</li>
<li>Added clone of Momoko 120% (English text) [Paul Hogger, JacKc]</li>
<li>Added clone of The NewZealand Story (World, old version) (older PCB) [Porchy, The Dumping Union, JacKc]</li>
<li>Added clone of Dynamite Duke (Japan, 25JUL89) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Fighting Fantasy (Japan revision ?) [Hammy, The Dumping Union, JacKc]</li>
<li>Added clone of King of the Monsters 2 - The Next Thing (older) [NeoSD, JacKc]</li>
<li>Added clone of Three Wonders (3wondersha) [Barry]</li>
<li>Added clone of The King of Fighters '99 - Millennium Battle (Korean release) [Brian Hargrove, JacKc]</li>
<li>Added clone of Deroon DeroDero (alt set) [arcademodbios, JacKc]</li>
<li>Added clone of Puzznic (US) [Coolmod, JacKc]</li>
<li>Added clone of Head Panic (ver. 0702, 02/07/1999) [hammy, Brian Troha, The Dumping Union, JacKc]</li>
<li>Added clone of Red Hawk (Greece) [Abelardator2, JacKc, iq_132]</li>
<li>Added clone of Dungeons & Dragons: Shadow over Mystara (Japan 960223) [ShouTime, Steven Fairbrother, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Raiden II (Germany) [Caius, JacKc]</li>
<li>Update Samurai Shodown II Special to v1.0.0311 [GSC2007, JacKc]</li>
<li>Added clone of Street Fighter II: The World Warrior (World 910129) [Janniz, JacKc]</li>
<li>Added clone of Radical Radial (Japan) [ShouTime, JacKc]</li>
<li>Added clone of Flashgal (set 1, Kyugo logo) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Martial Masters / Xing Yi (V103, 102, 102, China) [kuze, JacKc]</li>
<li>Added clone of Rastan (World, Earlier code base) [System11, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II - The World Warrior (911210 Japan, rev L) [Bonky0013, The Dumping Union, JacKc]</li>
<li>Added clone of Sonic Blast Man (US) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (UPL bootleg) [Shoutime, The Dumping Union, JacKc]</li>
<li>Added clone of Prehistoric Isle in 1930 (World, bootleg) [The Iron Goat, JacKc]</li>
<li>Added clone of Knights of Valour - Sangoku Senki (V100, Hong Kong) [Pasky Junk, JacKc]</li>
<li>Added clone of Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 4, 921005 Asia) [Unknown, Barry]</li>
<li>Sync. PGM romsets with MAME 0.184 [JacKc]</li>
<li>Added clone of Bionic Commandos (bootleg, set 2) [The Dumping Union, JacKc]</li>
</ul>
<h3>v0.2.97.39</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Shots Factory update: esc to close window, change "All Sprites" to "Layer 1" [dink]</li>
<li>Fixed Palette Viewer color issues [dink]</li>
<li>Fixed Clear and ClearLock for Analogue & Mouse in the Input Editor [dink]</li>
<li>Fixed regression in FB Alpha v0.2.97.38 for E.D.F. : Earth Defense Force (Parent and Clones) [dink]</li>
<li>Fixed graphics issues for Heavyweight Champ (Japan, FD1094 317-0046 decrypted) in SEGA System16B driver [JacKc]</li>
<li>Haunted Castle is most likely-probably fixed now (sorry!) [dink]</li>
<li>Fixed Van Van Car [dink]</li>
<li>Added nsc8105 mcu support to the m6800 cpu core [dink]</li>
<li>Fixed road issues with Turbo Outrun [Barry]</li>
<li>Added i8051 mcu core [iq_132]</li>
<li>Fixed rowscrolling issues in Caveman Ninja (tree level and ending), Joe and Mac Returns (ending), Mutant Fighter intro [dink]</li>
<li>Sync. romsets with MAME 0.175 [Barry]</li>
<li>Fixed sprite issues on the Hacha Mecha Fighter bootleg titlescreen [dink]</li>
<li>When writing an .avi, don't lose frames when F1 (ffwd) is pressed [dink]</li>
<li>Added SN76477 soundcore [dink]</li>
<li>Fixed explosions and missing SFX in Stratovox / Speak and Rescue by hooking up the SN76477 soundcore [dink]</li>
<li>Fixed sound in Porky [dink]</li>
<li>Fixed booting & DIP issues with Main Event (SNK) [dink]</li>
<li>Fixed P2 inputs in Cabal [dink]</li>
<li>Fixed Gwar (Japanese version) [dink]</li>
<li>Fixed the apple sprite in Pooyan [dink, Zazzone]</li>
<li>Fixed the music tempo in Darkseal and used this new fix for Vapor Trail and Crude Buster as well [dink, Gab75]</li>
<li>Fixed Konami's The Main Event, it had sprite and priority issues (K052109 custom) [dink]</li>
<li>Fixed Highlight mode in Sunset Riders, fix also needed by Chequered Flag [iq_132, dink]</li>
<li>Operation Wolf, allow continue by default [dink, gamezfan]</li>
<li>Added re-recording functionality [blip, dink]</li>
<li>Split avi files every 2 gig while recording to prevent corrupted video [dink]</li>
<li>Added selectable 1x, 2x and 3x pixel modes to the avi writer [dink]</li>
<li>Fixed Warriors of Fate 3rd fire button on clones [gxb]</li>
<li>Improved the speed of the search function [dink]</li>
<li>Fixed crash loading a savestate or replay while a different game is running [dink]</li>
<li>Improved desynch issues with netplay and input recording of Capcom CPS1, CPS2, PGM and certain Cave games [dink]</li>
<li>Fixed possible crash with Battle Bakraid loading a state when the game isn't running [dink]</li>
<li>Made the recording icon smaller to be less intrusive while playing games and recording inputs [dink]</li>
<li>Added an option to display joystick/button movements while playing input recordings. [dink]</li>
<li>Fixed choppy sound on music fade-outs in DoDonPachi II: Bee Storm [dink]</li>
<li>Fixed gear shifting in Continental Circus [dink, Gab75]</li>
<li>Added new feature: Shift+F1 toggles FFWD on/off [dink]</li>
<li>Temporary work-around to Data East Backfire! to prevent crash [dink]</li>
<li>Under some circumstances certain macros could not be mapped [dink]</li>
<li>Fixed "smoke" and "dust" sprites in Super Hangon [dink]</li>
<li>Fixed crash when dieing in certain situations in Bonze Adventure [dink]</li>
<li>Fixed gear shifter in Contental Circus, Chase HQ, SCI, Racing Beat, Double Axle and Top Speed [dink]</li>
<li>Fixed missing SFX and graphics glitches in Top Speed [dink]</li>
<li>Fixed the adventure world in UFO Senshi Yohko Chan [dink]</li>
<li>Fixed video issues with savestates for certain Kaneko Supernova games [dink]</li>
<li>Fixed some broken sprites in Guwange [dink]</li>
<li>Fixed the big alien in Turbo Force (revisited) [dink]</li>
<li>Allow movement of the "Scanning ROMs" window [dink]</li>
<li>Fixed remaining lives issue in Woodpecker [dink]</li>
<li>Fixed missing line of pixels at the top of the screen in Air Gallete [dink]</li>
<li>Fixed some missing samples in Seta games w/ X1-010 soundchip [dink]</li>
<li>Fixed crash issue with X1-010 soundchip and 64bit systems [dink, Gab75]</li>
<li>Fixed graphics issues in US AAF Mustang and Twin Action in the NMK16 driver [dink]</li>
<li>Fixed analog controls and shifting in Konami GT / RF2 and Hyper Crash [dink]</li>
<li>Fixed crash issue with xx-in-1 Megadrive pirate carts [dink]</li>
<li>Fixed "BAD HARDWARE" issue with Arkanoid [dink]</li>
<li>Fixed life counter in Zzyzzyxx [dink]</li>
<li>Fixed dips and possible crash issue on 64bit systems with the Seta2 hunting games [dink]</li>
<li>Fixed the HUD face icon in Warrior Blade [dink]</li>
<li>Fixed several graphics issues in Gaiapolis [dink]</li>
<li>Fixed transparent color issue in Metamorphic Force and Violent Storm [dink]</li>
<li>Added YM2610 ADPCM samplebanking support for KOF98AE [dink]</li>
<li>Fixed choppy scrolling on the left side of the screen in Blazing Star [dink]</li>
<li>Fixed minor graphic glitch in X-Men [dink]</li>
<li>Fixed Funky Bee and Sky Lancer palette issues [dink]</li>
<li>Fixed timing issues in Martial Champion, now works but with graphical issues [dink]</li>
<li>Updated the cheat engine to support more modes: Watch, Wait for Modification, Level Selection and One-Shot [dink]</li>
<li>Fixed "Break the Statue" text in Metamorphic Force and spotlight on the belly dancer in Violent Storm [dink]</li>
<li>Fixed oddly-placed black lines and opaque windows in Lethal Enforcers [dink]</li>
<li>Fixed several bugs in the Konami-scc (K051649) core [dink]</li>
<li>Updated the Quiz Olympic driver [iq_132]</li>
<li>Updated the TMS9928a vdp to a newer core/line-based version [dink]</li>
<li><ul>
<li>Fixes Magical Tree in SG-1000</li>
<li>Fixes the Radar screen in Colecovision Defender</li>
</ul></li>
<li>Updated the Sunset Riders protection chip emulation, fixes walking on slanted surfaces [Angelo Salese]</li>
<li>Fixed the sprite offsets in Konami's Vendetta/Crime Fighters [dink]</li>
<li>Fixed the roms of Moon Alien 2 (Older Version) [JacKc]</li>
<li>Added configurable clipping to generic tile drawing [iq_132]</li>
<!-- clones and updated romsets in drivers -->
</ul>
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Added clone of Street Fighter II' - Magic Delta Turbo (bootleg set 4 (with YM2151 + 2xMSM5205), 920313 etc) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 3) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 4) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 5) [Janniz, f205v, JacKc]</li>
<li>Added clone of 1945k III (older, OPCX1 PCB) [system11, iq_132]</li>
<li>Added clone of Operation Thunderbolt (World, rev 1) [Muddymusic, The Dumping Union, JacKc]</li>
<li>Added clone of Fighting Fantasy world rev. 3 [bmcphail, JacKc]</li>
<li>Added clone of The NewZealand Story (US, old version) (older PCB) [Alex Cmaylo, The Dumping Union, JacKc]</li>
<li>Added clone of Metamorphic Force (ver AAA) [Abelardo Vidal, JacKc]</li>
<li>Added clone of Super Street Fighter II X: Grand Master Challenge (Japan 940311) [undamned, ShouTime, JacKc]</li>
<li>Added clone of Air Gallet (Europe, older) [Artemio Urbina, JacKc]</li>
<li>Added clone of New Zero Team (V33 SYSTEM TYPE_B hardware) [caius, JacKc]</li>
<li>Added clone of Teenage Mutant Ninja Turtles (US 4 Players, version H) [The Iron Goat, JacKc]</li>
<li>Added clone of Gulf Storm (Korea) to the Dooyong driver [system11, JacKc]</li>
<li>Updated The King of Fighters '99 (15th Anniversary Edition) to 20160827 Build [JacKc]</li>
<li>Updated The King of Fighters '98 (Combo/Ivex Hack) to 20161004 Build [JacKc]</li>
<li>Added clone of Street Fighter (Japan, pneumatic buttons) [ShouTime, Smitdogg, Jan Stuhler, Paul Thacker, Sean Sutton, The Dumping Union, JacKc]</li>
<li>Added 2 new Phoenix clones: Amstar Set 2 and Condor (S C Novar bootleg of Phoenix) [f205v, JacKc]</li>
<li>Added clone of Bubble Bobble: Ultra (Hack by Penta Penguin) [dink]</li>
<li>Added clone of Demon's World / Horror Story (set 2) [Sugoi Helsinki, JacKc]</li>
<li>Added clone of Teenage Mutant Ninja Turtles (Asia 4 Players, version ?) [Abelardo Vidal, The Dumping Union, JacKc]</li>
<!-- new game additions to existing drivers -->
</ul>
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Triki Triki (Lover Boy bootleg) [Rafael Alonso (from ARCADE VINTAGE), JacKc]</li>
<li>Added Mercenario (Commando bootleg) [Rockman, JacKc]</li>
<li>Added Super Street Fighter II: The Tournament Battle (Japan 931005) [ShouTime, JacKc]</li>
<li>Added Mutant Warrior ( Altered Beast Datsu bootleg) [The Dumping Union, JacKc]</li>
<li>Added Shogun Warriors (Korea?) to the Kaneko 16 driver [Barry]</li>
<li>Added Dai Makai Mura debug edition to the PCE-SGX driver [dink]</li>
<li>Added Jungler, Tactician, Commando (Sega) & Loco-Motion to the RallyX driver [dink]</li>
<li>Added Bang!, Snowboard Championship and Touch 'n Go (Korea, Unprotected) to the Gaelco2 driver [dink, iq_132]</li>
<li>Added '96 Flag Rally to the 1945kiii driver [dink]</li>
<li>Added Mega Q-Bert to the Megadrive driver [dink]</li>
<li>Added Sega Master System Brawl to the Megadrive driver [dink]</li>
<li>Added Bomb on Basic City by vetea to the Megadrive driver [dink]</li>
<li>Added Bara Buru to the Sega MasterSystem driver [dink]</li>
<li>Added Data Storm to the Sega MasterSystem driver [dink]</li>
<li>Added Deluxe 4 U and Deluxe 5 to the ESD16 driver [JacKc]</li>
<li>Added Super UWOL! SG-1000 to the SG-1000 driver [dink]</li>
<!-- new drivers -->
</ul>
<h4>New drivers</h4>
<ul>
<li>Added driver for Parallel Turn [iq_132, dink]</li>
<li>Added driver for Breakthru and Darwin 4078 [iq_132, dink]</li>
<li>Added driver for Crazy Climber, Guzzler, Swimmer, River Patrol, Silver Land and Yamato [dink, iq_132]</li>
<li>Added driver for Zodiack, Mogu Chan, Dogfight, The Bounty, The Percussor. [dink]</li>
<li>Added driver for Dr. Micro [dink]</li>
<li>Added driver for Seicross, Radical Radial and Frisky Tom [iq_132]</li>
<li>Added driver for Calorie Kun [iq_132, dink]</li>
<li>Added driver for Jr. PacMan [iq_132, dink]</li>
<li>Added driver for Burger Time, Lock 'n Chase, Bump 'n Jump / Burnin' Rubber, Minky Monkey, Disco no.1 [dink, iq_132]</li>
<li>Added driver for Metal Freezer [Angelo Salese, iq_132]</li>
<li>Added driver for Fast Freddie / Fly Boy, Jump Coaster, Boggy '84, Red Robin, Imago [dink, iq_132]</li>
<li>Added driver for Heavy Unit [iq_132]</li>
<li>Added driver for Dangar, Galivan and Ninja Emaki [iq_132]</li>
<li>Added driver fot The Deep [Lucia Elia, iq_132]</li>
<li>Added driver for Zero Team 2000, New Zero Team and Raiden2DX v33 [iq_132]</li>
<li>Added driver for Chequered Flag [iq_132]</li>
<li>Added driver for Naughty Boy, Pop Flamer, Trivia Master/Genius [iq_132, dink]</li>
<li>Added driver for Cheeky Mouse [dink]</li>
<li>Added driver for Zodiack, Mogu Chan, Dogfight, The Bounty, The Percussor [dink]</li>
<li>Added driver for Jaleco's City Connection [iq_132]</li>
<li>Added driver for Phoenix & Pleiads [iq_132, dink (sound)]</li>
<li>Added driver for Syusse Oozumou [iq_132]</li>
<li>Added driver for Aeroboto / Formation Z [iq_132]</li>
<li>Added driver for Syvalion, Tetristh, Record Breaker and Dynamite League on Taito H hardware [iq_132]</li>
<li>Added driver for Track and Field / Hyper Olympic, Masters of Kin, Reaktor and Yie Ar Kung-Fu (GX361 conversion) [iq_132, dink]</li>
<li>Added driver for Gigas, Freekick, Counter Run and Perfect Billiard [vbt]</li>
<li>Added driver for MSX1-based games [dink]</li>
<li>Added driver for Konami's Ping Pong [iq_132]</li>
<li>Added driver for One + Two [iq_132]</li>
</ul>
<h3>v0.2.97.38</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Fixed BurnSamplesSetLoop() in the sample core [dink]</li>
<li>Added the Toki devlopers' debug mode to Toki [dink]</li>
<li>Added several behind-the-scene improvements to the Galaga/Dig-Dug driver [dink]</li>
<li>Fixed a crash-situation with the Namco sound-core that only seemed to affect 64bit systems [dink, Gab75]</li>
<li>Capcom CPS3 is now friendly towards slower/embedded systems (Raspberry Pi etc.) [dink]</li>
<li>Fixed Capcom's The Speed Rumber: broken Boot-up messages, random slowdowns, screen priority issues [dink]</li>
<li>Fixed music in SD Gundam Psycho Salamander [dink]</li>
<li>Fixed extra buttons in Olds [iq_132]</li>
<li>Added default rom paths for SMS & GameGear systems [dink]</li>
<li>Fixed music in Haunted Castle [dink, SNK_Dude]</li>
<li>Fixed display of total sets in game selection dialog [Barry]</li>
<li>Fixed missing tiles in Sand Scorpion due to incorrect 2-D pointer indexing in kaneko_tmap.cpp, possibly improving other games that use this. [dink]</li>
<li>Fixed missing music in Pass level 3+ [dink]</li>
<li>Fixed music tempo in Nostradamus [dink]</li>
<li>Tidy up makefiles and fix for non C++11 compilers [Barry]</li>
<li>Fixed Skyarmy, sometimes the bridge-piece chinook (heli w/2 props) doesn`t deliver the pieces when at home base. [dink]</li>
<li>Fixed Oki MSM6295 banking in Shadow Force [dink]</li>
<li>Fixed a crash issue when using savestates in Taito's Master of Weapon [dink]</li>
<li>Fixed music in Knuckle Bash 2 [dink]</li>
<li>Fixed Oops: forgot to mark Air Duel's parent as Working. [dink]</li>
<li>Fixed missing sprites in ZigZagb [dink, Zazzone]</li>
<li>Fixed endgame boss & stage 6 boss in Nostradamus [dink, Haze]</li>
<li>Fixed doorway/scene transitions in Tiger Road [iq_132]</li>
<li>Fixed graphics issues in Varia Metal [iq_132, dink]</li>
<li>Added unicode titles and service dips to several Toaplan games [BisonSAS]</li>
<li>Fixed the analog speed setting in config/games/game.ini was getting clobbered [dink]</li>
<li>Fixed sprite priority issues in Blood Brothers, most notably in the mine-level [dink]</li>
<li>Fixed music updated palette handling in Mysterious Stones [dink]</li>
<li>Fixed the bitmap layer alignment in Chak 'n Pop [dink]</li>
<li>Added the breakable-background fix to 64th Street [Haze]</li>
<li>Fixed PCM sounds in Rohga / Wolf Fang [dink]</li>
<li>Fixed crash in Shadow force in the Laboratory level when the bridge breaks apart [dink, Pityesz]</li>
<li>Fixed clicking noise when a replayed input ends [dink]</li>
<li>Fixed many Megadrive games: The Chaos Engine, Ooze, Rock 'n Roll Racing, Outrunners, Buck Rogers, Dragon Slayer I & II, Krusty's Super Funhouse, S.S. Lucifer, The Earth Defense, Super Mario Bros. and Battle City, Klax, Feng Shen Ying Jie Chuan (Chi), Tiny Toon Adventures 3, Back to the Future part III (USA), Mickey Mania and possibly others. [dink]</li>
<li>Mega Megadrive Overhaul pt.2: [dink]</li>
<li><ul>
<li>Added support for mid-frame palette changes (For water effects in Sonic, Rocket Knight Adventures, Burning Force scrolls now..etc.)</li>
<li>Fixed audio glitches in Doom Troopers and Battle Squadron</li>
<li>Fixed Mickey Mania Moose level</li>
<li>Fixed Sonic 3D jittery SEGA logo</li>
<li>Fixed flickering in Ayrton Senna's Super Monaco GP II and Gunstar Heroes</li>
</ul></li>
<li>Enabled Hi-Score saving in most classic/pre-90's Capcom games [dink]</li>
<li>Added 3x-sized avi output, for 720p/60hz Youtube video uploads [dink, Barry]</li>
<li>New Rotary-button feature for Midnight Resistance, Heavy Barrel, Ikari/Victory Road and other games in the new SNK 3xZ80 driver, Ikari III, SAR Search and Rescue and Jackal [dink]</li>
<li><ul>
<li>When this button is pressed: rotary direction becomes joystick direction</li>
</ul></li>
<li>Fixed some screen-related quirks in the legendary classic: Ambush [dink]</li>
<li>Fixed Donkey Kong III save states [dink]</li>
<li>Fixed sample engine broken since the last version of FBAlpha [dink]</li>
<li>Fixed graphics and timing issues in Gradius III [dink]</li>
<li>Fixed some issues with the cheat engine - some cheats would not disable [dink]</li>
<li>Fixed coin inputs for Kamen Riders [dink, Gab75]</li>
<li>Fixed music in Guardians / Denjin Makai II [dink]</li>
<li>Fixed music in The Punisher (change cps1 qsound cpu to proper 8mhz) [dink]</li>
<li>Fixed music in Karnov's Revenge [dink]</li>
<li>Updated lzma lib. to 15.14 [Barry]</li>
<li>Updated the libpng library to v1.6.21 [Barry]</li>
<!-- clones and updated romsets in drivers -->
</ul>
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Sync. romsets with current MAME [Barry, JacKc]</li>
<li>Added clone of Sengoku Ace (Japan, set 2) [Alex Cmaylo, JacKc]</li>
<li>Added clone of Final Fight US [Coolmod, JacKc]</li>
<li>Added clone of Rolling Thunder (rev 3, alternate?) [caius, JacKc]</li>
<li>Added clone of 1943 (US) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of Out Run (deluxe sitdown) (Enhanced Edition v1.0.3) [JacKc]</li>
<li>Added clone of Out Run (sitdown/upright, Rev B) (Enhanced Edition v1.1.0) [JacKc]</li>
<li>Added clone of Lethal Enforcers (ver EAA, 09/09/92 09:44) [caius, JacKc]</li>
<li>Added clone of Orius (ver UAA) / clone of Xexex [Ryan Holtz, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Super Street Fighter II Turbo (Hispanic 940223) [Artemio Urbina, JacKc]</li>
<li>Added clone of Ninja-Kid II / NinjaKun Ashura no Shou (set 4) [system11, JacKc]</li>
<li>Added clone of Ring of Destruction: Slammasters II (Hispanic 940902) [Raul Delgado, JacKc]</li>
<li>Added clone of Miss World 96 Nude (alt) [system11, JacKc]</li>
<li>Added clone of Double Dragon II - The Revenge (US, bootleg) [system11, JacKc]</li>
<li>Added clone of Pirates (set 2) [caius, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 'Taiwan' bootleg with PAL) [rtw, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Strider (USA, B-Board 90629B-3, Street Fighter II conversion) [system11, JacKc]</li>
<li>Added clone of Sangokushi III Gaiden: Kakou-On's Revenge DX (hack) [system11, JacKc]</li>
<li>Added clone of Multi Game '96 (Italy) [system11, JacKc]</li>
<li>Added clone of Halfway To Hell: Progear Red label (2016-1-17 Red Label Ver) [The Halfway House, JacKc]</li>
<li>Added clone of Multi Champ (World, older) [f205v, JacKc]</li>
<li>Added clone of 1000 Miglia: Great 1000 Miles Rally (94/05/26) [caius, JacKc]</li>
<li>Added clone of 64th. Street - A Detective Story (Japan, set 2) [Corrado Tomaselli, JacKc]</li>
<li>Added clone of Donkey Kong - Arcade Rainbow (hack) [John Kowlski, JacKc]</li>
<li>Added clone of Block Block (World 911219 Joystick) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of The King of Fighters '98 (Anniversary Edition 2016, EGHT hack) [EGCG 2016, JacKc]</li>
<li>Added clone of The King of Fighters '98 (Combo) to 2016/03/21 version [Ivex, JacKc]</li>
<li>Added clone of Armed Police Batrider - A Version (Hong Kong) (Mon Dec 22 1997) [Trap15, JacKc]</li>
<li>Added clone of Batsugun (Korean PCB) [Alex Cmaylo, iq_132]</li>
<li>Added clone of Last Resort (prototype) [Chris Ransley, JacKc]</li>
<li>Added clone of Moon Cresta (SegaSA / Sonic) [Roselson (from AUMAP), JacKc]</li>
<li>Added clone of Major Title 2 (World, alt sound CPU) [Mathieu Patard, JacKc]</li>
<li>Added clone of Pac-Man (SegaSA / Sonic) [A.R.P.A., JacKc]</li>
<li>Added clone of Come Come (Petaco SA bootleg of Puck Man) [Manuel Giron, JacKc]</li>
<li>Added clone of Come-Cocos (Ms. Pac-Man) ('Made in Greece' Herle SA bootleg) [Heckler, JacKc]</li>
<li>Added clone of My Hero (bootleg, 315-5132 encryption) [Andrew Welburn, JacKc]</li>
<li>Added clone of Toki (US, prototype?) [Kevin Eshbach, JacKc]</li>
<li>Added clone of Super Bishi Bashi Championship (ver KAB, 3 Players) [Skate, JacKc]</li>
<li>Added clone of Majestic Twelve - The Space Invaders Part IV (US) [Artemio Urbina, The Dumping Union, JacKc]</li>
<li>Added clone of Major Title 2 (World, set 2) [Porchy, JacKc]</li>
<li>Added clone of Atomic Robo-kid (Japan) [Alex Cmaylo, JacKc]</li>
<li>Added clone of Beast Busters (Japan, Version 2) [ShouTime, JacKc]</li>
<li>Added clone of Mystic Warriors (ver AAB) [Bill D / The Dumping Union, JacKc]</li>
<li>Added clone of Raiden DX (Japan, set 2) [Alex Cmaylo, JacKc]</li>
<li>Updated the NeoGeo driver with the latest Unibios [JacKc]</li>
<!-- new game additions to existing drivers -->
</ul>
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Fix-it Felix Jr. to the Megadrive driver [dink]</li>
<li>Added Waimanu: Scary Monsters Saga to SMS driver [dink]</li>
<li>Added Wing Force to the Kaneko16 driver [dink]</li>
<li>Added MegaCart support to the Colecovision driver [dink]</li>
<li>Added Princess Quest (MegaCart), Digger and Quest for the Golden Chalice to the Colecovision driver [dink]</li>
<li>Added T*GunII, Chase and Papi CommandoMD to the Megadrive driver [dink]</li>
<li>Added Big's Fishing Derby and Thunderbolt II to the Megadrive driver [dink]</li>
<li>Added FatalSmarties to the Megadrive driver [dink]</li>
<li>Added '96 Flag Rally to 1945kiii driver [dink]</li>
<li>Added Ozma Wars to the Space Invaders driver [iq_132]</li>
<li>Added Fire Ball (FM Work) to the Legendary Wings driver [iq_132]</li>
<li>Added Unknown Neo-Geo Vs. Fighter (prototype) [Brian Hargrove, JacKc] to the NeoGeo driver</li>
<!-- new drivers -->
</ul>
<h4>New drivers</h4>
<ul>
<li>Added driver for Appoooh [vbt]</li>
<li>Added driver for Cabal [iq_132, dink]</li>
<li>Added driver for Fighting Roller [iq_132]</li>
<li>Added driver for Battle Lane [iq_132]</li>
<li>Added driver for Alligator Hunt and Maniac Square on Gaelco CG-1V/GAE1-based hardware [iq_132, dink]</li>
<li>Added driver for Ikari Warriors, Victory Road, TNK3, Guerilla War, Chopper I, Bermuda Triangle, Psycho Soldier, Athena, ASO/Alpha Mission, Fighting Golf, Jumping Cross, HAL21, Vanguard II, Mad Crasher and Marvin's Maze on SNK 3xZ80 hardware [iq_132, dink]</li>
<li>Added driver for Main Event and Canvas Croquis [iq_132]</li>
<li>Added driver for Joyful Road / Munch Mobile [iq_132]</li>
<li>Added driver for Himeshikibu and Android [iq_132]</li>
<li>Added driver for Beast Busters and Mechanized Attack [iq_132]</li>
<li>Added driver for Safari Rally [iq_132]</li>
<li>Added driver for Mr. Jong and Crazy Blocks [vbt]</li>
<li>Added driver for Lasso, Chameleon, Wai Wai Jockey Gate-In and Pinbo [iq_132]</li>
</ul>
<h3>v0.2.97.37</h3>
<ul>
<li>Added clone of Contra (US / Asia, set 3) [system11, iq_132, JacKc]</li>
<li>Added several fixes for the SDL version of FBAlpha [Dmitry Smagin]</li>
<li>Fixed all SFX hard-panned to the right in Mars Matrix [dink]</li>
<li>Added Packetman bootleg [Mooglyguy, Smitdogg, The Dumping Union, iq_132]</li>
<li>Removed unused dips for Gunforce2/Geostorm [dink]</li>
<li>Fixed continious distortion in R-Type II level 4 after death while also killing an air-tank [dink]</li>
<li>Fixed TRUN bit masking (timers start/stop) in TCLS-90 CPU [Rainer Keuchel, dink]</li>
<li>Fixed PCM audio in Avengers/Buraiken [dink]</li>
<li>Fixed slight video glitchery on fade outs/cutscene/fast screen changes in Ghost 'n Goblins [dink]</li>
<li>Added clone of Gradius III (Japan, program code S, split) [system11, JacKc]</li>
<li>Added 1998 copyright Fantasia 2 version, single ROM difference [system11, JacKc]</li>
<li>Added clone of G-LOC Air Battle (World) [Arzeno Fabrice, The Dumping Union, JacKc]</li>
<li>Added 1943: The Battle of Midway (hack of Japan set) [Artemio Urbina, JacKc]</li>
<li>Correct rom labels for the Stern Electronics license of The End. [caius, JacKc]</li>
<li>Added clone of Gundhara (Chinese, bootleg?) [system11, JacKc]</li>
<li>Added clone of Bells & Whistles (Asia, Version M) [rtw, The Dumping Union, JacKc]</li>
<li>Added clone of Dunk Shot (Rev A, FD1089 317-0022) [coolmod, The Dumping Union, JacKc]</li>
<li>Added Bionic Commandos (bootleg, hack of Japan set) [TeamEurope, MikeMcBike, JacKc]</li>
<li>Added driver for Centipede and Millipede [dink]</li>
<li>Added driver for Popeye and Sky Skipper [dink]</li>
<li>Emulate mosaic-effect in Takeda Shingen / Shingen Samurai Warrior [dink, iq_132]</li>
<li>Fixed broken sprites in Mikie [dink, WILOWAR]</li>
<li>Added driver for Wiz, Kung-Fu Taikun, Scion and Stinger [vbt]</li>
<li>Added clone of Street Fighter Alpha 3 (USA 980616, SAMPLE Version) [Guru, JacKc]</li>
<li>Added driver for Mr. Do`s Castle, Do! Run Run, Mr. Do`s Wild Ride, Jumping Jack and Kick Rider [dink]</li>
<li>Added new clones for: Vigilante, Galaxy Force 2, & Super Cobra [Barry]</li>
<li>Fixed ZetRunEnd(); in the Z80 cpu interface [dink]</li>
<li>Added correct dump of VA63B.1A for Varth [Caius, The Dumping Union, JacKc]</li>
<li>Fixed sound-rom loading for Wizard Fire [Barry]</li>
<li>Added clone of Final Fight (900424 USA) [Bonky0013, JacKc]</li>
<li>Added driver for Warp Warp [dink]</li>
<li>Added clone of Oriental Legend (ver. 111, Korean Board) [Darksoft, JacKc]</li>
<li>Fixed the loud beeping noise when the little guys jump on the enemy in Zupapa [dink]</li>
<li>Improved inputs in Ladybug and Pac-Man by converting them to 4-Way mode [dink]</li>
<li>Added driver for Mirax [dink]</li>
<li>Fixed savestates in Konami's Roc 'n Rope [dink]</li>
<li>Added driver for Qbert, Qbert's Qubes, Faster Harder More Challenging Qbert and Mad Planets [dink]</li>
<li>Added driver for China Gate [iq_132]</li>
<li>Properly clone-ize the Coleco game collection [dink]</li>
<li>Some timing improvements for Gun.Smoke [dink]</li>
<li>Improved timing in Commando - fixes some sounds/SFX, and glitching sprites [dink]</li>
<li>Fixed sprite buffering in Ghosts and Goblins, fixes "jittery gravestones" when walking. Also fixed the boot-up messages [dink]</li>
<li>Fixed a sprite wrapping issue in Son Son, certain sprites would disapear when they got too close to the edge of the screen [dink]</li>
<li>Fixed and improved timing in Pirate Ship Higemaru [dink]</li>
<li>Improved timing in Nemesis & Gradius, fixes glitchy video, proper laser & missile sounds [dink]</li>
<li>Fixed broken sprites in Lethal Enforcers [dink]</li>
<li>Added Sega decrypted romsets [Barry]</li>
<li>Added driver for Chanbara [iq_132]</li>
<li>Added New parent set for Ken-Go called Lightning Swords [System11, The Dumping Union, JacKc]</li>
<li>Added Ken-Go (set 2) [caius, JacKc]</li>
<li>Improved the timing in Snow Bros. Fixes slowdowns and other timing issues notable later in the game.[dink, Zazzone]</li>
<li>Added .AVI-writer feature from FBAPlus, somewhat re-written and greatly improved. [dink, Gangta, JAVH, bms888]</li>
<li>Added clone of Wonder Stick (set 2, censored) [Any, The Dumping Union, JacKc]</li>
<li>Fixed music speed in Dingo [dink]</li>
<li>Fixed music synchronization and SFX in Caveman Ninja (timer issue) [dink]</li>
<li>Fixed PCM sample playback in the LastDuel driver [dink]</li>
<li>Fixed screen priorities in the LastDuel driver [iq_132]</li>
<li>Added good sprite dump of Led Storm 2011 Rally (US) [Guru, JacKc, iq_132]</li>
<li>Added new parent of Led Storm Rally 2011 (World) [system11, JacKc]</li>
<li>Added clone of Joe & Mac Returns (Japan, Version 1.2, 1994.06.06) [rtw, The Dumping Union, JacKc]</li>
<li>Added clone of Sonic 1-FM v1.02 for SMS - info and patches @ http://www.smspower.org/Hacks/SonicTheHedgehog-SMS-FM-Mod [dink]</li>
<li>Added Changes, Hopper Robo, Battle Cruiser M12, Hoccer and Wanted to the Marine Boy driver [dink]</li>
<li>Fixed the positional mini-map in Rygar [dink]</li>
<li>Fixed bg priorities and added volume attenuation to the flstory driver, fixes Onna Sansirou sprite issue, freeze-up at GAME OVER and missing pcm samples [dink]</li>
<li>Added Rumba Lumber to the flstory driver [dink]</li>
<li>Added driver for Konami's Jackal [iq_132, dink]</li>
<li>Fixed music, add savestate support and fix crash on exit in Dynamite Duke [dink]</li>
<li>Added driver for Taito's Super Rider [iq_132, dink]</li>
<li>Added System 2 support to the Sega System 1 driver [vbt, dink]</li>
<li>Fixed sound/music in Regulus [dink]</li>
<li>Fixed sound/music in Driftout [dink]</li>
<li>Added new NeoGeo BIOS and fixed various issues in the NeoGeo BIOS [Barry]</li>
<li>Added clone of Air Duel [dink]</li>
<li>Added clone of Forgotten Worlds (World, newer) [Bill D, The Dumping Union, Barry]</li>
<li>Added bootleg of Cadillacs and Dinosaurs to the CPS-1 driver [Barry, Bonky0013]</li>
<li>Added clone of The Punisher to the CPS-1 driver [Barry, Bonky0013]</li>
<li>Improved analog controls in Forgotten Worlds [dink]</li>
<li>Added Moggy Master and Geki oko Punpun to the Master System driver [dink]</li>
<li>Added clone of Karate Blazers (World, set 2) [caius, JacKc]</li>
<li>Added Tr-606 drumkit support to Kid Niki, Horizon, Spelunker and Spelunker II. Grab the public domain/royalty-free drumkit @ http://sharesend.com/32ux720g and throw it in "fba dir"\support\samples [dink]</li>
<li>Fixed Kabuki-Z graphics issues making the game playable [dink]</li>
<li>Fixed Kozure Ookami & Terra Force and is now fully playable. Also: Added color lookup-table feature to the sprite engine, which improves these games as well as Legion & Armed F. [dink]</li>
<li>Added Raiders5, Nova2001 & Ninja Kun to the Penguin-Kun Wars driver [vbt w/help from dink & iq_132]</li>
<li>Added Dig-Dug to the Galaga driver [dink]</li>
<li>Added Pack 'n Bang Bang to the Kaneko16 driver [dink]</li>
<li>Added driver for Sky Kid Deluxe, Hopping Mappy, The Return of Ishtar, Genpei ToumaDen, Rolling Thunder & Wonder Momo on Namcos86 hardware [iq_132]</li>
<li>Improved the sound/music in Finalizer [dink]</li>
<li>Fixed coin insertion issues in Raiden 2 / DX [dink]</li>
<li>Fixed player color in Spark Man [gamez fan]</li>
<li>Fixed palette issue with Congo Bongo [dink]</li>
<li>Enabled High score saving for a lot of classic games [dink]</li>
<li>Updated the PGM sound-core (ICS2115) thus improving sound and music on all PGM-based games [iq_132]</li>
<li>Added port of the Pokey sound-core to FBA and hooked it up to Atari Tetris [dink]</li>
<li>Added driver for Bomb Bee, Cutie Q, Gee Bee, Kaitei Takara Sagashi, Navarone, and SOS [dink]</li>
<li>Added driver for Mouser [vbt]</li>
<li>Added driver for Toki no Senshi - Chrono Soldier [vbt]</li>
<li>Added driver for UFO Senshi Yohko Chan [dink]</li>
<li>Added driver for Wonder Boy in Monster Land [vbt]</li>
<li>Added support for downloading localisation templates from the FB Alpha web-site into FB Alpha [Barry]</li>
<li>Fixed issue with Dip Switches (increased max from 4 to 8) [Barry]</li>
<li>Added compiling support for GCC 5.1.0 [Barry]</li>
<li>Added compiling support for Visual Studio 2015 [Barry]</li>
<li>Removed sample filename extensions from drivers [Barry]</li>
<li>Updated lzma lib. to 15.08 [Barry]</li>
<li>Updated the libpng library to v1.6.18 [barry]</li>
<li>Synced sets with MAME 0.167 [barry, JacKc]</li>
</ul>
<h3>v0.2.97.36</h3>
<ul>
<li>Fix Time Pilot '84 palette banking. [iq_132]</li>
<li>Added clone of Pang (bootleg, set 5) [f205v, Vincenzo Femia, JacKc]</li>
<li>Added clone of Daioh (prototype) [CoolMod, trap15, iq_132]</li>
<li>Added clone of Jigoku Meguri (Japan, hack?) [Tormod, JacKc]</li>
<li>Added driver for Vastar and Planet Probe [iq_132]</li>
<li>Fixed a handfull of broken games on Sega Master System [dink]</li>
<li>Added FM sound capability to the Sega Master System, better integration and remove external dependancies [dink, Barry]</li>
<li>Added ability to use CD-Quality soundtrack from the Sega Saturn version of DonPachi [iq_132, dink]</li>
<li>Added feature to trim silence at the end of looped samples in the sample playback core [dink]</li>
<li>Small improvement to the ESP Ra.De virtual mixer [dink]</li>
<li>Added Trap15's nice sheild warning mod DIP setting for GunNail [Trap15, dink]</li>
<li>Added clone of Same! Same! Same! NEW VER! (v1.00 by Trap15) [Trap15, JacKc]</li>
<li>Added clone of Ketsui Kizuna Jigoku Tachi (Arrange Mode version 1.7 by Trap15) [Trap15, JacKc]</li>
<li>Added Alex Kidd in Radaxian Rumble, Bruce Lee, DARC, Hong kil Dong and Lambo to the SMS driver [dink]</li>
<li>Added several fixes for the SDL version of FBAlpha [Dmitry Smagin]</li>
<li>Added ZetSetSP() and fix ZetSetHL() in the z80 interface [dink]</li>
<li>Fixed Toki palette recalculation [iq_132, ArcadeTV]</li>
<li>Added more simulation to Chelnov's MCU [iq_132]</li>
<li>Fixed null file crash with T7Zipped romsets [Barry]</li>
<li>Added Metal Slug 2 - Super Vehicle-001/II Turbo(NGM-9410) (slowdown fix) [Trap15]</li>
<li>Fixed map raster effect rowscroll offset in Ninja Baseball Batman [dink]</li>
<li>Added clone of Hexion bootleg [System11, iq_132]</li>
<li>Added clone of Scramble (Centromatic S.A.) Spanish Bootleg [Manuel Giron, JacKc]</li>
<li>Added clone of Mutant Fighter (World EM-2) [Simon Dennison, JacKc]</li>
<li>Added clone of Dragon World 3 (ver. 103, Japan) [arcademodbios, JacKc]</li>
<li>Added clone of Red Hawk (Korea) [system11, JacKc]</li>
<li>Added clone of Robocop 2 (US v0.10) [Bill D, The Dumping Union, JacKc]</li>
<li>Added clone of Super Puzzle Fighter II Turbo (Euro 960529) [fluxcore, idc/Team Avalaunch, JacKc]</li>
<li>Added clone of Hot Bubble (Korea) [system11, The Dumping Union, JacKc]</li>
<li>Added clone of Thunder Deity Biography (Chinese hack of Battle Garegga) [caius, JacKc]</li>
<li>Added clone of Willow (World) [Jets (from Emu-france) and Layer (from Neo-arcadia), JacKc]</li>
<li>Added clone of Adventure Quiz Capcom World 2 (Japan 920611, B-Board 91634B-2) [Bonky, JacKc]</li>
<li>Added clone of Battle K-Road (Korean PCB) [Manuel Assoni, JacKc]</li>
<li>Added clone of X-Men (2 Players ver UAB) [Andrew Welburn, The Dumping Union, JacKc]</li>
<li>Fixed the eerie/droning background noise in Galaxian and King & Balloon [dink]</li>
<li>Fixed freeze after character selection in Oriental Legend Super [iq_132]</li>
<li>Windows 10 support [barry]</li>
<li>Updated the libpng library to v1.6.17 [barry]</li>
<li>Synced sets with MAME 0.161 [barry, JacKc]</li>
</ul>
<h3>v0.2.97.35</h3>
<ul>
<li>Fixed VS Block Breaker / Saru-Kani-Hamu-Zou on Super Kakeko Nova System is now fully working/playable [dink]</li>
<li>Fixed Ken-Go on Irem m72 hardware [dink]</li>
<li>Fixed graphics glitching/screen flashing in Mr. Heli / Battle Chopper [dink]</li>
<li>Fixed bad static/clipping noise on several Neo-Geo games (Art of Fighting, Football Frenzy, etc) with FM Interpolation [dink]</li>
<li>Fixed unclear/staticy sample/instruments in all games on Irem m72 hardware [dink]</li>
<li>Fixed sound in Renegade, replacing custom ADPCM with MSM5205 [barry, Alex Jackson]</li>
<li>Reduced MSVC compiler optimisation level (fixes Tetris Plus 2 and maybe others) [barry]</li>
<li>Fixed Thunder Dragon 2 sprite priorities and missing instruments/sounds [dink]</li>
<li>Fixed background glitching in level 2 of R-Type Leo [dink]</li>
<li>Fixed Turbo Force sprite priorities [dink]</li>
<li>Fixed broken music in Hammer Away level 2+, including a fix to the rf5c68 pcm core buffer handling [dink]</li>
<li>Fixed distorted music in Air Duel after the level 1 boss [dink]</li>
<li>Fixed Karnov - broken after updating to the latest Musashi core [dink]</li>
<li>Fixed Vapor Trail running too slow (vblank timing) [dink]</li>
<li>Fixed Land Stalker (Megadrive), hang after character selection [dink]</li>
<li>Fixed SFX and music in Bucky O'Hare, improve synchronization [dink, iq_132]</li>
<li>Fixed Sega GP Rider hang at start [dink]</li>
<li>Fixed highlights in Mystic Warriors and other konamigx games [iq_132]</li>
<li>Added driver for SunA 8-bit games: Hard Head, Hard Head 2, Super Ranger, Sparkman and Star Fighter [iq_132]</li>
<li>New Game Info feature, with history.dat support, pcb, marquee, in-game, boss, marquee, flyer, pcb and more [Barry]</li>
<li>Add Aetherbyte Santatlantean to the PC Engine driver [dink]</li>
<li>Misc. Konami driver cleanups [iq_132]</li>
<li>Preserve NEC v25/v35 decode pointer on state load/save, fixes savestate issues with Ken-go and other V25/V35 games that use encryption [dink]</li>
<li>Added driver for Tecmo Bowl [iq_132]</li>
<li>Fixed MSM5205 sound in Tecmo Bowl [barry]</li>
<li>Added driver for Zaxxon, Super Zaxxon and Congo Bongo [vbt, iq_132]</li>
<li>Added Fantasy Zone Time Attack bootleg to the Sega System-16B driver [Barry]</li>
<li>Fixed Battle Bakraid crash in level 5 at the first mid-boss [dink]</li>
<li>Added Battle Garegga Zakk version [dink]</li>
<li>Added clone of Dungeons & Dragons - Shadow Over Mystara (960208 Asia) [ArcadeHacker, The Dumping Union, JacKc]</li>
<li>Fixed warped record tempo effect in Exed Exes and Vulgus [dink]</li>
<li>Fixed music and flipped screen-on-coinup issue in Terra Cresta [dink]</li>
<li>Fixed music in the game Blue Print [dink]</li>
<li>Added game Grasspin to the Blue Print driver [dink]</li>
<li>Added driver for Gulf Storm, The Last Day, Pollux, Blue Hawk, Sadari, Flying Tiger, Gun Dealer '94, Super-X, R-Shark and Pop Bingo on Dooyong hardware [iq_132]</li>
<li>Added Uncle Poo to the Jack and the Giantkiller driver [dink]</li>
<li>Added clone of Capcom World 2 (920611 Japan, alt) [Bonky0013, manimani, JacKc]</li>
<li>Added driver for Konami's Finalizer [iq_132]</li>
<li>Added clone of Battle K-Road (alternate sound) [Manuel Assoni, JacKc]</li>
<li>Slightly improved the music/sfx in Wyvern-F0 [dink]</li>
<li>Sync the Psychic5 driver romsets with MAME [JacKc]</li>