{"id":26491,"date":"2013-09-17T10:42:24","date_gmt":"2013-09-17T08:42:24","guid":{"rendered":"http:\/\/www.emu-france.com\/?p=26491"},"modified":"2013-09-17T11:33:11","modified_gmt":"2013-09-17T09:33:11","slug":"arcade-mame-v0-150","status":"publish","type":"post","link":"https:\/\/www.emu-france.com\/?p=26491","title":{"rendered":"[Arcade] Mame v0.150"},"content":{"rendered":"<p>Nouvelle version, en first sur emu-france \ud83d\ude09<\/p>\n<p>&nbsp;<\/p>\n<pre style=\"height: 200px;\">MAMETesters Bugs Fixed\r\n----------------------\r\n- 02106: [Speed] (ddragon.c) ddragon2, ddragon2u: [possible] The game \r\n  slows down in the first level, after the helicopter appears (Phil Bennett)\r\n- 03908: [Graphics] (ddragon.c) ddragon2, ddragon2u: [possible] \r\n  Missing graphics when starting 2-Player (Phil Bennett)\r\n- 00416: [Crash\/Freeze] (ddragon.c) ddragonw1: When finishing \r\n  the game its reset and so go to check rom screen again and freezes! (Phil Bennett)\r\n- 05287: [DIP\/Input] (namcos2.c) sgunner2, sgunner2j: Player 2\r\n  Start missing (Tafoid)\r\n- 05241: [Misc.] (moo.c) All moo.c sets: AddressSanitizer: \r\n  heap-use-after-free (Firewave)\r\n- 05281: [Color\/Palette] (8080bw.c) rollingc: Wrong colors (hap)\r\n- 05207: [Graphics] All vector games: In the vector games, graphics\r\n  remains imprinted even when exit the game. (MooglyGuy)\r\n- 05162: [Core] Toggling HLSL off then on with ctrl-alt-F5 \r\n  will drop its use of aperture.png (MooglyGuy)\r\n- 05218: [Graphics] crash when hlsl_read is set to 1 (MooglyGuy)\r\n- 05214: [Color\/Palette] (bzone.c) bzone: bzone displays \r\n  black and white. (MooglyGuy)\r\n- 05235: [Core] You can't alt-tab and back with HLSL enabled \r\n  and in 148 you could (MooglyGuy)\r\n- 05056: [Crash\/Freeze] (badlands.c) badlandsb, badlandsb2: \r\n  Access Violation after OK (Osso)\r\n- 05268: [Color\/Palette] (mappy.c) todruaga: Sprites use \r\n  wrong colors (Osso)\r\n- 00032: [Graphics] (taito_f3.c) tcobra2: There are stray flashing pixels \r\n  on the bottom left of the helicopter. (David Haywood)\r\n- 00942: [Sound] (topspeed.c) topspeed: Engine sounds only play when driving\r\n  in tunnels or under bridges, and turbo sounds never play. (Phil Bennett)\r\n- 05089: [Crash\/Freeze] (aristmk5.c) goldprmd, magicmsk: Crash after OK (Firewave)\r\n- 00980: [Sound] (taito_b.c) tetrist: The sound has strange intermittent noise in\r\n  background. Also, the music tempo is wrong (Brian Troha)\r\n- 05284: [Sound] exprraid and clones: YM3526 has incorrect frequency (Phil Bennett)\r\n\r\nSource Changes\r\n--------------\r\n-Make modernized i86 core endian-safe again [Alex Jackson]\r\n\r\n-Created new device_video_interface. Right now its sole purpose is to [Aaron Giles]\r\n house a screen tag and to find the screen at startup, providing an\r\n m_screen object that can be used. One nice feature is that if there is\r\n only one screen and no screen has been specified, it will auto\r\n configure to that screen. This removes the need to explicitly specify\r\n a screen in the configuration for a large chunk of drivers (though\r\n doing so never hurts). A new macro MCFG_VIDEO_SET_SCREEN is provided,\r\n though devices are encouraged to define their own that maps there so\r\n it is obvious which device is being targeted. The\r\n device_video_interface's validation function will error if an invalid\r\n screen is specified or if no screen is provided but there are multiple\r\n screens present.\r\n\r\n Updated all devices that currently had an m_screen in them to use the\r\n device_video_interface instead. This also has the nice benefit of\r\n flagging video-related devices for categorization purposes. It also\r\n means all these devices inherit the same screen-finding behaviors. For\r\n devices that had interfaces that specified a screen tag, those have\r\n been removed and all existing structs updated.\r\n\r\n Added an optional_device&lt;screen_device&gt; m_screen to the base\r\n driver_device. If you name your screen \"screen\" (as most drivers do),\r\n you will have free access to your screen this way.\r\n\r\n Future updates include:\r\n  * Updating all devices referencing machine.primary_screen to use the\r\n    device_video_interface instead\r\n  * Updating all drivers referencing machine.primary_screen to use the\r\n    m_screen instead\r\n  * Removing machine.primary_screen entirely\r\n\r\n-i286: modernize [Carl] \r\n\r\n-Modernized galeco, okim6376, vr0video, mb87078, snk6502 devices.  [Osso]\r\n\r\n-Adds a watchpoint debug view. [Andrew Gardner]\r\n\r\n-Adds the watchpoint view to the QT Debugger's \"Break|Watchpoints\"\r\n window. [Andrew Gardner]\r\n\r\n-Fix long-standing architectural wart: the priority bitmap is no longer [Aaron Giles]\r\n owned by the tilemap system, and no longer exists globally in the\r\n machine. Instead it is allocated per-screen for all systems. This has\r\n several side-effects:\r\n\r\n 1. Previously, the pdrawgfx* functions were already changed to take\r\n the priority bitmap as a parameter. Now all other hand-crafted\r\n functions that mess with the priority bitmap generally must do so as\r\n well, and have been updated.\r\n\r\n 2. Calls to the tilemap system now need to provide a screen_device.\r\n This is not just for the priority_bitmap, but also for screen\r\n flipping, which previously always assumed the \"primary screen\" when\r\n doing flipping calculations.\r\n\r\n 3. All devices that implemented tilemap-like functionality have been\r\n updated to follow the same pattern, since they largely tend to call\r\n through to the core tilemap system at some point.\r\n\r\n-ym2413.c - Reverted KSL value order to 0, 1.5, 3.0, 6.0dB\/oct after\r\n testing with a real YM2413 [Wouter Vermaelen]\r\n\r\n-Modernized galaxian sound device.  [Osso]\r\n\r\n-Split eeprom.c into a base class base_eepr-om_device and a [Aaron Giles]\r\n serial-specific subclass serial_eeprom_device. Moved the latter into\r\n its own file eepromser.c and significantly cleaned up\/simplified the\r\n code. The new code should be functionally the same as the previous\r\n code, but expect that to change soon. As a side-effect, the size and\r\n bus width of the EEPROM is now specified in the ADD macro rather than\r\n in the interface structure.\r\n\r\n-Rewrite serial EEPROM devices, breaking them out into separate chips [Aaron Giles]\r\n of the proper size and protocol. Update all drivers, removing custom\r\n implementations, and replacing them with standard ones. Moved core\r\n read, write, erase functionality into the EEPROM base class a\r\n simulated delays in write\/erase cycles. Still some more\r\n testing\/verification work left to do.\r\n\r\n-Add support for CD2501ECD variant of tms52xx, used in the TI 99\/8\r\n prototype. Renamed TMC0285 to the more correct CD2501E in the TI\r\n 99\/4a. [mizapf, Lord Nightmare]\r\n\r\n-started integrating DECO104 findings from Charles, done a preliminary\r\n hookup of Double Wings to it (input ports bit order not yet verified)\r\n Nuked old bad simulation code for DW [Charles MacDonald, David\r\n Haywood]\r\n\r\n-Modernized MultiPCM, mjkjidai, renegage, ninjaw_subwoofer devices [Osso]\r\n\r\n-3x3puzzl.c: Correct dipswitches and add dipswitch locations for\r\n Casanova. [Brian Troha]\r\n\r\n-opwolf.c: fix coinage dips in opwolfj [Alex Jackson]\r\n\r\n-fixed undefined order of evaluation in FETCH* and READ* functions in\r\n src\/emu\/cpu\/i386\/i386priv.h [Carl, Oliver St\u00f6neberg]\r\n\r\n-Modernized the s14001a and exidy sound devices.  [Osso]\r\n\r\n-Modernized the Seibu ADPCM device and converted the Seibu sound system\r\n to be a device.  [Osso]\r\n\r\n-added makefile define FASTDEBUG to disable some debug-specific stuff,\r\n that is causing performance hits (for e.g. profiling)\r\n [Oliver St\u00f6neberg]\r\n\r\n-neogeo.c: endian fix for kof2003 protection [Alex Jackson]\r\n\r\n-Converted the T5182 to a device. [Osso]\r\n\r\n-add support for a China internal ROM to kov2p sets [XingXing]\r\n\r\n-Modernized Mirco3D noise device. [Osso]\r\n\r\n-Added initial code for internal web server [Miodrag Milanovic]\r\n\r\n-SDL: Revise the *IX man pages  [wallyweek]\r\n\r\n-Moved tilemap_memory into a generic memory_array class, since it is [Aaron Giles]\r\n more generally useful than just in tilemaps. Code is now in memarray.*\r\n\r\n-Converted the Atari RLE motion objects device from a half-assed device [Aaron Giles]\r\n into a full-assed device, leveraging the memory_array class.\r\n\r\n-neogeo.c: fix memory leak, clean up inputs a bit [Alex Jackson]\r\n\r\n-Added eeprompar.*, implementing a simple interface for parallel [Aaron Giles]\r\n EEPROMs.\r\n\r\n-Created atari_eeprom_device which wraps a 2804 or 2816 EEPROM with the [Aaron Giles]\r\n standard Atari write-locking mechanism. Updated all drivers to use\r\n this, and removed all EEPROM stuff from atarigen.\r\n\r\n-wd_fdc: Don't switch off the motor when the fdc doesn't have a motor\r\n control pin [O. Galibert, Duke]\r\n\r\n- Assorted fixes based on PCB observations: [system11]\r\n * galpanic.c - Fixed rom names for newfant and added new set.\r\n * splash.c - Adjusted msm5205 clocks to proper values.\r\n * tumblep.c - Fixed sound hardware speeds to match PCB for chokchok,\r\n    htchctch and cookbib.\r\n\r\n-segas16b.c: Corrected rom labels and added PCB locations to the MVP\r\n (set 2, US, FD1094 317-0143) set. [Layne]\r\n\r\n-sandscrp.c: Added dipswitch locations and corrected default settings\r\n for the Sand Scorpion sets. [Brian Troha]\r\n\r\n-MC6801\/6803 updates: [R. Belmont]\r\n * Support for timer output capture to pin P21\r\n * Support for externally-clocked serial\r\n * Added devcb2 hook for serial xmit to easily differentiate xmit from\r\n    other Port 2 updates.  Bits are still also sent to Port 2 of\r\n    course.\r\n\r\n-captcommb : various graphical issues fixed, marked as working\r\n [Barry Harris]\r\n\r\n-taito_b.c: Correct the Tetris C12 set and fill in missing Nastar roms\r\n needed for the conversion, correcting missing sound samples. Added a\r\n note about the missing PALs for both Tetris B-System conversions.\r\n [Brian Troha]\r\n\r\n-altbeastbl - hook up gfx writes properly  [Barry Harris]\r\n\r\n-taitosnd.c - Improve TC0140SYT\/PC060HA NMI handling, preventing lost\r\n interrupts [Phil Bennett]\r\n\r\n-topspeed.c - Various updates: [Phil Bennett, Andy Welburn]\r\n * Fixed MSM5205 hookups and implemented engine sound\r\n * Added Z80 CTC\r\n * Added volume controls\r\n * Corrected 68000 clocks and VSYNC frequency\r\n * Changed interrupt handling to match hardware\r\n * Added motor control notes\r\n * Fixed sprite list parsing (no more mysterious red dot on the far\r\n    left)\r\n * Corrected b14-67-1\/b14-68-1 ROM locations\r\n\r\n-PGM:  Implement some missing asic25\/asic28 registers. This fixes the\r\n high score screen for olds &amp; clones. [rockywall, Creamy Mami]\r\n\r\n-multipcm: Use address space instead of direct memory region\r\n [R. Belmont]\r\n\r\n-Chihiro.c:  [Samuele Zannoli]\r\n * add more patches needed until usb is implemented\r\n * add support for more texture formats and drawing primitives to the\r\n    3d accelerator\r\n\r\n-Separate Ensoniq \"pump\" device out from esq5505.c [R. Belmont]\r\n\r\n-replace badly dumped sprite rom in tcobra2 + clones [Kevin Eshbach]\r\n\r\n-cninja.c: Corrected redump of Caveman Ninja (World Rev 1) and added\r\n PCB locations to the original Caveman Ninja sets.\r\n [Bonky0013, The Dumping Union]\r\n\r\n-Added Macronix 29LV160TMC sub-type to intelfsh.c, used by Sega\r\n Dreamcast [Angelo Salese]\r\n\r\n-i186: move 80186 peripherals into the cpu [Carl] \r\n\r\n-leland: finish modernizing the leland sound and use new 80186 [Carl]\r\n\r\n-cps1.c: Added correct MBJ 22B rom to Muscle Bomber: The Body Explosion (Japan 930713) set.\r\n  [Layne, Smitdogg, The Dumping Union]\r\n\r\n-fix sprite priority issues in nmk16.c (tested on tdragon2 PCB) [trap15]\r\n\r\n-Fixed dblewing Lives dip switch. [lain]\r\n\r\n-Modernized Sega Model 1 sound board; now shared instead of\r\n copy\/pasted. [R. Belmont]\r\n\r\n-segae.c: clean up, add savestate support [Alex Jackson]\r\n\r\n-terracre.c: Remove nonexistent second ym2203 from terracren. Remove\r\n silly input port hack from horekid [Alex Jackson]\r\n\r\n-ISA16_IDE_CD in southbridge_device with two\r\n BUS_MASTER_IDE_CONTROLLERs. [smf]\r\n\r\n-snk68.c: Added dipswitch locations to all sets in the driver.\r\n [Brian Troha]\r\n\r\n-cave.c: Correct name to Guwange (Japan, Special Ver. 00\/07\/07) as\r\nverified by hex editor. [Brian Troha]\r\n\r\n-8080bw.c: fix setnames for Space Invaders (TV\/Cocktail version) sets\r\n based on recent dump: sitva-&gt;sitv (newer 'tv0h' version), sitv-&gt;sitvo\r\n (older 'tv01' version) [Lord Nightmare, Andrew Welburn]\r\n\r\n-Removed local ATAPI code in preparation to use the new code, but the\r\n CPU gets lost after executing the first instruction. [smf]\r\n\r\n-refactored to use ATA_INTERFACE [smf]\r\n\r\n-HLSL updates: [MooglyGuy]\r\n * Removed hlsl_read and hlsl_write options now that all slider\r\n   options are plumbed and have values matching the INI settings\r\n * Added more surface release calls in order to fix device resetting\r\n * Fixed draw order for quads, overlays now appear on top of vectors\r\n   in non-HLSL mode\r\n * Moved aperture.png loading into create_resources\/delete_resources so\r\n   that it is correctly reloaded when HLSL is toggled on and off\r\n\r\n-galpani2.c: Added complete PCB layout. [The Guru]\r\n\r\n-galpani2.c: Added Dipswitch locations to all sets. [Brian Troha]\r\n\r\n-Restructured NTSC encode\/decode shaders for better readability. [MooglyGuy]\r\n\r\n-MIDI: fixed some SysEx issues [Christian Brunschen]\r\n\r\n-updated zlib to 1.2.8 [Oliver St\u00f6neberg]\r\n\r\n-Made both DRC and Non-DRC compile for MIPS, RSP and SH2 core and added\r\n option to enable\/disable DRC from command line (-drc -nodrc  by\r\n default it's on) [Miodrag Milanovic]\r\n\r\n-Added command line option to force DRC C backend [Miodrag Milanovic]\r\n\r\n-SCSP: hooked up DGATE functionality for DMA [Angelo Salese]\r\n\r\n-AICA: Implemented DMA [Angelo Salese]\r\n\r\n-SCSP: fixed DMA when SH-2 enables it [Angelo Salese]\r\n\r\n-PowerVR2: Added SPG control register, used to change pixel clock\r\n dynamically [Angelo Salese]\r\n\r\n-nemesis.c dipswitch fixes: Rename \"Upright Controls\" dipswitch to\r\n \"Players\" in gwarrior and twinbee, and make 2 players default (neither\r\n game supports cocktail cabinets). Make default difficulty normal in\r\n all games. [Alex Jackson]\r\n\r\n-PowerVR2: Added preliminary YUV converter [Angelo Salese]\r\n\r\n-Refactored Konami System 573 to use ATA_INTERFACE [smf]\r\n\r\n-AICA: Hooked up AICA-to-SH-4 irqs [Angelo Salese]\r\n\r\n-Started re-architecting the HLSL system to be data-driven [MooglyGuy]\r\n\r\n-PowerVR: Added YUV_TW texture hook-up (used by Soul Calibur at very\r\n least) [Angelo Salese]\r\n\r\n-PowerVR: Support for non-textured polygons with packed and floating\r\n colors [Angelo Salese]\r\n\r\n-namcos22: revised hardware info [Guru]\r\n\r\n-Updates to jedutils and other minor things [Kevin Eschbach]\r\n * Documentation on the earlier version of the Deco Cassette System\r\n * Documented some pals on a bootleg Free Kick that need to be dumped\r\n * Documented the location of the roms on Twin Cobra 2\r\n * Added support to jedutil to view the PAL20X10, PAL20X8 and PAL20X4\r\n * Added some preliminary work on figuring out what the undocumented\r\n    fuses for the PALCE16V8 are.  (The data sheet does not document\r\n    what all of the fuses are.)\r\n\r\n-Refactored dreamcast to use an ATA interface [smf]\r\n\r\n-2 new BIOS versions, 1 new CHRROM, and existing CHRROM confirmed good [Cowering]\r\n\r\n-stfight.c - Hooked up ADPCM\/coin control MCU. Changed YM2203 clocks to\r\n 1.5MHz for cshooter and 4.5MHz for empcity\/stfight (see notes)\r\n [Phil Bennett]\r\n\r\n-Renamed TLCS900H to TMP95C061, moved the I\/O handling into it's own\r\n class &amp; hooked up TO1\/TO3 to output on Port A. A hack is needed\r\n because ngpc doesn't set PACR\/PAFC, which may be because it's a custom\r\n part. Changed Taito PJC to use TMP95C063. Separated I\/O Ports on both\r\n CPU's so you can apply the devcb2 callbacks individually. [smf]\r\n\r\n-Added 8\/16 bit data bus configuration to TLCS900H. Default is 16bit,\r\n neogeo pocket is 8 bit [smf]\r\n\r\n-ddealer.c: Correct clock speeds for Double Dealer to match PCB.\r\n [system11]\r\n\r\n-ddealer.c: Fill in several missing dipswitch settings and add\r\n dipswitch locations. [Brian Troha]\r\n\r\n-trvmadns.c: Added PCB layout for Trivia Madness. [Brian Troha]\r\n\r\n-Use 2864 for ROM. This allows XTIDECFG to flash the rom. Tested with\r\n 2.0.0 beta 3. You must disable SDP because eeprompar doesn't emulate\r\n it &amp; you must load from a file as if you load from eeprom then it only\r\n finds zeros. [smf]\r\n\r\n-Renamed IDE8 to XTIDE. [smf]\r\n\r\n-polepos.c: Added Dipswitch locations to the Pole Position and Pole Position 2 sets.\r\n [Brian Troha]\r\n\r\n-added undocumented opcode that behaves like DPCL [smf]\r\n\r\n-Preliminary SET FEATURES support. Only set transfer mode is currently\r\n supported, but this checks\/sets flags in the identify device buffer.\r\n The buffer has been moved up into atahle and the idehd has been\r\n changed to work with words instead of bytes. [smf]\r\n\r\n-yunsung8.c: Added PCB layout for Cannon Ball (Vertical). [Brian Troha]\r\n\r\n-ddragon.c: Cleanup based on Double Dragon schematics [Phil Bennett]\r\n * Fixed sub-CPU interrupt mechanism\r\n * Implemented common RAM bus lock\r\n * Added interrupt acks\r\n\r\n-peplus.c: Minor corrections and documentation updates including known\r\n payout tables for some sets. [Brian Troha]\r\n\r\n-cubeqcpu.c, f8.c, minx.c, i8085.c, i860.c, i960.c, jaguar.c, lh5801.c,\r\n m6800.c, m37710.c, mb86233.c, mb88xx.c, mcs48.c, mc68hc11.c, mcs51.c,\r\n mn10200.c, pic16c5x.c, pic16c62x.c, tlcs900.c, pps4.c,\r\n s2650.c: Modernized cpu cores.  [Wilbert Pol]\r\n\r\n-exprraid.c: Cleanups from schematics: [Phil Bennett]\r\n * Corrected CPU and YM3526 clock frequencies\r\n * Improved protection simulation\r\n * Added interrupt acks\r\n * Added service coin input\r\n\r\nNew games added or promoted from NOT_WORKING status\r\n---------------------------------------------------\r\nCasanova [Yohji, Smitdogg, The Dumping Union, David Haywood, Mariusz Wojcieszek]\r\nDouble Wings [Charles MacDonald, David Haywood]\r\nPuzzli 2 [David Haywood, rtw]\r\nPuzzli 2 Super [David Haywood, rtw]\r\nPanic Road [David Haywood]\r\nPoka Poka Satan\r\n  [bodger319, Yohji, Smitdogg, The Dumping Union, Luca Elia]\r\nTouchstar Bonanza [Mariusz Wojcieszek]\r\nMidnight Landing (Germany) [Phil Bennett]\r\nSuper Game Mega Type 1 [Tirino73, Mariusz Wojcieszek]\r\nTap a Tune [Phil Bennett, Mariusz Wojcieszek]\r\n\r\nNew clones added\r\n----------------\r\nGrand Striker (Japan) [Yohji, Smitdogg, The Dumping Union]\r\nMechanized Attack (Japan) [ShouTime, The Dumping Union]\r\nCyberbots: Fullmetal Madness (Japan 950424) (decrypted bootleg)\r\n  [Yohji, Smitdogg, The Dumping Union]\r\nKnights of Valour Super Heroes Plus \/ Sangoku Senki Super Heroes Plus (ver. 101)\r\n  [XingXing]\r\nNight Slashers (US Rev 1.2, HuC6280 Sound CPU)\r\n  [Smitdogg, The Dumping Union]\r\nCosmic Guerilla (Spanish bootleg) [Angel Maestre]\r\nDungeons &amp; Dragons: Tower of Doom (Asia 940412)\r\n  [Tormod, The Dumping Union]\r\nStreet Fighter II: The World Warrior (Japan 920312)\r\n  [Tormod, Layne, Smitdogg, The Dumping Union]\r\nStreet Fighter EX Plus (Japan 970407)\r\n  [Tormod, Smitdogg, The Dumping Union]\r\nStreet Fighter II: The World Warrior (Japan 910522)\r\n  [Yohji, Kevin Eshbach, bodger319, Smitdogg, The Dumping Union]\r\nManx TT Superbike - DX (Revision D) [ShouTime, The Dumping Union]\r\nTekken Tag Tournament (Japan, TEG2\/VER.C1)\r\n  [Brian Troha, Smitdogg, The Dumping Union]\r\nStreet Fighter II': Champion Edition (Hung Hsi, bootleg)\r\n  [iq_132, Smitdogg, The Dumping Union]\r\nEnforce (Japan, Analog Controls) [ShouTime, The Dumping Union]\r\nBubble Bobble II (Ver 0.0J 1993\/12\/13, prototype) [Dsyde, muddymusic]\r\nPipe Dream (Taiwan) [Bonky0013, The Dumping Union]\r\nCrazy Kong (bootleg on Galaxian hardware, encrypted)\r\n  [Ricky2001 \/ AUMAP]\r\nExcelsior (set 2) [Bonky0013, The Dumping Union]\r\nSpace Invaders (TV Version, set 2) [Andrew Welburn, The Dumping Union]\r\nPuzzle Bang Bang (Korea, version 2.9 \/ 990108) [gp-lee, The Guru]\r\nTurbo Out Run (Japan, Out Run upgrade, FD1094 317-0117)\r\n  [Charles MacDonald, ShouTime, The Dumping Union]\r\nCotton (set 2, Japan, Rev B, FD1094 317-0179b)\r\n  [Charles MacDonald, ShouTime, The Dumping Union]\r\nChase Bombers (Japan) [ShouTime, The Dumping Union]\r\nNew Fantasia (Set 2)  [system11]\r\nManx TT Superbike - DX (Revision D)\r\n  [ShouTime, The Dumping Union, R. Belmont, Brian Troha]\r\nPole Position (World) [Andrew Welburn, The Dumping Union]\r\nIkari 3 (Korea, 8-Way Joystick) [jysx012]\r\nGals Panic 3 (Korea) [gp-lee, The Guru]\r\nPunch-Out!! (Japan) [ShouTime, The Dumping Union]\r\nPigskin 621AD (rev 1.1 6\/05\/90)\r\n  [Ben Fino-Radin, Nicolas Francfort, Brian Troha, The Dumping Union]\r\nJurassic Park (Japan, Rev A, Convertion) [ShouTime, The Dumping Union]\r\nViolent Storm (ver EAC) [RanaElia]\r\nFree Kick (bootleg set 3) [Kevin Eshbach, The Dumping Union]\r\nStreet Fighter II: The World Warrior (Japan 910411)\r\n  [Kevin Eshbach, Bill D., Layne, Smitdogg, The Dumping Union]\r\nDoDonPachi Dai-Ou-Jou (2002.10.07.Black Ver) [djvinc]\r\nTrivia Madness - Series B Question set\r\n  [mister_rf, Paul Vining, Brian Troha, The Dumping Union]\r\n\r\nNew games marked as GAME_NOT_WORKING\r\n------------------------------------\r\nUsagi Online (v2.04J) [ShouTime, The Dumping Union, R. Belmont]\r\nCasanova [Yohji, Smitdogg, The Dumping Union]<\/pre>\n<p><p class=\"p_telecharger_icone_zip\"><a class=\"telecharger_icone_zip\" href=\"https:\/\/www.emu-france.com\/?wpfb_dl=623\" title=\"Download MAME(Arcade) [32 bits]\">T\u00e9l\u00e9charger MAME(Arcade) [32 bits] v0.288 (56.8 Mo)<\/a><\/p><p class=\"p_telecharger_icone_zip\"><a class=\"telecharger_icone_zip\" href=\"https:\/\/www.emu-france.com\/?wpfb_dl=622\" title=\"Download MAME(Arcade) [Debug]\">T\u00e9l\u00e9charger MAME(Arcade) [Debug] v0.161 (19.7 Mo)<\/a><\/p><p class=\"p_telecharger_icone_zip\"><a class=\"telecharger_icone_zip\" href=\"https:\/\/www.emu-france.com\/?wpfb_dl=2949\" title=\"Download MAME(Arcade) [64 bits]\">T\u00e9l\u00e9charger MAME(Arcade) [64 bits] v0.288 (72.0 Mo)<\/a><\/p><\/p>\n<p class=\"p_site_officiel\"><a class=\"site_officiel\" href=\"http:\/\/www.mamedev.org\/release.html\">Site Officiel<\/a><\/p>\n<div class=\"fcbkbttn_buttons_block\" id=\"fcbkbttn_left\"><div class=\"fb-share-button  \" data-href=\"https:\/\/www.emu-france.com\/?p=26491\" data-type=\"button_count\" data-size=\"small\"><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Nouvelle version, en first sur emu-france \ud83d\ude09 &nbsp; MAMETesters Bugs Fixed &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8211; 02106: [Speed] (ddragon.c) ddragon2, ddragon2u: [possible] The game slows down in the first level, after the helicopter appears (Phil Bennett) &#8211; 03908: [Graphics] (ddragon.c) ddragon2, ddragon2u: [possible] &#8230;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":["post-26491","post","type-post","status-publish","format-standard","hentry","category-par-defaut","uentry","postonpage-1","odd","post-author-Jets"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pKi2R-6Th","jetpack_likes_enabled":false,"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/posts\/26491","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=26491"}],"version-history":[{"count":5,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/posts\/26491\/revisions"}],"predecessor-version":[{"id":26506,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=\/wp\/v2\/posts\/26491\/revisions\/26506"}],"wp:attachment":[{"href":"https:\/\/www.emu-france.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=26491"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=26491"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.emu-france.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=26491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}