forked from barry65536/FBAlpha
-
Notifications
You must be signed in to change notification settings - Fork 5
/
whatsnew.html
4872 lines (4694 loc) · 327 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>
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.44</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Fixed crash when selecting Super Speed Race Junior in the Game List [Barry]</li>
<li>Fixed Use / Select buttons were swapped in Dungeons & Dragons - shadow over mystara [barbudreadmon]</li>
<li>DAC: Internalized the stream synchronization, driver callbacks no longer required [dink]</li>
<li>Added ProcessAnalog() to the joyprocess device, for easy analog hookups and scaling during driver development [dink]</li>
<li>Fixed SCI's analog handling so all the sounds can be selected in service mode [dink]</li>
<li>Fixed attract mode in Super Hang-on [dink]</li>
<li>Fixed protection issues (inputs stop responding, etc) after using savestates with Fatal Fury 2 and Super Sidekicks/Tokuten Ou [dink]</li>
<li>Fixed analog paddle input for Player 2 in VS Block Breaker / Saru-Kani-Hamu-Zou [dink]</li>
<li>Fixed CPS-2 default button mappings in games with more than 3 buttons [Barry]</li>
<li>Fixed zipname sort order when parent does not meet filter criteria [Barry]</li>
<li>Added "headache filter" hack/dip option to Cyvern [dink]</li>
<li>Make pgm.zip the BIOS set for dmnfrntpcb, svgpcb, thegladpcb [Barry]</li>
<li>Place favorites at the top of the Kaillera game list for easier game hosting [dink]</li>
<li>Fixed game list sorting with parent/clone games of different manufacturers when using Hardware checkboxes [dink]</li>
<li>Fixed roz-glitch on the side of the screen in Valkyrie (Namco System 2) [dink]</li>
<li>Fixed Player 2 Inputs in Snow Bros. 2 [dink]</li>
<li>Hooked up proper redraw for Data East DEC-0 games to eliminate frame advances when the system requests a window redraw [dink]</li>
<li>Hook up i8035 cpu support in the i8039 core [dink]</li>
<li>Marked Night Slashers as 3 Players, which can be set in the Game Options in Service Mode. The game defaults to 2 players [dink]</li>
<li>Fixed "Bad Hardware" error on some Arkanoid bootlegs with no mcu [dink]</li>
<li>Ported GI SP0256 Speech Processor/Synthesizer and hooked up to Hole Land and Sauro [dink]</li>
<li>Added option to allow selecting a .bmp or .png file to use as the skin when FB Alpha is not playing a game [Barry]</li>
<li>When using Double Size (windowed), run Popeye, Syvalion and Hole Land single sized as they are double-sized to begin with [dink]</li>
<li>Fixed Gigas parent set and marked as working [dink]</li>
<li>Fixed Arcadian/Rapid Hero: "Stage 3" text goes under mothership [dink]</li>
<li>Fixed slight timing issue in Gunnail [dink]</li>
<li>Added layer 0, 1 transmasking / category feature to tilemap system [iq_132]</li>
<li>Added < tilesize column scroll to tilemap system [iq_132]</li>
<li>Added color effect to 1945kiii sprites [AJR, iq_132]</li>
<li>Fixed clicking noise in Syvalion @ the robot-chicken boss [dink]</li>
<li>Fixed glitchy raster effects in Chiki Chiki Boys and Captain Commando on Capcom CPS1 (Draw at VBL instead of end of frame) (1/2) [dink]</li>
<li>Changed CPS-1/2 to run for 262 scanlines and set refresh rate to 59.63Hz (2/2) [Barry]</li>
<li>Changed Super Street Fighter 2 Turbo, Hyper Street Fighter 2, Street Fighter 2 Champion Edition and Street Fighter 2 Hyper Fighting to run at a speed that more closely matches the PCB [Barry, RN]</li>
<li>Fixed in Double Dragon: sprite flickers and crash after the end boss, also improvements for netplay and input recordings [dink]</li>
<li>Fixed graphics corruption in Streets of Rage 2 stage 3 pirate ship scene [dink]</li>
<li>Added Action, Run 'n Gun and Strategy genres to the genre filters [dink]</li>
<li>Endian fixes for the Nec v20-v35 cpu interface, Sega Sys18 Genesis VDP, Raiden II/DX, Zero Team, Dynamite Duke/The Double Dynamites [dink]</li>
<li>Fixed graphics issues in Konami's Escape Kids [dink]</li>
<li>Fixed dips in Toaplan's Knuckle Bash [dink]</li>
<li>Port TMS5110 Speech Synthesizer core to FBAlpha for Bagman [dink]</li>
<li>Fixed 32/64bit state compatibility issue in Gauntlet [dink]</li>
<li>Hook up proper redraw in most Sega/Taito drivers, and other misc drivers to improve input recording and netgame synchronization [dink]</li>
<li>Fixed savestates in Renegade / Kunio Kun [dink]</li>
<li>Expose registers in the Z80 cpu interface [Barry]</li>
<li>Auto-map keyboard controls (for Spectrum, etc) [Barry]</li>
<li>Add "WZ" register support to Z80 core [Kev]</li>
<li>Slight improvement to Omega Fighter (UPL)'s prot [Kale]</li>
<li>Tiny VDP fixes from VDP tests to the SMS VDP [Kev]</li>
<li>Use resnet to calculate Donkey Kong's palette for better looking steel girders [dink]</li>
<li>Fixed Insector-X, Chuka Taisen and certain The New Zealand Story Clones on Taito's The New Zealand Story Hardware [dink]</li>
<li>Worked around a video driver bug that caused a blank screen when switching to fullscreen mode at certain resolutions [dink]</li>
<li>Added CPU_IRQSTATUS_HOLD support and update some buggy opcodes on the m6800 cpu core [dink]</li>
<li>Fixed 2p inputs for Monster Maulers and Martial Champ [dink]</li>
<li>Fixed service mode for all games on Konami Mystic Warriors Hardware [dink]</li>
<li>Sync. romsets with MAME 0.199 [Barry]</li>
<li>Fixed region dips in Batsugun, Dogyuun, V-Five/Grindstormer [dink]</li>
<li>OKI MSM6295 API change: MSM6295Exit, MSM6295Reset and MSM6295Update called without chip# param takes care of all open chips [dink]</li>
<li>Fixed Freeplay and Service Mode in Galaga [dink]</li>
<li>Fixed dips in Side Arms [dink]</li>
<li>Fixed Service Mode, Sprite:Sprite alpha, sprite masking, English voices and end boss issues in Dragon Gun [dink]</li>
<li>Air Buster driver gets a re-write [iq_132, dink (timing)]</li>
<li>Diver Boy driver gets a re-write [iq_132]</li>
<li>Hook up sample player for Crazy Climber, Crazy Kong & Crazy Kong pt.2 [dink]</li>
<li>Re-work 8255ppi to support up to 10 devices [dink]</li>
<li>Fixed bad sprite colors in Contra [dink]</li>
<li>Fixed crash in Shadow Dancer at the boss fight at end of level 2 [dink]</li>
<li>Added alpha transparency effects to Wizard Fire / Dark Seal 2 [dink]</li>
<li>Fixed screen layout issue and clicky samples in Cabal [dink]</li>
<li>M6800-series gets multi-cpu support [dink]</li>
<li>Improved timing for M6800, M6809, M6502 cpu's [dink]</li>
<li>Added M6809GetPrevPC() to M6809 cpu core [dink]</li>
<li>Fixed erratic movement when moving fast while using mouse to control Lightgun/analog games [dink]</li>
<li>Added analog-style paddle inputs to burn_gun device, with velocity [dink]</li>
<li>Added device for common IREM M52-M62 sound hardware [iq_132]</li>
<li>Improvements to vector-based drawing [iq_132, dink]</li>
<li>Added BurnGunDrawTargets() to burn_gun device [dink]</li>
<li>Added ability to unmap memory in the m6502 cpu core [iq_132]</li>
<li>Hook up real C-Chip for Operation Wolf and remove the C-Chip simulation code, big thanks to Caps0ff for dumping this! [dink, Caps0ff]</li>
<li>Work around graphics corruption in the crystal ball in Altered Beast set 8 (parent set) [dink]</li>
<li>Ported SP0250 speech synth core, for Sega G80 [dink]</li>
<li>Added multi-cpu support to the i8039 cpu core (for G80 Vector + Sega's Universal Sound Board emulation) [iq_132]</li>
<li>Fixed some small video issues in Pac-Land [dink]</li>
<li>Fixed sound issues with Space Invaders [iq_132]</li>
<li>Added ability to change the sample playback rate in the sample engine [iq_132]</li>
<li>Upgraded Zodiack driver to use Generic Tilemaps, fixed sound-comms issue, and added bounty2 [iq_132]</li>
<li>Fixed dips and improved timing in Mr. Do's Castle [dink]</li>
<li>Improve soundcpu sync in Nostradamus / remove rom patch [dink]</li>
<li>Added fix for Laser Ghost gun positioning problems []</li>
<li>Added UI Feature "Show Game list at start-up" under Misc -> Options [dink]</li>
<li>Un-break Twin Hawk / Daisenpu (regression from C-Chip updates) [dink]</li>
<li>Hot-fix Sega MasterSystem's Rainbow Islands to work around a crash in the ending sequence (happens on real HW, too) [dink]</li>
<li>Bank Panic / Combat Hawk driver gets a re-write [iq_132]</li>
<li>SN76496/SN76489 chip now supports up to 8 chips [dink]</li>
<li>Added Bitmap Manager with transparent/scroll copy, clipping, prios, and more [iq_132]</li>
<li>Capcom CPS3: support rowscroll for fg (character) layer, fixes player 2 hit counter in JoJo games. [Haze]</li>
<li>Capcom CPS3: fixed some gfx glitches in the JoJo games, and possibly others [dink]</li>
<li>Fixed Pac 'n Pal boot problem [dink]</li>
<li>Fixed flickery main sprite in Ozma Wars [dink]</li>
<li>Added per-chip routing and volume to the Pokey chip [dink]</li>
<li>Slight improvement to Karate Champ's dac [dink]</li>
<li>Fixed dip issues, cpu sync and other misc issues in GAPLUS / Galaga 3 [dink]</li>
<li>Added BurnSoundDCFilter() to burn_sound.cpp/h for games with problematic dac/chips [dink]</li>
<li>Slight improvement to dac sound in Grobda [dink]</li>
<li>Fix sporatic crashes with Garyo Retsuden and Itazura Tenshi [dink]</li>
<li>Fix controls in Moonwar and clone [dink]</li>
<li>Megadrive, set 32column mode defaults (DIPs) to "center" instead of "zoom" [dink]</li>
<li>Set correct hz rate for Deco Cassette, BurgerTime/Bump 'n Jump and Wardner [dink]</li>
<li>Fix priority issues in Gradius II [dink]</li>
<li>Cheat engine: only undo value if cheat is flagged to do so [dink]</li>
<li>Fix L/R volume issue in MSM5205 sound core [dink]</li>
<li>Fix soundcpu breaks on state load w/Darius [dink]</li>
<li>Fix for bad sample address calculation in Irem M90 (Risky Challenge et all) [dink]</li>
<li>Fix for lost cycles in Z80 interface, causing what gets returned by ZetRun() and ZetTotalCycles() to be different. This affected games where a nmi was used to pull each sample from the z80, namely Darius [dink]</li>
<li>IREM M72: Improved DAC Synchroniztion, slight sound quality improvement with DAC sounds, huge improvement when coupled with the Z80 cycle fix above. [dink]</li>
<li>Improvements to the tilemap system: add support for drawing to generic bitmaps, fix bug when setting row/col scroll, disable checks if not in debug for speed, add "dirty" tile drawing manager [iq_132]</li>
<li>Added Atari EEROM (x2212) device [dink]</li>
<li>Fix distorted Kanji text in jojoba's (CPS3) service mode [dink]</li>
<li>Enabled highscore saving for all CPS1/2 [barbudreadmon]</li>
<li>Add Twins (booleg of Mega Twins) [barry, ClawGrip, Roberto Fresca, Recreativas.org, The Dumping Union]</li>
<li>Updates to Boulderdash Part 2's sound section to hopefully fix a hang [dink]</li>
<li>Transfer FBAlpha project to GitHub [Barry]</li>
<li>Added BurnSoundClear() to burn_sound.h, include burn_sound.h in burnint.h [dink]</li>
<li>Fix for Driftout titlescreen fade-effect (garbage on screen) [dink]</li>
<li>Fix Metal Freezer Difficulty DIP [gamez fan]</li>
<li>Added fix for sound dies in Boulder Dash [dink]</li>
<li>Fixed some leaky file handles [Kev]</li>
<li>Fixed Kanji text colors in Super World Stadium '92 / '93 [dink]</li>
<li>Updated libpng to 1.6.35 [Barry]</li>
<li>Fixed some GCC 7 warnings and MSYS2 compile [Barry]</li>
<li>add SEK_REG_PPC to SekDbgGetRegister() [dink]</li>
<li>Sync romsets with MAME 0.203 [Barry]</li>
<li>Enable palette viewer for NeoGeo [dink]</li>
<li>Fix for scrolling issue in last level of Earth Joker [Haze]</li>
<li>Speed tweaks for Street Fighter 2: Hyper Fighting to more closely resemble PCB [RagingNoob]</li>
<li>Fix DAC sound in Back Street Soccer [dink]</li>
<li>Fix sprite masking issue in Undercover Cops: Alpha Renewal [dink]</li>
<li>Fix end of level player shadow sprite masking issue in The Simpsons [dink]</li>
<li>Fix input issue in Saturnzi (Saturn), certain moves triggered service mode [dink]</li>
<li>Fixed Donkey Kong II: Jumpman Returns (dkongx) eeprom and savestates issues [dink]</li>
<li>M6502Idle(): return cycles idle'd [dink]</li>
<li>More endian fixes to the 68k cpu interface [dink]</li>
<li>Sync romsets with MAME 0.204 [Barry]</li>
<li>Hook up YM2151 to the BurnTimer (optional), as some games need more precision [dink]</li>
<li>Rewrite/Modernize driver for Green Beret [iq_132]</li>
<li>Fixed Sonic Boom screen flipped [dink]</li>
<li>Slight reduction in tile:sprite lag in Flak Attack / MX5000 [dink]</li>
<li>Add support for HDD images to FBAlpha [Barry]</li>
<li>Remove C++11 dependancies for Killer Instinct [Barry]</li>
<li>Add BurnTrackball device, hook-up Cabal, Centipede and Millipede [dink]</li>
<li>Fix sound pitch in PsikyoSH games (Gunbird 2) [dink]</li>
<li>Update Visual Studio IDE project and support for VS2017 [Kev]</li>
<li>Fixed missing "Insert Coin" message in Fuukifg3 games Asura Blade/Buster [dink]</li>
<li>Port and create interface for YMF262 FM soundcore [dink]</li>
<li>Hook-up YMF262 to Fuukifg3 - fixes missing fm-synth sounds [dink]</li>
<li>Hook-up YMF262 to Tecmosys, fixes sound for Deroon DeroDero and Toukidenshou - Angel Eyes [dink]</li>
<li>Fixed loop sample stop issue in YMZ280b, which caused glitches in Tecmosys games [dink]</li>
<li>Fixed missing half of image in Darkseal's attractmode intro (rowscroll bug) [dink]</li>
<li>Fixed music tempo and savestate issues in Darkseal [dink]</li>
<li>Fixed some issues compiling w/latest official MingW w/GCC 6.3.0 and 8.2.0 (@osdn) [dink]</li>
<li>Sync romsets with MAME 0.205 [Barry]</li>
<li>Add high score saving to Cyber Lip, Ghost Pilots, Last Resort, Metal Slug X and Nam1975 [Riddler]</li>
<li>Update FD1089 decryption to use the Sega key format (Update your romsets!) [Barry]</li>
<li>Fix possible crash in Mazinger Z [dink]</li>
<li>Fix player 2 inputs in Suna's Ultra Baloon [dink]</li>
<li>Fix possible crash and savestate issues in TaitoF3 [dink]</li>
<li>Improve inputs for JoJo and JoJo's Bizarre Adventure [barbudreamon]</li>
<li>Fix crackly sounds in some Puchi Carat tunes [dink]</li>
<li>Fix crackly sounds in Xexex's attract mode during lots of explosions (int16/mixing overflow) [dink]</li>
<li>Fix Tetris the Grand Master 2 - running at half-speed [dink]</li>
<li>Fix missing text in Magical Crystals Bonus game (prio issue) [dink]</li>
<li>Fix possible unwanted frame advance while paused in all Kaneko16 games [dink]</li>
<li>Fix crash loading 1000 Miglia (gtmr) after loading Magical Crystals or Wing Force [dink]</li>
<li>Fix random crash in Mazinger Z [dink]</li>
<li>Fix Taito F3 states, missing graphics after state load from a cold-boot [dink]</li>
<li>Added missing player 2 button #3 to Violence Fight [dink]</li>
<li>Fix NeoGeo memory cards [Barry]</li>
<li>Update FD1089 games to use Sega-style format [Barry] *update your romsets!!*</li>
<li>Improved JoJo/JoJoba inputs [barbudreadmon]</li>
<li>Fix 1943 bootlegs protection issue (flashing screen) [dink]</li>
<li>Dragonball Z/Dragonball Z 2, impliment sprite dma - fixes missing/flickering sprites & text, fix service mode (F2) [dink]</li>
<li>Updated Gauntlet protection, game can now progress past level 28 [iq_132]</li>
<li>Finished Carnival (Vic Dual WIP) - fix bugs / add sound [dink]</li>
<li>Neo Geo CD gets dink-style upgrade/fix/rework<ul>
<li>DAO .bin/cue and TruRip (.ccd/.sub/.img [based on Jan Klaassen's work]) support added</li>
<li>Seamless per-game savestates and input config</li>
<li>S.S.RPG, Double Dragon, Last Blade 2 works now</li>
<li>Fast loading times (even faster with F1/ffwd)</li>
<li>Dozens of bugs fixed</li>
<li>Convert your old-style Neo Geo CD .iso + .wav's to .bin/.cue, <a href="http://neo-source.com/index.php?topic=2487.msg26465#msg26465"> <b>>> click for howto <<</b> </a></li>
<li>Big thanks to Silanda and barbudreadmon for bug reports, ideas, talks and HW tests</li>
</ul></li>
<li>Sync romsets with MAME 0.206 [Barry]</li>
<li>Hook up analog dials for Pachinko Sexy Reaction 1 & 2 [dink]</li>
<li>Fix crash issue with Tecmo Bowl when playing via Keyboard [dink]</li>
<li>Add RESET Line to Z80 cpu interface [dink]</li>
<li>Fix graphics issues in Superior Soldiers (background gfx) and Gun Force (titlescreen) on Irem m92 [dink]</li>
<li>Fix Localisation Template [Barry]</li>
<li>Sync romsets with MAME 0.207 [Barry]</li>
<li>Fix 2p controller on Colecovision [dink]</li>
<li>Fix sound in Baseball Stars and NAM-1975 when using alternate MVS bioses [dink]</li>
<li>Update DJ Boy's romsets, convert driver to use Generic Tilemaps, improve cpu sync (fixes lost music during game) [iq_132, dink]</li>
<li>Fixed savestates in Birdie Try [dink]</li>
<li>Slapfight/Alcon, Tiger Heli, Performan, Getstar/Guardian driver re-write [iq_132]</li>
<li>Add Highscore support for all NeoGeo games [Barbudreadmon]</li>
<li>Pound for Pound (IREM) finished and now working [dink]</li>
<li>Hooked-up / ported Z80 CTC and PIO chip emulation for Senjyo and MCR [dink]</li>
<li>Fixed erratic coin inputs with some PGM games [dink]</li>
<li>Sync romsets with MAME 0.208 [Barry]</li>
<li>Add handy BurnDump(fn, buf, bufsize); to debug builds for driver-dev [dink]</li>
<li> []</li>
</ul>
<!-- new drivers -->
<h4>New drivers</h4>
<ul>
<li>Added driver for Flipper Jack [iq_132]</li>
<li>Added driver for Espial and Net Wars [iq_132]</li>
<li>Added driver for Alpine Ski, Bio Attack, Elevator Action, Front Line, Jungle Hunt / Jungle King, Tin Star, Sea Fighter Poseidon, Space Seeker, Space Cruiser, Time Tunnel, Water Ski and Wild Western on Taito's SJ System [iq_132, dink]</li>
<li>Added driver for One Shot One Kill and Mad Donna [iq_132]</li>
<li>Added driver for Miss Bubble 2, Bubble Pong Pong [iq_132]</li>
<li>Added driver for Black Touch '96 [iq_132]</li>
<li>Added driver for Blockade, Blasto, Hustle, CoMOTION and Mine Sweeper [iq_132, dink]</li>
<li>Added driver for Space Firebird [iq_132, dink]</li>
<li>Added driver for Empire City: 1931 / Street Fight [iq_132, dink]</li>
<li>Added driver for Hole Land [iq_132, dink]</li>
<li>Added driver for SunA Goindol [iq_132]</li>
<li>Added driver for Jolly Jogger and Frog & Spiders [iq_132]</li>
<li>Added driver for SpeedBall [iq_132]</li>
<li>Added driver for Ping Pong Masters '93 [iq_132]</li>
<li>Added driver for Bagman, Super Bagman, Botanic, Pickin' and Squash [iq_132]</li>
<li>Added driver for Tag Team and The Big Pro Wrestling by Technos [iq_132]</li>
<li>Added driver for ZX Spectrum based games [Barry]</li>
<li>Added driver for El Fin Del Tiempo (The End of Time) by Niemer [iq_132]</li>
<li>Added driver for Mat Mania/Exciting Hour/Mania Challenge by Technos [iq_132, dink]</li>
<li>Added driver for Super Duck [iq_132]</li>
<li>Added driver for Thunder Ceptor I and II by Namco [iq_132, dink]</li>
<li>Added driver for D-Day by Olympia [iq_132, dink]</li>
<li>Added driver for D-Day by Jaleco [iq_132]</li>
<li>Added driver for Pinball Action [iq_132]</li>
<li>Added driver for Head On Bootleg on Dedicated Hardware [iq_132]</li>
<li>Added driver for Stadium Hero [iq_132]</li>
<li>Added driver for Go 2000 [iq_132]</li>
<li>Added driver for Tempest [dink]</li>
<li>Added driver for Defender, Stargate, Joust, Robotron 2084, Blaster, Sinistar, Jin, Splat, Bubbles and Colony 7 on Williams 6809 Hardware [iq_132, dink]</li>
<li>Added driver for Asteroids, Asteroids Deluxe and Lunar Lander [iq_132, dink]</li>
<li>Added driver for Shisen Sho / Match It [iq_132]</li>
<li>Added driver for Moon Patrol by IREM on M52 hardware [iq_132]</li>
<li>Added driver for Tropical Angel by IREM on M57 hardware [iq_132]</li>
<li>Added driver for Omega Race [iq_132, dink]</li>
<li>Added driver for Star Wars and The Empire Strikes Back [iq_132, dink]</li>
<li>Added driver for 10 Yard Fight on IREM M58 Hardware [iq_132]</li>
<li>Added driver for Gaelco's Target Hits [iq_132]</li>
<li>Added driver for Night Driver by Atari [iq_132]</li>
<li>Added driver for Tank Busters by Valadon Automation [iq_132]</li>
<li>Added driver for Mirage Youjuu Mahjongden [iq_132]</li>
<li>Added driver for Sega's VCO Object/Z80-3D hardware (WIP) for Turbo, Subroc-3d, Buck Rogers/Zoom909 *WIP/Unfinished!* [iq_132]</li>
<li>Added driver for Super Trivia Master and Progressive Music Trivia [iq_132]</li>
<li>Added driver for Tac/Scan, Star Trek, Zektor, Eliminator and Space Fury on Sega's G80 Vector HW [iq_132, dink]</li>
<li>Added driver for Atari's Quantum [iq_132]</li>
<li>Added driver for Atari's Black Widow, Gravitar and Space Duel [iq_132]</li>
<li>Added driver for Atari's Red Baron and Battle Zone [iq_132, dink]</li>
<li>Added driver for Atari's Major Havoc [iq_132]</li>
<li>Added driver for NMK's (Jaleco licensed) Argus, Valtric and Butasan (Pig's and Bomber's) [iq_132, dink]</li>
<li>Added driver for Konami's Dive Bomber Squad prototype [iq_132]</li>
<li>Added driver for Atari's Return of the Jedi [iq_132]</li>
<li>Added driver for Atari's Cloud 9 and Firebeast [iq_132]</li>
<li>Added driver for Atari's Crystal Castles [dink]</li>
<li>Added driver for Hydra and Pit Fighter [iq_132]</li>
<li>Added driver for Badlands [iq_132]</li>
<li>Added driver for Batman [iq_132]</li>
<li>Added driver for Blasteroid [iq_132]</li>
<li>Added driver for Escape from the Planet of the Robot Monsters [iq_132]</li>
<li>Added driver for Klax [iq_132]</li>
<li>Added driver for Off The Wall *WIP/Not working* [iq_132]</li>
<li>Added driver for Ramparts *WIP* [iq_132]</li>
<li>Added driver for Atari Arcade Classics Prototype [iq_132]</li>
<li>Added driver for Relief Pitcher [iq_132]</li>
<li>Added driver for Shuuz [iq_132]</li>
<li>Added driver for Skull and Crossbones [iq_132]</li>
<li>Added driver for Thunder Jaws [iq_132]</li>
<li>Added driver for Toobin' [iq_132]</li>
<li>Added driver for Vindicators [iq_132]</li>
<li>Added driver for Xybots [iq_132]</li>
<li>Finish Midway Wolf Unit emulation, making MK3, UMK3 and Rampage World Tour playable w/sound [Barry, dink, iq_132]</li>
<li>Added driver for Midway T Unit, working games: MK, MK2 [Barry, dink]</li>
<li>Added driver for Incredible Technologies 32/16bit games [iq_132, dink]</li>
<li>Added driver for Taito's Gunbuster [iq_132]</li>
<li>Added driver for Taito's Ground Effects / Super Ground Effects [iq_132, dink]</li>
<li>Added driver for Liberation, Boomer Rang'r and Kamikaze Cabbie by DataEast [iq_132]</li>
<li>Added driver for Taito's Under Fire and Chase Bombers [iq_132, dink]</li>
<li>Added driver for Taito's Qix, Zookeeper, Slither, Space Dungeon, Complex X, Kram and The Electric Yo-Yo [iq_132, dink]</li>
<li>Added driver for Taito's Kiki KaiKai/Knight Boy and Kick and Run/Mexico '86 [iq_132, dink]</li>
<li>Added driver for Senjyo, Baluba-Louk no Densetsu, Starforce/Megaforce [iq_132]</li>
<li>Added driver for Tapper, Timber, Tron, Discs of Tron, Solar Fox, Satan's Hollow, Kick/Kickman, Kozmik Krooz'r, Wacko, Domino Man, Two Tigers, Journey and Demolition Derby on Bally-Midway MCR hardware [iq_132, dink]</li>
<li>Added driver for Spy Hunter, Rampage, Sarge, Star Guards, and Crater Raider on Bally-Midway MCR3 hardware [iq_132, dink]</li>
</ul>
<!-- new game additions to existing drivers -->
<h4>New additions / updates to existing drivers</h4>
<ul>
<li>Add World Heroes 2 (ALH-006) to the Neo Geo driver [Barry, Razoola]</li>
<li>Add V-Liner (v0.54, v0.7a and 0.7e) to the Neo Geo driver [Barry, Razoola]</li>
<li>Add English fan translations of the following Megadrive games: Battle Golfer Yui, Fushigi no Umi no Nadia, Psy-O-Blade, Rent a Hero, Bishoujo Senshi Sailor Moon and Vixen 357 [barbudreadmon]</li>
<li>Add Streets of Rage 2 Puyo Wars Hack to Megadrive Driver [barbudreadmon]</li>
<li>Add Star Chaser homebrew game to Megadrive Driver [barbudreadmon]</li>
<li>Add Shining Tactics Absolute Final Edition (Hack) to Megadrive [barbudreadmon]</li>
<li>Add English fan translations of the following GameGear games: Lunar - Sanposuru Gakuen, Madou Monogatari I - 3-Tsu no Madoukyuu, Megami Tensei Gaiden - Last Bible S, Phantasy Star Gaiden, Shining Force Gaiden - Final Conflict and Sylvan Tale [barbudreadmon]</li>
<li>Add Ghost Pilots (prototype) to the Neo Geo driver [Barry, Razoola]</li>
<li>Add Royal Stone English translation the SMS/GameGear driver [barbudreadmon]</li>
<li>Add Titan (Pac-Man hack) to the Pac-Man driver [Craig Anstett, CraftyMech, JacKc]</li>
<li>Add Kabuki-Z to the public builds of FB Alpha - somehow this was overlooked, sorry about that! [dink]</li>
<li>Add Ikki, Strength and Skill, and Banbam to the Markham driver [iq_132]</li>
<li>Add Toki no Senshi - Chrono Soldier as parent, older version is actually a prototype [Barry]</li>
<li>Add support for Neo-Geo Universe BIOS 3.3 [Barry, Razoola]</li>
<li>Add Neo Geo BIOS (NEO-MVH MV1C, Japan) [Barry, Razoola]</li>
<li>Add Neo Geo BIOS (sp1-u4, US) [Barry, ack]</li>
<li>Add Vindicators II to the Gauntlet driver [iq_132]</li>
<li>Add Street Fighter 2 Red Wave Pt II [Barry, okada yuko]</li>
<li>Add English translations for Sonic Eraser and Barver Battle Saga to the Megadrive driver [barbudreadmon]</li>
<li>Add Tanglewood v1.0 and demo to the Megadrive driver [dink]</li>
<li>Add Flight of Pigarus v1.0 by Kagesan to the SMS driver [dink]</li>
<li>Add Blaze On (World), making it the new parent [rtw, The Dumping Union]</li>
<li>Add Ultimate Mortal Kombat 3 Tournament Edition and Ultimate Mortal Kombat 2 Tournament Edition hacks [dink]</li>
<li>Add Waku Waku Ultraman Racing to the Sega System 16B driver [Barry]</li>
<li>Add Kof '98 Plus Final Edition (kof98pfe) & Kof 10th Anniversary (kof10thd) hacks to Neo Geo [barbudreadmon]</li>
<li>Add Pastel Island to SSV (big thanks to Haze!) [dink]</li>
</ul>
<!-- clones and updated romsets in drivers -->
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Added clone of Marvel Super Heroes (951024 Brazil) to the CPS-2 driver [Barry, SHVB, The Dumping Union]</li>
<li>Added clone of Sengoku 3 / Sengoku Densho 2001 (Set 2) to the Neo Geo driver [Barry, Razoola]</li>
<li>Added clone of Final Fight (900405 Japan) to the CPS-1 driver [Barry, bonky0013, Manimani, The Dumping Union]</li>
<li>Added clone of Street Fighter II' - Champion Edition (Level Select bootleg, 920322 USA) to the CPS-1 driver [Barry, hammy, The Dumping Union]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 USA bootleg sets 8,9 and 10) to the CPS-1 driver [Barry]</li>
<li>Added clone of Naughty Boy (bootleg, set 2) [f205v, Matteo, JacKc]</li>
<li>Added clone of Donkey Kong Junior (US, bootleg?) [unknown, JacKc]</li>
<li>Added clone of Karate Blazers (Tecmo license) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of Last Mission (World revision 8 ) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of The King of Dragons (ETC 910731) [Sergio Galiano, Recre_Piscis, Spain, JacKc]</li>
<li>Added clone of Knights of Valour 2 Plus - Nine Dragons / Sanguo Zhan Ji 2 Qunxiong Zhengba / Sanguo Zhan Ji 2 Feilong Zai Tian / Sangoku Senki Busyou Souha (ver. M200XX, 200, 100CN) [300wins, Bill D., The Dumping Union, JacKc]</li>
<li>Added clone of Metal Slug 3 (NGM-2560, earlier) [Razoola, JacKc]</li>
<li>Added clone of Bubble Memories: The Story Of Bubble Bobble III (Ver 2.5A 1996/02/21) [Arnaldo Abrantes, Pascal Costa, JacKc]</li>
<li>Added clone of Come-Cocos (Ms. Pac-Man) (Cocamatic bootleg) [Darksoft, JacKc]</li>
<li>Added clone of Jump Coaster (World) [ShouTime, THe Dumping Union, JacKc]</li>
<li>Added clone of Hat Trick Hero '95 (Ver 2.6Asia 1994/11/17) [Artemio Urbina, The Dumping Union, JacKc]</li>
<li>Added clone of Strikers 1945 (World, unprotected) [Blackfish, Brizzo, rtw, JacKc]</li>
<li>Added clone of Raiden DX (Portugal) and Raiden DX (Japan, set 2) [Jorge Silva, Atro, Kravex, JacKc]</li>
<li>Added clone of Flicky (64k Version, on Up'n Down boardset) [Jon H., The Dumping Union, JacKc]</li>
<li>Added clone of Ikari Warriors (US, set 2) [Joe Magiera, The Dumping Union, JacKc]</li>
<li>Added clone of WWF WrestleFest (US) [SpinalFeyd, The Dumping Union, JacKc]</li>
<li>Added clone of Biomechanical Toy (Ver. 1.0.1870) [Jorge Casares, Ruben Casa?a, JacKc]</li>
<li>Added clone of Masterboy [Barry]</li>
<li>Added Strahl (World), making Strahl Japan Sets 1 and 2 clones in the NMK16 driver [dink]</li>
<li>Added clone of Landmaker 2.02O World version [SEGV, Brian Troha]</li>
<li>Added Hacha Mecha Fighter location test prototype [Mike Moffitt, Osso13]</li>
<li>Added bootleg of World Cup '90 (twcup90bb) [Barry, Roberto Fresca, Martin Mejia Britez]</li>
<li>Added clone of Super Street Fighter II - the tournament battle [Barry]</li>
<li>Added clone of Street Fighter 2 [Barry, Erik Preston]</li>
<li>Added clone of Street Fighter 2 [Barry, Chris Gleed]</li>
<li>Added bootleg of Warriors of Fate (wofabl) [Barry]</li>
<li>Added clone of Street Fighter 2 (sf2ea) [Barry]</li>
<li>Added clone of Shinobi (unprotected) [Barry, Brian Troha]</li>
<li>Added clone of X-Men: Children of the Atom to CPS-2 driver [Barry, Brad Hicks]</li>
<li>Added clone of Deroon DeroDero (newer) [Farzeno, The Dumpin Union, arcadez]</li>
<li>Added clone of Laser Ghost (Japan) to System 18 [Barry]</li>
<li>Added 2 bootleg clones of Enduro Racer to the Hang On driver [Barry]</li>
<li>Added clone of G-LOC R360 (Japan) to the Sega Y-Board driver [Barry]</li>
<li>Added prototype of Fantasy Zone to the Sega System 16A driver [Barry]</li>
<li>Added 2 clones of Action Fighter to the Sega System 16A driver [Barry]</li>
<li>Added 4 clones of Action Fighter to the Sega System 16B driver [Barry]</li>
<li>Added clone of Fantasy Zone to the Sega System 16A driver [Barry]</li>
</ul>
<h3>v0.2.97.43</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Use real MCU for Tokio [Barry]</li>
<li>Fix state issues with Slap Fight/Tiger Heli [dink]</li>
<li>Fix incremental search and sort alphabetically w/"Use Zipnames". [dink]</li>
<li>Improve incremental search in the game list. This search is when you type at the game list (not the search box) for example: to get to "Super Cobra" really fast, type "superco" - or - "doublew" for "Double Wings". Whatever you are searching for - just leave out the space. If "Use Zipnames" is selected, type in the romset name or a subset of it. [dink]</li>
<li>Fix a few video bugs and state issues in "The Lost Castle in Dark Mist" [dink]</li>
<li>Fix dac sounds in Ultimate Mortal Kombat 3 Trilogy hack [dink]</li>
<li>Fix B-Wings (Alt) set boot issue [dink]</li>
<li>Fix color issues in Gold Medalist [iq_132]</li>
<li>Z80 Core, small improvement to vector handling [dink]</li>
<li>Parents Only option for driver icons (for systems that have problems with driver icons) [dink]</li>
<li>Create new interface and port eke-eke's high quality ym2612 core from Genplus-gx [dink]<ul>
<li>Fixes SFX sounds in Streets of Rage 2</li>
<li>Fixes lead and percussive guitar sounds in Mega Turrican's intro</li>
</ul></li>
<li>Fix crash with NBA Jam Tournament Edition on Megadrive [dink]</li>
<li>Improve 68k timing for Megadrive, fixes... [dink]<ul>
<li>Graphics issues/corruption in Galahad</li>
<li>Flickery separator line in VS mode on Sonic 2 and 3</li>
<li>Fix freeze with Desert Strike on Megadrive</li>
<li>Overall, probably improves everything</li>
</ul></li>
<li>Fix music hangs in Sonic 3 when Sonic is underwater (Z80 timing) [dink]</li>
<li>Fix PGM Arm7 crash on 64bit systems w/theglad, kov* [dink]</li>
<li>Sync. romsets with MAME 0.188 [Barry]</li>
<li>Sync. some romsets with MAME 0.189 [JacKc]</li>
<li>Fix Robocop2 ending credits scrolltext (8x8 offset masking) [iq_132]</li>
<li>Fix for replays desynching with games that use SRAM/NVRAM [dink]</li>
<li>Strikers 1945 Plus music fix [dink]</li>
<li>Fix Palette Viewer for games with BDF_16BIT_ONLY flag [dink]</li>
<li>Port Z180 Core from MAME and create FBAlpha-style cpu interface [Barry, iq_132]</li>
<li>Hook-up Z180 sound-cpu in GHOX [Barry]</li>
<li>Games using flag BDF_16BIT_ONLY are no longer 1-frame behind emulation, other projects using FBAlpha please take note (see intf/video/vid_interface.cpp) [dink]</li>
<li>Fix DAC(psg) sounds in Afterburner II Megadrive [dink]</li>
<li>Added define to log ram usage in src/burn/burn_memory.cpp [iq_132]</li>
<li>Fixed Archery level in Konami's '88 Games [dink, Gab75]</li>
<li>Fixed inputs for Nayade Resistance and Crazy Buggy on MSX [dink]</li>
<li>Hooked up protected versions of Alligator hunt, Touch & Go, Maniac Square in Gaelco2 Hardware [iq_132]</li>
<li>Fixed Music/SFX pitch in Arbalester, and occasional "Illegal Inst." error when playing w/Keyboard [dink]</li>
<li>Hook up protection MCU for protected version of Glass [iq_132]</li>
<li>Fixed palette recalc issue w/some Taito-Z games, fixes weird colors when switching BPP during game [dink]</li>
<li>Fixed cut-short continue message in Data East's Breakthru [dink]</li>
<li>Fixed small memory leaks in dynamic Huffman compression [dink]</li>
<li>Hook up MCU to Tough Turf (U) and Wrestle War, fix Tough Turf (J) [Barry]</li>
<li>Fixed 2-Player mode in Wonder Boy in Monster Land (System1) [dink]</li>
<li>Fixed distorted sounds in Time Pilot, Time Pilot '84, Tutanham and Commando Sega [dink]</li>
<li>Added Single-Screen modes (DIPS) to Gaelco's World Rally 2 and Data East's Backfire! [dink]</li>
<li>Fixed screen corruption at end of race in Hang-On Jr. / v-scrolling issue in Sega System E [dink]</li>
<li>Added notaz's BCD fixes to the Musashi 68k cpu core [dink]</li>
<li>Added i8x41/UPI-41 cpu core [iq_132]</li>
<li>Sync. romsets with MAME 0.191 [Barry]</li>
<li>Fixed occasional distorted graphics in Konami's Jail Break when playing w/Keyboard [dink]</li>
<li>Fixed deroon's inputs (irq timing) [dink]</li>
<li>New feature for Lord of Gun: shoot any side to reload [dink]</li>
<li>Added support for Multi/Connected sprites in Toaplan GP9001 emulation, fixes GHOX's Highscore background [dink]</li>
<li>UI Change, the search box text will be preserved between game loads [dink]</li>
<li>Fix for Use and Select buttons were erraneously swapped in Dungeons & Dragons - Shadow Over Mystara [dink]</li>
<li>Fix spritelag issue in Ryu Jin [dink]</li>
<li>Add missing third button to Life Force (Japan) [dink, gamezfan]</li>
<li>Improve paddle emulation in Gee Bee, Bomb Bee and Cutie Q [dink]</li>
<li>Fix sound issues with Phoenix and savestates [dink]</li>
<li>Fix freeze in Kaitei Takara Sagashi while starting a new game [dink]</li>
<li>Increase the sound level for all Taito F3 games [dink]</li>
<li>Small improvement to the search box. Now, for example "namco system 1", "namco system 2" or "taito f3" can be searched for [dink]</li>
<li>Fix color issues and impliment transmask groups for Mad Gear / Led Storm, fixing level 2+ [dink]</li>
<li>Fix missing tiles and scrolling issues in Last Duel level 2 [dink]</li>
<li>Fixed many graphical issues in Magical Crystals [dink]</li>
<li>Fixed input and sound issues in Zoar [dink]</li>
<li>Fixed timing issue in Burnin' Rubber / Bump 'n Jump [dink]</li>
<li>Fixed p3 / p4 inputs in Bucky and Moo Mesa [dink]</li>
<li>Fixed Kaiser Knuckle 2p Kick buttons [shine]</li>
<li>Fixed transparency issue in Motos [iq_132]</li>
<li>Fixed an input issue in CPS3 when opposite directions are pressed [dink]</li>
<li>Converted 1942 and Gun.Smoke over to the new tilemap system [iq_132]</li>
<li>Updated the ARM core to fix problems with Deco MLC and Deco 156 games [dink]</li>
<li>Fix byte, word, and quad-long DMA Transfers in SH-2 [dink]</li>
<li>Added stereo mode to DAC [dink]</li>
<li>Added bsmt2k and decobsmt soundcores [iq_132, dink]</li>
<li>Fixed sounds/sfx in Gouketsuji Gaiden Legends [dink]</li>
<li>Fixed occasional clicks/pops at the beginning of emulation if the last game played was exited while the msm6295 was playing something [dink]</li>
<li>Fixed the fog-fadeout in the end-boss scene and other alpha-transparency issues in Moo Mesa [dink]</li>
<li>Fixed several minor graphic bugs in Hangzo [dink]</li>
<li>Slight drawing optimization for Robocop 2 and Edrandy [dink]</li>
<li>Fixed bad fades in Ninja Baseball Batman and occasional tilemap studder in R-Type LEO [dink]</li>
<li>Enabled High Score saves for most Irem M72 games [dink]</li>
<li>Fixed k054539 savestates and reverb function [dink]</li>
<li>Fixed graphics issues in Irem's Major Title making the game fully playable [dink]</li>
<li>Fixed music issues in Sol Divide [dink, barbudreadmon]</li>
<li>Added speedhack dip options for Psikyo SH-2 games [barbudreadmon]</li>
<li>Fixed k054539 pt.2: Use 3 different techniques (ramp to 0, check for bad last sample, slight modification to dpcm table) to get rid of clicky noises in 4bit dpcm sfx/voice samples (Moo Mesa, Bucky O'Hare, Mystic Warriors, Violent Storm, etc.) [dink]</li>
<li>Fixed alpha effects in Bucky O'Hare title fadeout, and other transitional scene fades (tile layer 3 over/under sprites priority mode) [dink]</li>
<li>Added Z180 support to BurnTimer [iq_132]</li>
<li>Rewrite/Modernize drivers for 1943, Commando, Jack and the Giantkiller, Mole Attack, Mr. Flea, Route 16, and Bomb Jack [iq_132]</li>
<li>Fixed Safari Hunting on SG-1000, thanks to Eke of Genesis Plus GX for info! [dink]</li>
<li>Fixed palette/color issues in Spelunker 1 and 2 [dink]</li>
<li>Added proper Draw handler to Irem M62 so paused games don't advance a frame during a window update/redraw [dink]</li>
<li>Fixed Input Dialog: Populate the combo list with preset name when saving [Barry]</li>
<li>Fixed broken lines in the boss tank for the M82 version of Air Duel [dink]</li>
<li>Removed rom patch and added proper protection simulation to Route 16 [iq_132]</li>
<li>Removed rom patch and added proper protection simulation to Meta Fox [iq_132]</li>
<li>Fixed Tetrise and Hang-On Jr. dips [dink]</li>
<li>Slight timing improvement for Kicker / Shaolin's Road [dink]</li>
<li>Use event semaphores instead of polling for better DirectSound performance and timing [Jan Klaassen]</li>
<li>Fix another cycle-related issue with ZetRunEnd, fixes sound issues with certain Neo-Geo games [dink]</li>
<li>Enabled High Score saving for most CPS3 games [barbudreadmon]</li>
<li>Fixed some palette issues in Super Burger Time [dink]</li>
<li>Added M6502SetAddressMask() to the M6502 cpu core [iq_132]</li>
<li>Added cubic resampling interpolater to the samples core [Jan Klaassen]</li>
<li>Added speedhack dip options for Deco32 games [gamezfan, dink]</li>
<li>Enabled High Score saving for Raiden [barbudreadmon]</li>
<li>Updated K054539 pt.3, use cubic resampling for high quality sound [dink]</li>
<li>Fixed timers in SN76477 sound core [dink]</li>
<li>Fixed missing cut-scene graphics in Pretty Soldier Sailor Moon [Jan Klaassen]</li>
<li>Update Namco System 2's soundcore w/cubic resampling for high quality sound [dink]</li>
<li>Update Gaelco2 soundcore w/cubic resampling and fix crackle/pop!'s at beginning of samples [dink]</li>
<li>Fixed layer priority masking in Black Tiger [vbt]</li>
<li>Fixed the MSM6295 sampling rate in Batsugun and Truxton2 [yukaritamura (libretro-fba), dink]</li>
<li>Add high-quality ICS2115 (pgm) soundcore from Jan, superior sound quality for all PGM games, fixes KOV2 music [Jan Klaassen]</li>
<li>Update ES5505/6 soundcore w/cubic interp. resampling [dink]</li>
<li>Increase volume in Gyruss and Monster Slider [dink]</li>
<li>Fixed sound loss, palette fade bug and sprite clipping issues in Double Wings [dink]</li>
<li>Added new interface for AY8910, updated all drivers to use it [iq_132]</li>
<li>Emulated sound cpu and hooked up all sounds in Mario Bros. (mario) [dink]</li>
<li>Added Sega TeamPlayer support to the Megadrive driver, enabling it for: Columns 3, Gauntlet 4, Mega Bomberman, Street Racer (...more to come..) [dink]</li>
<li>Fixed player sprite color in Millipede [dink]</li>
<li>Added speech to Gauntlet I and II - TMS5220 sound core ported to FBA [dink]</li>
<li>Added save state support to the Irem M90 driver [dink]</li>
<li>Cleaned up the sound in Donkey Kong to get rid of clicks in some sounds [dink]</li>
<li>Fixed sound hz in Triple Punch and clones [dink]</li>
<li>Standardize savestate calls amongst soundcores [iq_132]</li>
<li>Fixed tilemap and sound synchronization issues in Rohga [dink]</li>
<li>Hook up sound cpu and fix sprite offsets in Pipi & Bibis / Whoopee!! on Teki Paki hardware [dink]</li>
<li>Fixed video and audio issues in Risky Challenge, game now playable [dink, iq_132]</li>
<li>Updated all FM soundcores using the timer system to require a lot less support code per driver (internalized *GetTime and *Synch.Stream) [dink]</li>
<li>Fix the SRam implimentation on Megadrive [dink]</li>
<li>Added EA "Four Way Play" support to Megadrive, enabled for General Chaos and Mutant League Hockey [dink]</li>
<li>Added resampling to the ymf278b sound core, sounds right regardless of user sound rate [dink]</li>
<li>Added a English fan-translations of the following Megadrive games: Battle Mania Daiginjou, Gleylancer, Tougiou King Colossus, Langrisser II, Phantasy Star II Adventure series games, Pulse Man, Twinkle Tale and Undead Line [barbudreadmon]</li>
<li>Fixed color issues on Jupiter and occasional missing pixels on Neptune in Gyruss [dink]</li>
<li>Added CPU_IRQSTATUS_HOLD to hd6309 cpu core [dink]</li>
<li>Fixed ending scene and movement of the rock-wall dragon boss in Labyrinth Runner/Trick Trap [dink]</li>
<li>Use a common timer value when starting netgames on Neo-Geo for better netgame sync. [Ponder]</li>
<li>Added menu option (Misc -> Options) to enable/disable the High Resolution Timer - defaults to ON [dink]</li>
<li>Added Sync. to DWM option for Windows 7 - 10 windowed mode [dink]</li>
<li>Street Fighter II' - Champion Edition now runs at the right speed [dink, Barry]</li>
<li>Fixed crash w/DX9 Blitters when going to the task manager in Win7+ when Auto Pause is off [dink]</li>
<li>Updates to the uPD7810 cpu core [dink, iq_132]</li>
<li>uPD7810 core, update some opcodes and add analog port reading for c-chip [dink, iq_132]</li>
<li>Emulate Taito C-Chip for Superman, Bonze Adventure, Mega Blast, Rainbow Islands / Rainbow Islands Extra and Volfied [dink]</li>
<li>Use 4-Way inputs for Volfied, making the game playable [dink]</li>
<li>Fixed a problem where Bonze Adventure wasn't reading the dips [dink]</li>
<li>Re-work tile:sprite priority system in Taito F2 [dink]<ul>
<li>Pulirula: fixes tile:sprite priorities and blending effects in level 2</li>
<li>Liquid Kids: fixes the cut-scene/story between levels</li>
<li>Metal Black: fixes missing moving letters before the titlescreen appears</li>
</ul></li>
<li>Improved DonPachi and DoDonPachi timing to respond to inputs in 2 frames instead of 4 [dink]</li>
<li>Changed aspect ratio on Tecmo Bowl to look less squished [dink]</li>
<li>Sync. romsets with MAME 0.197 [Barry]</li>
<li>Analog input improvement for Konami GT and RF2 [dink]</li>
<li>Fixed click when paused/dc offset issue in Cheeky Mouse [dink]</li>
<li>Removed busyloop hacks from M6809, HD6309 and M6805 CPU Cores [dink]</li>
<li>Update libpng to 1.6.34 [Barry]</li>
<li>Improved timing in Heavy Unit and Ghosts'n Goblins (revisited) [dink]</li>
<li>Fixed several bugs in the M6805 cpu core [dink]</li>
<li>Fixed "BAD HARDWARE" error message in most versions of Arkanoid [dink]</li>
</ul>
<!-- new drivers -->
<h4>New drivers</h4>
<ul>
<li>Added driver for Pit n Run and Jump Kun [iq_132]</li>
<li>Added driver for Glass by OMK/Gaelco [iq_132]</li>
<li>Added driver for Thunder Hoop 2: TH Strikes Back [iq_132]</li>
<li>Added driver for Manhattan, Highway Chase, Terranean, Astro Fantasia, Super Astro Fighter, Flash Boy, Lock 'n Chase, on Deco Cassette System hardware [iq_132, dink]</li>
<li>Added driver for Pata Pata Panic [iq_132]</li>
<li>Added driver for Pacman - 25th Anniversary Edition and Ms.Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion [iq_132]</li>
<li>Added driver for Data East's Dream Ball [iq_132]</li>
<li>Added driver for Heavy Smash and World Cup Volly '95 on Deco 156 hardware [iq_132]</li>
<li>Added driver for Avengers in Galactic Storm, Stadium Hero '96, Skull Fang, Hoops '96, Dunk Dream '95 and Hoops on Deco MLC hardware [iq_132]</li>
<li>Added driver for Captain America and The Avengers, Fighter's History, Night Slashers, Tattoo Assassins, and Dragon Gun on Deco 32 hardware [iq_132, dink]</li>
<li>Added driver for Popper [iq_132]</li>
<li>Added driver for Mosaic and Golden Fire II [iq_132]</li>
<li>Added driver for Pipe Dream and Hatris [iq_132]</li>
<li>Added driver for The Pit, Round Up/Fitter, Dockman/Portman, Super Mouse/Funny Mouse, Desert Dan and Intrepid [iq_132]</li>
<li>Added driver for 3x3Puzzle and Casanova [iq_132]</li>
<li>Added driver for Toaplan-1 games: Vimana, Outzone, Same! Same! Same!/FireShark, Demon's World, Zero Wing, Hellfire, Truxton and Rally Bike, replacing the older individual drivers [iq_132]</li>
<li>Added driver for Konami's Double Dribble [iq_132, dink]</li>
<li>Added driver for Nibbler, Pioneer Balloon, Fantasy, Vanguard, Sasuke and Commader and Satan of Saturn on RockOla/SNK6502 hardware [iq_132, dink]</li>
<li>Added driver for Car Jamboree [iq_132]</li>
<li>Added driver for Metal Clash by Data East [iq_132]</li>
<li>Added driver for Jibun wo Migaku Culture School Mahjong Hen [iq_132]</li>
<li>Added driver for Metal Soldier Isaac II [iq_132]</li>
<li>Added driver for Xyonix [iq_132]</li>
<li>Added driver and sound core for Flower [iq_132, dink]</li>
<li>Added driver for Mad Motor Prototype [iq_132]</li>
<li>Added driver for Monkey Magic [iq_132]</li>
<li>Added driver for Kangaroo, replacing the old one [iq_132]</li>
<li>Added driver for Pirate Ship Higemaru, replacing the old one [iq_132]</li>
<li>Added driver for Cop 01 and Mighty Guy, due to protection issues, Mighty Guy is without sound [iq_132]</li>
<li>Added driver for Oli-Boo-Chu [iq_132]</li>
<li>Added driver for Super Cross II [iq_132]</li>
<li>Added driver for V-Ball [iq_132]</li>
<li>Added driver for PK Scramble [iq_132]</li>
<li>Added driver for games on Vic Dual hardware *no sound yet* [iq_132]</li>
<li>Added driver for Super Speed Race Jr. [iq_132]</li>
<li>Added driver for American Speedway [iq_132]</li>
<li>Added driver for Space Stranger / 2 [iq_132]</li>
<li>Added driver for Crazy Ballon [iq_132, dink]</li>
<li>Added driver for Clash Road and Fire Battle [iq_132]</li>
<li>Added driver for Flack Attack / MX5000 by Konami [iq_132, dink]</li>
<li>Added driver for Master Boy (older/Z80 HW) [iq_132]</li>
<li>Added driver for Beam Invader *WIP/not working* [iq_132]</li>
<li>Added driver for Dribling [iq_132]</li>
<li>Added driver for Dora-Chan [iq_132]</li>
<li>Added driver for Combat School by Konami [iq_132]</li>
<li>Added driver for Fast Lane by Konami [iq_132]</li>
<li>Added driver for Konami's Super Basketball [iq_132]</li>
<li>Added driver for WarpSpeed *WIP/not working* [iq_132]</li>
<li>Added driver for Food Fight by GCC/Atari [iq_132]</li>
<li>Added driver for Data East's 18 Holes Pro Golf [iq_132]</li>
</ul>
<!-- new game additions to existing drivers -->
<h4>New additions / updates to existing drivers</h4>
<ul>
<li>Add World Rally 2 [Morten Shearman Kirkegaard, Peter Wilhelmsen, David Haywood, iq_132]</li>
<li>Add Mortal Kombat II (World) Unlimited Hack by Smoke on Megadrive [dink]</li>
<li>Add Streets of Rage 2 (USA) Syndicate Wars 2016 Hack by Gsaurus on Megadrive [dink]</li>
<li>Add Streets of Rage 3 - The Bare Knuckle 3 Project Hack on Megadrive [dink]</li>
<li>Add Rock n` Roll Racing v15 Hack by Ti [Combone]</li>
<li>Add several great Sonic 1,2&3 Hacks [Combone]</li>
<li>Add Mortal Kombat Revelations, Mortal Kombat 3 and Ultimate Hacks [Combone]</li>
<li>Add Monster World IV English Translation Hack on Megadrive [dink]</li>
<li>Add Bubble Bobble (prototype on Tokio hardware) [Barry]</li>
<li>Added DoDonPachi III (World, 2002.05.15 Master Ver) [neohyphengeo productions] to d_pgm.cpp [JacKc]</li>
<li>Added B.Rap Boys Special (World) [Phill @NES4Life, JacKc]</li>
<li>Added Super Street Fighter II sound and color improvement hack on Megadrive [Combone]</li>
<li>Added Mega Cheril Perils homebrew game to Megadrive [dink]</li>
<li>Added Alex Kidd in Miracle World 2 Hack to Mastersystem [dink]</li>
<li>Added Dahna - Goddess` Birth (English Hack) to Megadrive [dink]</li>
<li>Added Masiaka (Demo[scene]) by Resistance 2017 to Megadrive [dink]</li>
<li>Added Turrican fix/hack by linkuei & helder to Megadrive [dink]</li>
<li>Added Street Fighter 2 Special Champion Edition color and sound hack on Megadrive [Combone]</li>
<li>Added FlameWing's BCD Test program to the Megadrive Driver [dink]</li>
<li>Added Fantasy Zone 2 (Working) and Opa-Opa (not working) to System E driver [dink]</li>
<li>Removed all garbage/hacks by GSC2007, as they should be avoided like the plague anyway. [n/a]</li>
<li>Add Riddle of Pythoragas and Slap Shooter to Sega System E [vbt]</li>
<li>Added Omega to the Freekick driver [dink]</li>
<li>Add Contra, NES2PCE conversion to PCE [Combone]</li>
<li>Added several Megadrive game hacks: Teenage Mutant Ninja Turtles - Tournament Fighters Hack, Streets of Rage 2 - Bare Knuckle 3 Boss Edition, Streets of Rage 2 - TMNT Hack, Streets of Rage 3 - Extreme Edition, Golden Axe III - New Character, International Superstar Soccer Deluxe - Real Names+Extras, and UEFA Euro 2004 Portugal (ISSDX Hack) [Combone]</li>
<li>Added In Your Face [iq_132], created a handcrafted priority prom so the game works (for all emulators!) [dink]</li>
<li>Added Weka Invaders 1.0 to the Sega Master System driver [dink]</li>
<li>Added A-Blast to the Seta 2 driver [gamezfan]</li>
<li>Added Silver Valley by Enrique Ruiz / MIKGAMES to the Sega Master System driver [dink]</li>
<li>Added Last KM to the Gaelco driver [iq_132]</li>
<li>Added Sonic 3D Blast: The Director's Cut to the Megadrive driver [dink]</li>
<li>Added Bioplaything Cop to Gaelco [iq_132]</li>
<li>Updated kof99ae to 20170909 Final version [JacKc]</li>
<li>Added Mario Bros. revision G, making it the new parent [dink]</li>
<li>Added Pier Solar to the Megadrive driver [iq_132]</li>
<li>Added KOF2002 OMG and Omega hacks to the Neo-Geo driver [barbudreadmon]</li>
<li>Added KOF98 mix hack to the Neo-Geo driver [iq_132]</li>
<li>Added Metal Slug 5W hack to the Neo-Geo driver [iq_132]</li>
<li>Added World Rally 2: Twin Racing (mask ROM version) to d_gaelco.2.cpp [Barry]</li>
</ul>
<!-- clones and updated romsets in drivers -->
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Add clone of Act-Fancer Cybernetick Hyper Weapon [Barry]</li>
<li>Add clone of Kageki [Barry]</li>
<li>Add two clones of Return of the Invaders [Barry]</li>
<li>Added clone of Street Fighter II: The World Warrior (Quicken, bootleg) [Moffitt] to d_cps1.cpp [JacKc]</li>
<li>Added clone of Street Fighter (World) (protected) [Corrado Tomaselli] to d_cps1.cpp [JacKc]</li>
<li>Added World clone of Ordyne [Barry]</li>
<li>Added clone of Carrier Air Wing (USA 901130) [mastercello] to d_cps1.cpp [JacKc]</li>
<li>Added missing Popeye clones [JacKc]</li>
<li>Added clone of WWF Superstars (US revision 6) [JacKc]</li>
<li>Added 1943: Midway Kaisen (Japan) to d_1943.cpp [JacKc]</li>
<li>Added Chuka Taisen (Japan) (P0-025-A PCB) and correct color proms [pacman70] to d_tzns.cpp [JacKc]</li>
<li>Added Alligator Hunt (World, protected) [Pablo] to d_gaelco2.cpp [JacKc]</li>
<li>Added Alligator Hunt (unprotected, set 2) [David Haywood, Peter Wilhelmsen] to d_gaelco2.cpp [JacKc]</li>
<li>Added Super Athena (bootleg) [Hammy] to d_snk.cpp [JacKc]</li>
<li>Added Crazy Climber (US set 2) [John of http://www.johnsarcade.com] to d_cclimber.cpp [JacKc]</li>
<li>Added clone of Beast Busters (Japan, Version 2, J3) [Layer @ jammaplus, JacKc]</li>
<li>Added clone of Lady Master of Kung Fu (set 2, older) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Athena (bootleg) [Porchy, The Dumping Union, JacKc]</li>
<li>Added clone of Cabal (UK, Joystick) [hammy, The Dumping Union, JacKc]</li>
<li>Added clone of Super Hang-On (Hang-On conversion, Beta bootleg) [Cmonkey, JacKc]</li>
<li>Added clone of Rod-Land (World, set 2) [frsj8112, JacKc]</li>
<li>Added clone of Bucky O'Hare (ver AA) [Bill D., The Dumping Union, JacKc]</li>
<li>Added clone of '99: The Last War (bootleg) [ShouTime, JacKc]</li>
<li>Added clone of Martial Masters (ver. 102, 101, 101TW) [skate323k137, The Dumping Union, JacKc]</li>
<li>Added clone of Gunbird 2 (set 2) [Hyid Choi, JacKc]</li>
<li>Added clone of Biomechanical Toy (Ver. 1.0.1878) [Jorge Silva, JacKc]</li>
<li>Added clone of TH Strikes Back (Non North America, Version 1.0, Checksum 020EB356) [caius, The Dumping Union, JacKc]</li>
<li>Added clones of Action Fighter (afightera, afighterb) to Sega System 16A driver [Barry]</li>
<li>Added clone of Blood Bros. (US) [Bill D., The Dumping Union, JacKc]</li>
<li>Added clone of West Story (bootleg of Blood Bros., set 2) [Osso, caius, The Dumping Union, JacKc]</li>
<li>Added clone of Teki Paki (location test) [ShouTime, Mouloud Bessaad, Dulleron, Christian Ricolleau, Marisol Nunez Serrano, Renato Mucciarelli, Jeffrey Gray, John Wilke, Darksoft, Ryan Holtz, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Galaxian Growing Galaxip / Galaxian Nave Creciente (Recreativos Covadonga Spanish bootleg) [ARPA, Recreativas.org, The Dumping Union, JacKc]</li>
<li>Added clone of Blue's Journey / Raguy (ALH-001) [Razoola, JacKc]</li>
<li>Added clone of X-Men: Children of the Atom (Brazil 950331) [SHVB, Haze, smf, JacKc]</li>
<li>Added clone of Four Trax (Asia) [Arzeno Fabrice, The Dumping Union, JacKc]</li>
<li>Added clone of Pretty Soldier Sailor Moon (Ver. 95/03/21) and Pretty Soldier Sailor Moon (Ver. 95/03/22, Europe) [rtw, ShouTime, The Dumping Union, JacKc]</li>
<li>Added clone of G.I. Joe (Asia, AA) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Knights of Valour 2 / Sangoku Senki 2 (ver. 104, 102, 100HK) [twistedsymphony, JacKc]</li>
<li>Added clone of Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 2) [Sugoi Helsinki, JacKc]</li>
<li>Added clone of Gee Bee (UK) [Andrew Welburn, The Dumping Union, JacKc]</li>
<li>Added clone of Pac-Man (bootleg, Video Game SA) [Arcade Vintage, Recreativas.org, The Dumping Union, JacKc]</li>
<li>Added clone of Turbo Force (World, set 2) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Cadash (Spain, version 1) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of Cookie & Bibi 2 (set 2) [Hammy, JacKc]</li>
<li>Added clone of Pac-Land (Bally-Midway) [Andrea Palazzetti, JacKc]</li>
<li>Added clone of Ares no Tsubasa (Japan, rev. A) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Ghox (joystick, older) [caius, JacKc]</li>
<li>Added clone of Opa Opa (Rev A, unprotected) [ShouTime, Charles MacDonald, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (street fighter 2' 920313 Taiwan) [sampson, JacKc]</li>
<li>Added clone of Moon Shuttle (US, version A) [ShouTime, The Dumping Union, JacKc]</li>
<li>Added clone of Gigas Mark II (MC-8123, 317-5002) [jacKc]</li>
<li>Added clone of Tecmo Bowl (World, set 2) [coolmod, JacKc]</li>
<li>Added clone of Garou - Mark of the Wolves (NGH-2530) [Razoola, JacKc]</li>
<li>Added clone of Pochi and Nyaa (Ver 2.02) [Razoola, JacKc]</li>
<li>Added clone of Enduro Racer (YM2151) (mask ROM sprites, FD1089B 317-0013A) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II': Champion Edition (Playmark bootleg) [f205v, maru79, JacKc]</li>
<li>Added clone of Explosive Breaker (Korea) [Jorge Silva, JacKc]</li>
<li>Added clone of WWF: Wrestlemania (proto 2.01 06/07/95) [Jorge Silva, JacKc]</li>
<li>Added clone of Super Cobra (bootleg, set 2) [Belike, JacKc]</li>
<li>Added clone of Street Fighter II: The World Warrior (Thunder Edition, bootleg, set 2) [coolmod, The Dumping Union, JacKc]</li>
</ul>
<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 from GSC2007) [GSC2007, 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 from GSC2007) [GSC2007, 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 from GSC2007) [GSC2007, JacKc]</li>
<li>Updated The King of Fighters '98 (Combo) to Ver. 2017/04/08 [Ivex, 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>