• Welcome
  • Latest News
  • Downloads
  • Contact Me
  • Privacy Policy
  • Cookie Policy
  1. You are here:  
  2. Home
  3. News
  4. Multiple Platform

Releases with ports for two or more operating systems.

PlayStation 2 Emulator - Play! v0.69 - Released

Details
Category: Multiple Platform
Published: 05 February 2025

Play! - Windows (32bit)  Play! - Windows (64bit)  Play! - Linux  Play! - Mac  Play! - Android

What's New

Nintendo 64 Emulator - Gopher64 v1.0.2 - Released

Details
Category: Multiple Platform
Published: 05 February 2025

Gopher64 - Windows (x86)  Gopher64 - Linux (x86)  Gopher64 - Linux (ARM)  Gopher64 - Mac (Intel)  Gopher64 - Mac (Apple)  Gopher64 (Source)

What's New:

    • minor tweak to interrupt system
    • support for Advanced Homebrew ROM Header
    • SD card emulation

The naming convention for save files changed in this version. This means that the emulator won't find saves that previously existed. You'll need to go into the save file folder and rename your save file to the new naming convention if you want to keep using it.

For example, Ocarina of time was previously (the part after CZL- is the sha256sum of the ROM):
CZL-49ACD3885F13B0730119B78FB970911CC8ABA614FE383368015C21565983368D.sra

But is now:
THE LEGEND OF ZELDA-49ACD3885F13B0730119B78FB970911CC8ABA614FE383368015C21565983368D.sra

Dragon 32/64 and CoCo 2 Emulator - XRoar v1.8.1 - Released

Details
Category: Multiple Platform
Published: 02 February 2025

XRoar - Windows (32bit)  XRoar - Windows (64bit)  XRoar - Mac (Intel)  XRoar (Source)

What's New:

* Fix Mac OS X+ build under more modern compilers
* Fix Windows UI zoom in/out

Retrom v0.7.5 - Released

Details
Category: Multiple Platform
Published: 02 February 2025

Retrom - Windows  Retrom (AppImage)  Retrom (deb)  Retrom (rpm)  Retrom - Mac (Apple)  Retrom - Mac (Intel)  Retrom (Source)

What's New:

Bug Fixes
  • open installation directory menu item
Newly Added
  • change installation directory
  • You can now change Retrom's installation directory via the File > Configuration menu in the Client tab

NegaMAME v0.274 - Released

Details
Category: Multiple Platform
Published: 02 February 2025

NegaMAME - Windows  NegaMAME - Linux  NegaMAME - Mac

What's New:

- Updated to latest MAME Source.

Dosbox-X v2025.02.01 - Released

Details
Category: Multiple Platform
Published: 02 February 2025

Dosbox-X - Windows (32bit)  Dosbox-X - Windows (x86)  Dosbox-X - Windows (ARM)  Dosbox-X - Mac (Apple)  Dosbox-X - Mac (Intel)  Dosbox-X (Source)

What's New:

    • Added new experimental dosbox.conf option that turns off the A20 gate automatically if loading a COM/EXE file to a memory
      location below 64KB. Option is off by default. This is intended for the startup routines of programs that assume 8086 wraparound to prevent them from crashing (joncampbell123).
    • Bump tinyfiledialogs to v3.19.1 (maron2000)
    • Fix VGA render-on-demand bug that causes all screen updates to stop working if something changes video state without changing any other attribute (width, height, frame rate, etc.). In PC-98 mode this bug could be triggered by leaving the text
      layer open while switching off the graphics layer when the graphics layer is in 256-color PEGC mode. Fix for KOARMADA.EXE when exiting back to the DOS prompt. (joncampbell123).
    • In PC-98 mode, add I/O port 43Bh which guest applications can then read to determine whether the 15MB "memory hole" is open. The guest can use this bit to determine whether the PEGC 256-color framebuffer is available at that location, or whether that is
      just plain system memory. Added for homebrew PC-9821 project KOARMADA.EXE which uses that bit to determine how to talk to the framebuffer. (joncampbell123).
    • Fix keyboard ISR in PC-98 mode to assume there is data waiting from the keyboard I/O ports (then check the status for more). The reason is that CWSDPMI.EXE for PC-98 has a keyboard ISR of it's own that reads the scan code first (which clears the
      "data available" bit) before then passing control to the real-mode keyboard ISR. If our keyboard ISR first checks for status in that case it will never see any keyboard data and keyboard input will never register to the guest while running under CWSDPMI (joncampbell123).
    • Fix BIOS POST location (F000:FFF0) JMP instruction in PC-98 mode so that the segment value of the JMP instruction matches a specific value that the DJGPP C runtime checks for to detect PC-98. (joncampbell123).
    • Stop serving IBM PC-specific CWSDPMI.EXE in NEC PC-98 mode. It happens to work unless any interrupt or exception happens. Instead, provide an alternate common version of CWSDPMI.EXE that was patched to support PC-98 machines when machine=pc98 (joncampbell123).
    • Add support for ucrt64 builds (maron2000)
    • DOS CTRL+C handling: Remove NULL vector check because built-in COMMAND.COM long ago was fixed to provide a CTRL+C vector. Fix code to use a different value for the C++ exception so that it cannot be confused for any other common signal in the emulator (joncampbell123).
    • Remove DOSBox Integration Device VGA "self capture", which was never used much anyway, as part of cleanup (joncampbell123).
    • x86 paging: Remove unused non-"full TLB" code. (joncampbell123).
    • Use mmap() to allocate system memory if available. This is for future work that may involve something that requires page-aligned allocation, such as KVM support in Linux (joncampbell123).
    • VGA cleanup, organization (joncampbell123).
    • Fixed regression of specifying DBCS fontx file was ignored. (maron2000)
    • Fixed mistakes in adding double quotes to filenames to pass to IMGMOUNT command, and syntax errors in showing a message dialog box. (maron2000)
    • Fixed bug where bios memSize was not set when using TTF. (maitchison)
    • Fixed CMS was always disabled regardless of config settings. (xrip)
    • Switch off TTF mode in text modes not working in TTF mode. (maron2000)
    • Gravis Ultrasound: Add dosbox.conf option that when enabled, prints a warning to the log file every time the guest pokes data into GUS RAM beyond the 1MB supported by the card, in order to better identify errant Demoscene code and/or any bugs in new tracker code currently in development. (joncampbell123)
    • VGA: Fix buffer overrun that can occur with 4bpp planar 16-color modes if the guest writes beyond the first 2MB of video RAM. The planar support code also copies the 3rd bitplane to a font RAM array used in EGA/VGA text mode. This font RAM array is only 512KB, therefore in planar memory space, writes beyond (2MB/4) = 512KB cause corruption of emulator state and possibly crashes. Solve the issue therefore by not copying to font RAM beyond 512KB. (joncampbell123)
    • VESA BIOS support: Fix VGA draw and bank switching code to ensure that the guest cannot write outside video RAM limits, and fix VBE bank switching code to consider 4bpp planar SVGA modes properly. (joncampbell123)
    • VESA BIOS support: Fix scan line and page calculations related to 4bpp planar 16-color SVGA modes. (joncampbell123)
    • VESA BIOS support: Fix 24bpp RGB bugs related to VBE calls that control scan line length and display panning/scrolling. Now VBETEST can test 24bpp panning without potentially giving the user an epileptic seizure, and there are no more overlong scanlines. (joncampbell123)
    • VESA BIOS support: Correct mode information for SVGA text modes (joncampbell123)
    • VESA BIOS support: Like real Pentium-era hardware, do not list 4bpp planar 16-color modes as having a linear framebuffer. Most SVGA cards only support planar VGA memory within the standard VGA A0000-BFFFFh region and do not support the same up in the linear framebuffer area. (joncampbell123)
    • Save state support: Let the option to control whether or not compression is applied, apply to the ZIP compression. If you turn off compression, the ZIP file uses "store" mode instead, otherwise compresses as normal. (joncampbell123)
    • It turns out that for whatever reason, the savestate code was compressing the state twice. Once by itself, and then again when writing to the ZIP archive. Furthermore, storing the original length at the end of the compressed data using size_t is a big problem. Remove the extra compression/decompression and let the ZIP file support do the compression. Save states from now on will be marked as "No compression" for at least some backwards compatibility. (joncampbell123)
    • Volume label cleanup and fixes. Do not pad labels with white spaces. (maron2000)
    • Some NEC PC-98 games that support MIDI through MPU-401 like to use Roland GS-specific SysEx messages to control master volume and reset the MIDI synth, instead of standard messages. These games were known in DOSBox-X to have problems with MIDI stuck notes and hanging notes for this reason. Added code to recognize Roland GS reset SysEx and reissue it as standard MIDI reset, to resolve that. Added code to Fluidsynth MIDI support to recognize the Roland GS master volume SysEx commands and apply it to the output, which allows these games to "fade out" the MIDI properly. PC-98 games should no longer have hanging/stuck MIDI notes (joncampbell123).
    • Fix VESA BIOS modelist mistake that marked all "high definition" modes as modes to round bytes per line up to a power of 2 (joncampbell123)
    • Fix memory size register determination for S3 Virge/VX (clbianco)
    • Fixed a Y2038 bug by replacing Int32x32To64 with regular multiplication. (CookiePLMonster)
    • Fixed pasting Bell code (0x07) from clipboard was ignored. (maron2000)
    • Fixed a segfault crash when pasting the content of clipboard is empty or consists of invalid characters only. (maron2000)
    • Fixed crash when trying to access MOUNTed empty physical CD/Floppy drives. (maron2000)

MAME Frontend - Erockus ARCADE v12.8 - Released

Details
Category: Multiple Platform
Published: 01 February 2025

Erockus ARCADE - Windows  Erockus ARCADE - Windows

What's New:

- Updated for MAME .274

Retrom v0.7.4 - Added

Details
Category: Multiple Platform
Published: 01 February 2025

Retrom - Windows  Retrom (AppImage)  Retrom (deb)  Retrom (rpm)  Retrom - Mac (Apple)  Retrom - Mac (Intel)  Retrom (Source)

Retrom is a centralized game library management service that allows you to host your games on a single device, and connect clients on any amount of other devices to (un)install/download and play them when and where you want to! Think of it as a sort of self-hosted Steam for your DRM-free game library.

Nintendo 3DS Emulator - Mandarine3DS v1.2.1 - Released

Details
Category: Multiple Platform
Published: 01 February 2025

Mandarine3DS - Windows  Mandarine3DS (AppImage)  Mandarine3DS - Mac  Mandarine3DS - Android  Mandarine3DS (Source)

What's New:

    • Add screen orientation presets to layout settings on Android @kleidis
    • Fix a few strings on android that weren't modified properly previously
    • Fix cherry-picking mistake for Swedish translations

Dragon 32/64 and CoCo 2 Emulator - XRoar v1.8 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

XRoar - Windows (32bit)  XRoar - Windows (64bit)  XRoar - Mac  XRoar (Source)

What's New:

      • Fix mouse virtual joystick on resize in SDL builds [Richard Kelly]
      • New manual and automatic configuration saving from GUI
      • Manage HD mounting from drive control dialog
      • New MCX128 cartridge support for MC-10
      • Fix some of the compatibility modes in GIME emulation
      • Assert monitor detect line on CoCo 3 when RGB output selected
      • Reduce write latency using Becker port [Ron Klein]
      • Add some more flexible command-line trap options

Wolfmame v0.274 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

Wolfmame - Windows (64bit)  Wolfmame - Windows (32bit)  WolfMAME (Source)

What's New:

Updated to latest MAME source.

Mupen64plus Frontend - Rosalie's Mupen GUI v0.7.2 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

Rosalie's Mupen GUI - Windows  Rosalie's Mupen GUI - Linux  Rosalie's Mupen GUI (Source)

What's New:

      • Fix Log dialog and Netplay Session dialog not having a minimize button
      • Fix Netplay Session dialog not having an icon
      • Fix cheats not applying at emulation start
      • Improve netplay dialogs by saving and restoring the server selection
      • Improve netplay dialogs by adding icons to some buttons
      • Improve netplay dialogs by showing the ping
      • Improve device detection of RMG-Input
      • Implement cheat support for netplay

HP Calculator Emulator - Plus42 v1.2.2 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

Plus42 - Windows (32bit)  Plus42 - Windows (64bit)  Plus42 - Linux  Plus42 - Mac  Plus42 (Source)

What's New:

* User-defined units with SI prefixes didn't work in the CUSTOM menu. Fixed.
* Units with SI prefixes didn't work in the CUSTOM menu. Fixed.

MAME v0.274 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

MAME (64bit)  MAME (Source)

What's New:

MAME Testers bugs fixed
-----------------------
- 01595: [Sound] (galaxian/galaxold.cpp) drivfrcg, drivfrcb , drivfrct, drivfrcsg: The crash sound doesn’t play. (Robbbert)
- 04095: [Sound] (namco/namcos1.cpp) splatter, splattero, splatterj: Music for the second stage boss scene is incorrect. (hap)
- 04546: [Graphics] (snk/lasso.cpp) pinbo, pinboa, pinbos: The background color is incorrect. (hap)
- 04729: [Misc.] (namco/namcond1.cpp) ncv1: [possible] The graphics ROM appears to have an incorrectly set bit. (MASH)
- 05592: [Graphics] (konami/asterix.cpp) All games in asterix.cpp: The windmill animation doesn’t work properly. (hap)
- 06865: [Interface] (taito/undrfire.cpp) undrfire and clones: The fake “Show gun target” switch doesn’t work. (hap)
- 07312: [DIP/Input] (irem/m72.cpp) poundfor: Trackball inputs don’t work properly. (hap)
- 07543: [Misc.] (konami/rungun.cpp) rungund, rungunad, rungunbd, rungunuad, rungunud, slmdunkjd: Out-of-bounds accesses. (hap)
- 07573: [Sound] (orca/espial.cpp) netwars: Sounds/music play too slowly. (hap)
- 07938: [Known Issues/To-Do's] (konami/konamim2.cpp) totlvice, evilngt: Second and third player light gun inputs are missing. (hap)
- 07958: [Sound] (sony/taitogn.cpp) kollon, kollonc: Sound is distorted. (hap)
- 08472: [Misc.] (sinclair/atm.cpp) some sinclair/* drivers: The emulator crashes on out-of-bounds palette accesses. (holub)
- 08510: [Gameplay] (midway/balsente.cpp) stocker: The gear shift control should be a toggle switch. (John IV)
- 08660: [DIP/Input] (namco/skykid.cpp) drgnbstr: The “Allow Continue” DIP switch settings are reversed. (Zach S.)
- 08731: [DIP/Input] (taito/taito_z.cpp) bsharkjjs: Left/Right inputs are reversed. (Uncle Petros)
- 08962: [DIP/Input] (konami/zr107.cpp) jetwave, jetwavej: Analog inputs are too sensitive. (hap)
- 08980: [Known Issues/To-Do's] (konami/konamim2.cpp) all sets in konamim2.cpp: Poor performance while loading. (David Haywood)
- 09052: [Misc.] (sega/segaybd.cpp) rchase: Recoil outputs for both gun controllers are sent to a single output. (AchillesPDX)
- 09054: [Speed] (taito/bublbobl.cpp) tokio and clones: CPU time slices are unnecessarily short. (hap)
- 09060: [Graphics] (gottlieb/gottlieb.cpp) krull: Graphics may not display correctly after loading a saved state. (JimCarlTay)
- 09061: [Color/Palette] (nintendo/spacefb.cpp) spacedem: [possible] The background should be black. (hap)
- 09062: [Sound] (sanritsu/drmicro.cpp) drmicro: PSG sound pitch is too high. (125scratch)
- 09063: [Graphics] (pacman/pacman.cpp) alibaba and clones: The mystery item timer is not displayed. (hap)
- 09065: [Sound] (snk/lasso.cpp) lasso, chameleo, wwjgtin: Sound pitch and tempo are incorrect. (hap)
- 09067: [Interface] The tilemap viewer maps the pointer location incorrectly if the tilemap is flipped on either axis. (hap)
- 09077: [Interface] (nichibutsu/nbmj8891.cpp) mjcamerb, mmcamera: Version on older hardware is not marked as a clone. (Vas Crabb)
- 09084: [Sound] (galaxian/galaxold.cpp) 4in1: Explosion sounds do not play. (Robbbert)
- 09087: [Gameplay] (philips/cdi.cpp) quizardi_10: The game does not boot correctly. (Ivan Vangelista)
- 09094: [Interface] (snk/prehisle.cpp) gensitou: The description does not include the release region. (JimCarlTay)
- 09095: [Interface] UI: The menu item highlight texture is not symmetrical. (Vas Crabb)
- 09097: [DIP/Input] (seta/seta.cpp) drgnunit: The undocumented eighth DIP switch in the first bank adjusts stage time. (GoldS_TCRF)

Read more: MAME v0.274 - Released

Nintendo 64 Emulator - Gopher64 v1.0.0 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

Gopher64 - Windows (x86)  Gopher64 - Linux (x86)  Gopher64 - Linux (ARM)  Gopher64 - Mac (Intel)  Gopher64 - Mac (Apple)  Gopher64 (Source)

What's New:

      • remove rdp_full_sync
      • fix freeze in JFG
      • static link MoltenVK
      • Modify RSP sync points
      • add another sync point for RSP
      • dont run rsp task when dma is busy
      • RDP sync updates
      • add rdram reg that libdragon seems to access
      • fix masking pi regs
      • use TCP_RECEIVE_SAVE_WITH_SIZE for netplay
      • cache apt packages in github workflow
      • cleanup dir detection
      • check accept value of netplay begin_game message
      • use binary format for rom saves
      • dont create new UI on close
      • move sse2neon to versioned folder
      • Use SDL_Vulkan_GetVkGetInstanceProcAddr
      • Don't create UI in same thread as egui
      • Use github arm runner
      • on mac, run game in new process

Amstrad CPC Emulator - Caprice32 - Updated

Details
Category: Multiple Platform
Published: 31 January 2025

Caprice32 - Windows (32bit)  Caprice32 - Windows (64bit)  Caprice32 - Mac  Caprice32 (Source)

What's New

Atari Jaguar Emulator - BigPEmu v 1.18 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

BigPEmu - Windows (x86)  BigPEmu - Windows (ARM)  BigPEmu - Linux

What's New:

- New Steam integration! This includes support for game servers, friends/invites, rich presence, and more. At the time of this writing, Valve is still holding the actual Steam release up over some petty nonsense. (like supported categories and Patreon references)
- Added a script for Breakout 2000 touch control. The paddle is horizontally positioned to match the first active touch.
- Added an audio interpolation setting, along with a higher-quality bandlimited audio interpolator.
- Added an option to change the size of the state operation undo buffer.
- Exposed a few more network settings.
- Added options for PvP damage scaling and infinite shotgun ammo to the AvP MP script.
- Added another terrible secret.
- Fixed a bunch of problems in the socket implementation for non-Windows platforms. Special thanks to Luigi for spending the entire morning of December 4, 2024 helping me debug these problems and for offering some excellent tips on developing class consciousness. (he's a big fan of OOP)
- Various changes/optimizations in the network protocol.
- Fixed swipe velocity not being explicitly reset when entering the menu.
- Fixed a GUID conflict bug in the SDL2 input plugin. Thanks to Tartifless for the bug report.
- Fixed script input callbacks having the potential to break movie recording/playback.

Gamepad Utility - AntiMicroX v3.5.1 - Released

Details
Category: Multiple Platform
Published: 31 January 2025

AntiMicroX

What's New:

Fixed bugs

  • Fix appId on Wayland pull 1100 (by ReillyBrogan)
  • Wrong install dependencies on a Debian build with QT6 #1104

Notable changes

  • New translation: Tamil
  • Update translation for: Spanish, French, Japanese, Finnish,
  • Create deb release dor Ubuntu 24.04
  • Update Windows and Linux SDL mappings
  • Add "game" category to desktop file pull 1085 (by Fr-Dae)
  • Cleanup in logs
  • Add proper note informing about lack of Wayland support for Auto Profiles
  • Cleanup in dependencies
  • Fix some typos and update docs (by zturtleman )

Implemented enhancements:

  • Reenabled --next option #189

Sega Model 3 Arcade Emulator - Supermodel3-PonMi 26 January 2025 - Released

Details
Category: Multiple Platform
Published: 26 January 2025

Supermodel3-PonMi - Windows  Supermodel3-PonMi - Windows (Source) (Linux instructions)  Supermodel3-PonMi - Windows (Source) (Mac instructions)

What's New:

Fixed an issue where the -congif-inputs window was not displayed correctly.

Nintendo Switch Emulator - Citron Canary v0.4 - Released

Details
Category: Multiple Platform
Published: 26 January 2025

Citron Canary - Windows  Citron Canary- Linux  Citron - Android  Citron Canary (Source)

What's New

Xbox Emulator - xemu v0.8.12 - Released

Details
Category: Multiple Platform
Published: 26 January 2025

xemu - Windows (x86)  xemu - Windows (ARM)  xemu (AppImage)  xemu - Mac  xemu (Source)

What's New:

scripts/gen-license.py: Get version from glslang subproj
xid: Add Xbox Controller S

Page 7 of 34

  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
© 2003 - 2025 Dweezledap Development