Emulators on macOS: Difference between revisions

From Emulation General Wiki
Jump to navigation Jump to search
Xianmo (talk | contribs)
Add SharpEmu
Gorilli09 (talk | contribs)
Cleanup
Line 1: Line 1:
{{Infobox OS/macOS}}
{{outdated}}
{{outdated}}
{{Infobox OS/macOS}}
{{NEL}}
:''This page is about emulators that run on macOS (previously Mac OS X).''


: ''This page is about emulators that run on macOS (previously Mac OS X).''
{{for|software that emulates macOS on other hardware|macOS emulators}}  
{{for|software that emulates macOS on other hardware|macOS emulators}}  
{{for|emulators that run on Classic Mac OS|Emulators on Legacy systems#Classic Mac OS}}
{{for|emulators that run on Classic Mac OS|Emulators on Legacy systems#Classic Mac OS}}
Line 8: Line 9:
The Mac has changed considerably over the years, both in terms of hardware and software. It is important to understand these changes so you can choose the best emulators for your Mac.
The Mac has changed considerably over the years, both in terms of hardware and software. It is important to understand these changes so you can choose the best emulators for your Mac.


;Operating System - Classic Mac OS | macOS
; Operating System - Classic Mac OS | macOS
The Mac has had two main operating systems over its history: The "Classic" Mac OS versions 1 through 9, and Mac OS X (Ten, not pronouced as "Ex") which is now referred to simply as macOS. Classic was a closed-source proprietary OS, whereas macOS is based on an open-source Unix variant called Darwin. This Unix base helps with Linux compatibility.  
 
The Mac has had two main operating systems over its history: The "Classic" Mac OS versions 1 through 9, and Mac OS X (Ten, not pronouced as "Ex") which is now referred to simply as macOS. Classic was a closed-source proprietary OS, whereas macOS is based on an open-source Unix variant called Darwin. This Unix base helps with Linux compatibility.


The first several releases of macOS up to 10.4 Tiger contained support for Classic applications, but this was later dropped.
The first several releases of macOS up to 10.4 Tiger contained support for Classic applications, but this was later dropped.


;CPU Architecture - PowerPC | x86 | x64 | Arm64
; CPU Architecture - PowerPC | x86 | x64 | Arm64
macOS has supported three major cpu architecture changes: IBM PowerPC (PPC), Intel x86/x64 and most recently Apple Silicon (Arm64). There have also been minor architectural changes such as moving from 32-bit PPC processors to the 64-bit PPC G5, or from Intel's 32-bit x86 to 64-bit x64. Each time there was a hardware transition, Apple provided ways to continue to support older software on the new systems.


Rosetta was a software emulation layer that helped PPC applications to run on x86/x64 Macs. It was built into 10.4.4 Tiger, but was an optional install in macOS 10.6 Snow Leopard and not available at all for 10.7 Lion. Rosetta 2 currently facilitates x64 software to run on Arm Macs. While Rosetta performs very respectably for most software, it adds extra overhead which can reduce performance on demanding games and emulators.  
macOS has supported three major cpu architecture changes: IBM PowerPC (PPC), Intel x86/x64 and most recently Apple Silicon (Arm64). There have also been minor architectural changes such as moving from 32-bit PPC processors to the 64-bit PPC G5, or from Intel's 32-bit x86 to 64-bit x64. Each time there was a hardware transition, Apple provided ways to continue to support older software on the new systems.


Apple also introduced Universal Binaries that bundle software for different architectures into a single app bundle. For example, Universal 2 app bundles contain x64 and Arm versions of software in one app. This is very useful for portability, or for people who don't know or care about their Mac's specs. If you know what CPU your Mac has, the advantage of getting the specific version for your CPU is that it will have a smaller file size than the universal binary. However the size difference is usually tiny, so just using the universal binary is usually the way to go.  
Rosetta was a software emulation layer that helped PPC applications to run on x86/x64 Macs. It was built into 10.4.4 Tiger, but was an optional install in macOS 10.6 Snow Leopard and not available at all for 10.7 Lion. Rosetta 2 currently facilitates x64 software to run on Arm Macs. While Rosetta performs very respectably for most software, it adds extra overhead which can reduce performance on demanding games and emulators.


;Graphical Backend - OpenGL | MoltenVK | KosmicKrisp | Metal
Apple also introduced Universal Binaries that bundle software for different architectures into a single app bundle. For example, Universal 2 app bundles contain x64 and Arm versions of software in one app. This is very useful for portability, or for people who don't know or care about their Mac's specs. If you know what CPU your Mac has, the advantage of getting the specific version for your CPU is that it will have a smaller file size than the universal binary. However the size difference is usually tiny, so just using the universal binary is usually the way to go.
Another aspect to consider is the graphical backend of the emulator. For many years OpenGL was the main cross-platform standard for developing graphical software. However in recent times this has changed. More modern backends such as Vulkan and Metal are superseding it. OpenGL on macOS is deprecated, meaning it is stuck on the older OGL 4.1. It doesn't receive any support or bug fixes and will someday be removed from macOS completely. Apple recommends for developers to create native Metal backends for their apps.  
 
; Graphical Backend - OpenGL | MoltenVK | KosmicKrisp | Metal
 
Another aspect to consider is the graphical backend of the emulator. For many years OpenGL was the main cross-platform standard for developing graphical software. However in recent times this has changed. More modern backends such as Vulkan and Metal are superseding it. OpenGL on macOS is deprecated, meaning it is stuck on the older OGL 4.1. It doesn't receive any support or bug fixes and will someday be removed from macOS completely. Apple recommends for developers to create native Metal backends for their apps.


One issue with this is that a lot of emulators are cross-platform, and Metal is only for Apple's platforms. The Vulkan backend for Windows and Linux is similar to Metal, but does not have support on macOS. So, many emulators will develop a Vulkan backend and use a translation layer, like MoltenVK or KosmicKrisp, which will take Vulkan instructions and convert them into their respective Metal equivalent. However not every Vulkan instruction has a Metal version, so either workarounds have to be designed, or some features cannot be supported at all. There are two Vulkan-to-Metal translation layers: MoltenVK and KosmicKrisp. MoltenVK is older and was originally developed when Macs were still using Intel CPUs. KosmicKrisp is newer, and is targeting Arm chips and Metal 4 which is a closer match to Vulkan. KosmicKrisp is still in early development but has the potential to be superior to MoltenVK, with the drawback of dropping support for Intel Macs.
One issue with this is that a lot of emulators are cross-platform, and Metal is only for Apple's platforms. The Vulkan backend for Windows and Linux is similar to Metal, but does not have support on macOS. So, many emulators will develop a Vulkan backend and use a translation layer, like MoltenVK or KosmicKrisp, which will take Vulkan instructions and convert them into their respective Metal equivalent. However not every Vulkan instruction has a Metal version, so either workarounds have to be designed, or some features cannot be supported at all. There are two Vulkan-to-Metal translation layers: MoltenVK and KosmicKrisp. MoltenVK is older and was originally developed when Macs were still using Intel CPUs. KosmicKrisp is newer, and is targeting Arm chips and Metal 4 which is a closer match to Vulkan. KosmicKrisp is still in early development but has the potential to be superior to MoltenVK, with the drawback of dropping support for Intel Macs.
Line 27: Line 31:
Using one of these backends is not mandatory, of course. Some emulators may use a different backend or handle graphics themselves.
Using one of these backends is not mandatory, of course. Some emulators may use a different backend or handle graphics themselves.


;Before diving in;
; Before diving in;
;*Remember that emulators can have different levels of completion or compatibility. If a game you are trying to run does not work properly with a recommended emulator, try a different one. All this means that to find an emulator that works well for your Mac you should understand its specs first. Choose an emulator that supports your CPU architecture natively where possible. The emulators shown here will indicate the processor architecture it supports. Generally you should choose an emulator that supports Metal where available if you are on a modern Mac. MoltenVK should be more performant than OpenGL, although there may be compatibility issues. KosmicKrisp should be more compatible and performant than MoltenVK. OpenGL may work, but some emulators need to use a version newer than OGL 4.1 that macOS doesn't support. In cases like this the emulator will be marked as not having OpenGL support. This list shows the latest versions of the emulator software. If you have an older CPU and the latest version does not support it, some emulators will keep archives of older versions that might, check out their website.
;* Remember that emulators can have different levels of completion or compatibility. If a game you are trying to run does not work properly with a recommended emulator, try a different one. All this means that to find an emulator that works well for your Mac you should understand its specs first. Choose an emulator that supports your CPU architecture natively where possible. The emulators shown here will indicate the processor architecture it supports. Generally you should choose an emulator that supports Metal where available if you are on a modern Mac. MoltenVK should be more performant than OpenGL, although there may be compatibility issues. KosmicKrisp should be more compatible and performant than MoltenVK. OpenGL may work, but some emulators need to use a version newer than OGL 4.1 that macOS doesn't support. In cases like this the emulator will be marked as not having OpenGL support. This list shows the latest versions of the emulator software. If you have an older CPU and the latest version does not support it, some emulators will keep archives of older versions that might, check out their website.
;*See each Wiki Category [[:Category:Consoles|Consoles]], [[:Category:Computers|Computers]] and [[:Category:Arcade|Arcade]] for individual dedicated system pages to see provided up-to-date listings and in-depth information on specific aspects like hardware features, peripheral support, compatibility and also enhancements features etc.
;* See each Wiki Category [[:Category:Consoles|Consoles]], [[:Category:Computers|Computers]] and [[:Category:Arcade|Arcade]] for individual dedicated system pages to see provided up-to-date listings and in-depth information on specific aspects like hardware features, peripheral support, compatibility and also enhancements features etc.
;*Some games have native [[Source ports on macOS]], which can be better than playing through an emulator. Also see [[Game engine recreations and source ports]] page for a list for all platforms.
;* Some games have native [[Source ports on macOS]], which can be better than playing through an emulator. Also see [[Game engine recreations and source ports]] page for a list for all platforms.
 
== Frontends ==
A frontend is a graphical user interface (GUI) that uses one or more emulator cores under the hood. They could replace the GUI of the official emulator, or they could provide a GUI for command-line-only emulators like [[MAME]] or [[Mednafen]]. They are also very useful for consolidating games into a single library.
 
There are two types of frontends:


==Frontends==
- Desktop frontends are designed to be navigated with a mouse and keyboard. These can give a Mac-native user interface to command-line or cross-platform emulators


A frontend is a graphical user interface (GUI) that uses one or more emulator cores under the hood. They could replace the GUI of the official emulator, or they could provide a GUI for command-line-only emulators like [[MAME]] or [[Mednafen]]. They are also very useful for consolidating games into a single library.<br><br>
There are two types of frontends:<br>
- Desktop frontends are designed to be navigated with a mouse and keyboard. These can give a Mac-native user interface to command-line or cross-platform emulators<br>
- Fullscreen frontends are designed to be navigated with a game controller. These are very useful if you want to connect your Mac to a TV (or mirror your screen to an AppleTV) and use it as a mini-console
- Fullscreen frontends are designed to be navigated with a game controller. These are very useful if you want to connect your Mac to a TV (or mirror your screen to an AppleTV) and use it as a mini-console


===OpenEmu===
=== OpenEmu ===
[[OpenEmu]] is an excellent desktop frontend designed for macOS that provides a clean iTunes-like interface. The systems emulated are listed [https://github.com/OpenEmu/OpenEmu/wiki#supported-systems here]. It supports shaders that can improve many 2D games, but some advanced features such as upscaling for 3D games are generally not available.
[[OpenEmu]] is an excellent desktop frontend designed for macOS that provides a clean iTunes-like interface. The systems emulated are listed [https://github.com/OpenEmu/OpenEmu/wiki#supported-systems here]. It supports shaders that can improve many 2D games, but some advanced features such as upscaling for 3D games are generally not available.


OpenEmu has not been actively developed for several years, and there has never been an official Arm release. However, there is an actively developed fork called [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest OpenEmu-Silicon] that is a Universal Binary and has added several more cores and features such as cloud sync, retro-achievements and alternate cover-art sources.
OpenEmu has not been actively developed for several years, and there has never been an official Arm release. However, there is an actively developed fork called [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest OpenEmu-Silicon] that is a Universal Binary and has added several more cores and features such as cloud sync, retro-achievements and alternate cover-art sources.


===EmulationStation===
=== EmulationStation ===
[[EmulationStation|EmulationStation Desktop Edition]] is a fullscreen frontend that integrates many emulators, including both command-line and standalone apps. To work properly with standalone apps they usually need to be configured to enter fullscreen automatically on launch.
[[EmulationStation|EmulationStation Desktop Edition]] is a fullscreen frontend that integrates many emulators, including both command-line and standalone apps. To work properly with standalone apps they usually need to be configured to enter fullscreen automatically on launch.


===RetroArch===
=== RetroArch ===
[[RetroArch]] is fullscreen frontend that supports many cores. It is popular but the UI is poor, it is not user-friendly and many of the cores are not updated.  
[[RetroArch]] is fullscreen frontend that supports many cores. It is popular but the UI is poor, it is not user-friendly and many of the cores are not updated.


===Attract-Mode===
=== Attract-Mode ===
[https://attractmode.org/index.html Attract-Mode] is a fullscreen frontend that supports many cores. There is only an x64 build available on the website. It currently cannot be [https://github.com/mickelson/attract built from source] as the macOS source code has not been maintained.
[https://attractmode.org/index.html Attract-Mode] is a fullscreen frontend that supports many cores. There is only an x64 build available on the website. It currently cannot be [https://github.com/mickelson/attract built from source] as the macOS source code has not been maintained.


There is a fork called [https://github.com/oomek/attractplus Attract-Mode Plus] that is in active development and has Apple Silicon builds, though as of writing the most recent release does not launch correctly.
There is a fork called [https://github.com/oomek/attractplus Attract-Mode Plus] that is in active development and has Apple Silicon builds, though as of writing the most recent release does not launch correctly.


===Fightcade===
=== Fightcade ===
[[Fightcade]] is a desktop matchmaking frontend for playing many arcade fighting games online with other players. There is currently no Arm build.
[[Fightcade]] is a desktop matchmaking frontend for playing many arcade fighting games online with other players. There is currently no Arm build.


===Ample===
=== Ample ===
[https://github.com/ksherlock/ample Ample] is a frontend for MAME specifically for emulating the Apple II.
[https://github.com/ksherlock/ample Ample] is a frontend for MAME specifically for emulating the Apple II.


==Game-Specific Emulators==
== Game-specific emulators ==
Some emulators target specific games rather than emulating whole systems, with ScummVM alone supporting over 300 games from various systems and more being added all the time.  
Some emulators target specific games rather than emulating whole systems, with ScummVM alone supporting over 300 games from various systems and more being added all the time.


Other projects are more considered source ports rather than emulators. See [[Source ports on macOS]]
Other projects are more considered source ports rather than emulators. See [[Source ports on macOS]]
 
{| {{Emulator table}}
{| class="wikitable" style="text-align:center;"
!Name
! scope="col"|Name
!Latest Version
! scope="col"|Latest Version
!PPC
! scope="col"|PPC
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!ARM
! scope="col"|ARM
!OpenGL
! scope="col"|OpenGL
!MoltenVK
! scope="col"|MoltenVK
!Metal
! scope="col"|Metal
!Gamepad Support
! scope="col"|Gamepad Support
![[Licensing|License]]
! scope="col"|[[Licensing|License]]
!Active
! scope="col"|Active
!Games List
! scope="col"|Games List
![[Recommended Emulators|Recommended]]
! scope="col"|[[Recommended Emulators|Recommended]]
|-
|-
| [[ScummVM]]
|[[ScummVM]]
| [https://www.scummvm.org/downloads/ {{ScummVMVer}}]
|[https://www.scummvm.org/downloads/ {{ScummVMVer}}]||{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
Line 94: Line 98:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| [https://www.scummvm.org/compatibility/ List]
|[https://www.scummvm.org/compatibility/ List]||{{Ya}}  
| {{Ya}}  
|-
|-
| [[DREAMM]]
|[[DREAMM]]
| [https://aarongiles.com/dreamm {{DREAMMVer}}]<br>[https://aarongiles.com/dreamm/beta Beta Releases]
|[https://aarongiles.com/dreamm {{DREAMMVer}}]
[https://aarongiles.com/dreamm/beta Beta Releases]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 109: Line 113:
| {{Red}} {{License|Proprietary}}  
| {{Red}} {{License|Proprietary}}  
| {{Ya}}
| {{Ya}}
| [https://aarongiles.com/dreamm/docs/v40/#intro-games List]
|[https://aarongiles.com/dreamm/docs/v40/#intro-games List]||{{Ya}}  
| {{Ya}}  
|}
|}


==Arcade==
== Arcade ==
===Most Arcade Cabinets===
 
{| class="wikitable" style="text-align:center;"
=== Most arcade cabinets ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 142: Line 145:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Sega Atomiswave===
=== Atomiswave ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Flycast]]
|[[Flycast]]
| [https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]
|[https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 175: Line 177:
| {{Ya}}
| {{Ya}}
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 187: Line 188:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Sega Model 3===
=== Sega Model 3 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Supermodel]]
|[[Supermodel]]
| [https://github.com/trzy/Supermodel {{SupermodelVer}}]
|[https://github.com/trzy/Supermodel {{SupermodelVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}<ref group="note" name=command-line>Command-line only application. No app bundle provided.</ref>
| {{Ya}}<ref group="N" name=command-line>Command-line only application. No app bundle provided.</ref>
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 220: Line 220:
| {{Na}}
| {{Na}}
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 232: Line 231:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Sega NAOMI/NAOMI 2===
=== NAOMI ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Flycast]]
|[[Flycast]]
| [https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]
|[https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 265: Line 263:
| {{Ya}}
| {{Ya}}
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 277: Line 274:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Sega-Nintendo-Namco Triforce===
=== Triforce ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Dolphin]]
|[[Dolphin]]
| [https://dolphin-emu.org/download/?ref=btn {{DolphinVer}}]<ref group="N" name=triforce>Information about the Triforce can be found [https://dolphin-emu.org/blog/2026/02/16/rise-of-the-triforce/ here]</ref>
|[https://dolphin-emu.org/download/?ref=btn {{DolphinVer}}]<ref name="triforce">Information about the Triforce can be found [https://dolphin-emu.org/blog/2026/02/16/rise-of-the-triforce/ here]</ref>||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 311: Line 307:
|}
|}


===SNK Neo Geo MVS===
=== Neo Geo MVS/AES ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 341: Line 336:
| {{Ya}}  
| {{Ya}}  
|-
|-
| [[FinalBurn Neo]]
|[[FinalBurn Neo]]
| [https://github.com/finalburnneo/FBNeo/releases/latest {{FinalBurnNeoVer}}]
|[https://github.com/finalburnneo/FBNeo/releases/latest {{FinalBurnNeoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 355: Line 349:
| {{~}}
| {{~}}
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 367: Line 360:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Arcade LaserDisc===
=== LaserDisc ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 398: Line 390:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| [[Hypseus Singe]]
|[[Hypseus Singe]]
| [https://github.com/DirtBagXon/hypseus-singe/releases/latest {{HypseusSingeVer}}]
|[https://github.com/DirtBagXon/hypseus-singe/releases/latest {{HypseusSingeVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 415: Line 406:
|}
|}


==Nintendo==
== Nintendo ==
===NES/Famicom===
 
{| class="wikitable" style="text-align:center;"
=== NES/Famicom ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 446: Line 437:
| {{Ya}}
| {{Ya}}
|-
|-
| GoNES
|GoNES
| [https://github.com/gabe565/gones/releases/latest {{GoNESVer}}]
|[https://github.com/gabe565/gones/releases/latest {{GoNESVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 460: Line 450:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 474: Line 463:
| {{Ya}}
| {{Ya}}
|-
|-
| TetaNES
|TetaNES
| [https://github.com/lukexor/tetanes/releases/latest {{TetaNESVer}}]
|[https://github.com/lukexor/tetanes/releases/latest {{TetaNESVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 489: Line 477:
|-
|-
|MetalNES
|MetalNES
| [https://github.com/iaddis/metalnes git]
|[https://github.com/iaddis/metalnes git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 500: Line 487:
| {{Green}} {{License|MIT}} ({{License|Permissive}})
| {{Green}} {{License|MIT}} ({{License|Permissive}})
| {{Na}}
| {{Na}}
| {{Na}}<ref group="N" name=compile>Must compile from source.</ref>
| {{Na}}<ref group="note" name=compile>Must compile from source.</ref>
|-
|-
| [[Nestopia]]
|[[Nestopia]]
| [https://github.com/0ldsk00l/nestopia {{NestopiaVer}}]
|[https://github.com/0ldsk00l/nestopia {{NestopiaVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 514: Line 500:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Na}}<ref group="N" name=compile>Must compile from source.</ref>
| {{Na}}<ref group="note" name=compile>Must compile from source.</ref>
|-
|-
| SwiftNES
|SwiftNES
| [https://github.com/agg23/SwiftNES git]
|[https://github.com/agg23/SwiftNES git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 528: Line 513:
| {{R}}
| {{R}}
| {{Na}}
| {{Na}}
| {{Na}}<ref group="N" name=compile>Must compile from source.</ref>
| {{Na}}<ref group="note" name=compile>Must compile from source.</ref>
|-
|-
| [https://nin.nax.io Nin]
|[https://nin.nax.io Nin]
| [https://github.com/Nax/nin/releases/latest git]
|[https://github.com/Nax/nin/releases/latest git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 545: Line 529:
|}
|}


===Super Nintendo===
=== Super Nintendo Entertainment System ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 575: Line 558:
| {{Ya}}
| {{Ya}}
|-
|-
|[[bsnes]]<br><small>(Official)</small>
|[[bsnes]]
|[https://github.com/bsnes-emu/bsnes/releases/latest {{bsnesVer}}]
<small>(Official)</small>
| {{Na}}
|[https://github.com/bsnes-emu/bsnes/releases/latest {{bsnesVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 589: Line 572:
| {{Ya}}
| {{Ya}}
|-
|-
| [[SUPER ZSNES]]
|[[SUPER ZSNES]]
| [https://www.zsnes.com/#downloads {{SuperZSNESVer}}]
|[https://www.zsnes.com/#downloads {{SuperZSNESVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 603: Line 585:
| {{Ya}}
| {{Ya}}
|-
|-
|[[Bsnes#List_of_forks|bsnes-hd]]<br><small>(forked bsnes)</small>
|[[Bsnes#List of forks|bsnes-hd]]
|[https://github.com/DerKoun/bsnes-hd/releases/latest {{Bsnes-hdVer}}]
<small>(forked bsnes)</small>
| {{Na}}
|[https://github.com/DerKoun/bsnes-hd/releases/latest {{Bsnes-hdVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 617: Line 599:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 631: Line 612:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 643: Line 623:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
|[[Snes9x]]
|[[Snes9x]]
| [https://github.com/snes9xgit/snes9x/releases/latest {{Snes9xVer}}]
|[https://github.com/snes9xgit/snes9x/releases/latest {{Snes9xVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 661: Line 640:
|}
|}


===N64===
=== Nintendo 64 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 691: Line 669:
| {{Ya}}  
| {{Ya}}  
|-
|-
| [[Mupen64Plus]]
|[[Mupen64Plus]]
| [https://openemu.org {{Mupen64PlusVer}}]
|[https://openemu.org {{Mupen64PlusVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 703: Line 680:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N">Only available as a core. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note">Only available as a core. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| [[Gopher64]]
|[[Gopher64]]
| [https://github.com/gopher64/gopher64/releases/latest {{Gopher64Ver}}]
|[https://github.com/gopher64/gopher64/releases/latest {{Gopher64Ver}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 719: Line 695:
| {{R}}  
| {{R}}  
|-
|-
| [[simple64]]
|[[simple64]]
| [https://github.com/thekovic/simple64/releases/tag/v2021.5.30 v2021.5.30]
|[https://github.com/thekovic/simple64/releases/tag/v2021.5.30 v2021.5.30]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 733: Line 708:
| {{Na}}  
| {{Na}}  
|-
|-
| [[Rokuyon]]
|[[Rokuyon]]
| [https://github.com/Hydr8gon/rokuyon/releases/tag/release Releases]
|[https://github.com/Hydr8gon/rokuyon/releases/tag/release Releases]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 748: Line 722:
|}
|}


===GameCube===
=== Nintendo GameCube ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Dolphin]]
|[[Dolphin]]
| [https://dolphin-emu.org/download/?ref=btn {{DolphinVer}}]<ref group="N" name=dolphin>The last Dolphin release to support macOS 10.15 Catalina is [https://dolphin-emu.org/download/release/2503a/ 2503a], and the last development build is [https://dolphin-emu.org/download/dev/afee9a56e96766d4622b1694398704e4c8d57b25/ 2503-270].[https://dolphin-emu.org/blog/2025/06/04/dolphin-progress-report-release-2506/#macos-minimum-version-bumped-to-macos-11-big-sur]</ref>
|[https://dolphin-emu.org/download/?ref=btn {{DolphinVer}}]<ref name="dolphin">The last Dolphin release to support macOS 10.15 Catalina is [https://dolphin-emu.org/download/release/2503a/ 2503a], and the last development build is [https://dolphin-emu.org/download/dev/afee9a56e96766d4622b1694398704e4c8d57b25/ 2503-270].[https://dolphin-emu.org/blog/2025/06/04/dolphin-progress-report-release-2506/#macos-minimum-version-bumped-to-macos-11-big-sur]</ref>||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 778: Line 751:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Lazuli]]
|[[Lazuli]]
| [https://github.com/vxpm/lazuli/releases/latest {{LazuliVer}}]
|[https://github.com/vxpm/lazuli/releases/latest {{LazuliVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 792: Line 764:
| {{Na}}
| {{Na}}
|-
|-
| [[Gecko]]
|[[Gecko]]
| [https://github.com/ioncodes/gecko/releases {{GeckoVer}}]
|[https://github.com/ioncodes/gecko/releases {{GeckoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 807: Line 778:
|}
|}


===Wii===
=== Wii ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Dolphin]]
|[[Dolphin]]
| [https://dolphin-emu.org/download {{DolphinVer}}]<ref group="N" name=dolphin>The last Dolphin release to support macOS 10.15 Catalina is [https://dolphin-emu.org/download/release/2503a/ 2503a], and the last development build is [https://dolphin-emu.org/download/dev/afee9a56e96766d4622b1694398704e4c8d57b25/ 2503-270].[https://dolphin-emu.org/blog/2025/06/04/dolphin-progress-report-release-2506/#macos-minimum-version-bumped-to-macos-11-big-sur]</ref>
|[https://dolphin-emu.org/download {{DolphinVer}}]<ref name="dolphin" />||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 837: Line 807:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Gecko]]
|[[Gecko]]
| [https://github.com/ioncodes/gecko/releases {{GeckoVer}}]
|[https://github.com/ioncodes/gecko/releases {{GeckoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 852: Line 821:
|}
|}


===Wii U===
=== Wii U ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Cemu]]
|[[Cemu]]
| [https://github.com/cemu-project/Cemu/releases/latest {{CemuVer}}]<br>[https://cemu.info/ActionBuilds.php Nightlies]
|[https://github.com/cemu-project/Cemu/releases/latest {{CemuVer}}]
[https://cemu.info/ActionBuilds.php Nightlies]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=cemu>Arm support and the Metal renderer are in the nightly builds, but are not included in a major release yet.</ref>
| {{~}}<ref group="note" name=cemu>Arm support and the Metal renderer are in the nightly builds, but are not included in a major release yet.</ref>
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=cemu>Arm support and the Metal renderer are in the nightly builds, but are not included in a major release yet.</ref>
| {{~}}<ref group="note" name=cemu>Arm support and the Metal renderer are in the nightly builds, but are not included in a major release yet.</ref>
| {{Ya}}
| {{Ya}}
| {{Green}} {{License|MPL2}} ({{License|Copyleft}})
| {{Green}} {{License|MPL2}} ({{License|Copyleft}})
Line 883: Line 853:
|}
|}


===Switch===
=== Nintendo Switch ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|KosmicKrisp
!KosmicKrisp
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| Ryubing<br>([[Ryujinx]] Fork)<ref group="N">This fork has merged LDN and other previously incomplete features. Mostly focused on maintenance, crash fixes and QoL improvements.</ref>
|Ryubing
| [https://git.ryujinx.app/projects/Ryubing/releases/latest {{RyubingVer}}]<br>[https://git.ryujinx.app/Ryubing/Canary/releases/latest Canary]<br>[https://git.ryujinx.app/ryubing/ryujinx git]
([[Ryujinx]] Fork)<ref>This fork has merged LDN and other previously incomplete features. Mostly focused on maintenance, crash fixes and QoL improvements.</ref>
| {{Na}}
|[https://git.ryujinx.app/projects/Ryubing/releases/latest {{RyubingVer}}]
[https://git.ryujinx.app/Ryubing/Canary/releases/latest Canary]
 
[https://git.ryujinx.app/ryubing/ryujinx git]
|{{Na}}
| {{Na}}
| {{Na}}
| {{~}}<ref group="N" name=ryujinx-x86>While the builds are currently universal, x86 is unsupported and will be removed in future releases</ref>
| {{~}}<ref group="note" name=ryujinx-x86>While the builds are currently universal, x86 is unsupported and will be removed in future releases</ref>
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 915: Line 889:
| {{Ya}}
| {{Ya}}
|-
|-
| Astris<br>(Ryubing with SwiftUI)<ref group="N">This fork is based on Ryubing, but has a complete SwiftUI overhaul</ref>
|Astris
| [https://github.com/V380-Ori/Astris.Binaries/releases/latest {{AstrisVer}}]
(Ryubing with SwiftUI)<ref>This fork is based on Ryubing, but has a complete SwiftUI overhaul</ref>
| {{Na}}
|[https://github.com/V380-Ori/Astris.Binaries/releases/latest {{AstrisVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 930: Line 904:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Kenji-NX]]<br>(KeatonTheBot's [[Ryujinx]] Fork)  
|[[Kenji-NX]]
| [https://git.ryujinx.app/projects/Kenji-NX/releases/latest {{KenjiNXVer}}]<br>[https://git.ryujinx.app/projects/Kenji-NX git]
(KeatonTheBot's [[Ryujinx]] Fork)
|[https://git.ryujinx.app/projects/Kenji-NX/releases/latest {{KenjiNXVer}}]
[https://git.ryujinx.app/projects/Kenji-NX git]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{~}}<ref group="N" name=ryujinx-x86>While the builds are currently universal, x86 is unsupported and will be removed in future releases</ref>
| {{~}}<ref group="note" name=ryujinx-x86>While the builds are currently universal, x86 is unsupported and will be removed in future releases</ref>
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 945: Line 921:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Hydra]]
|[[Hydra]]
| [https://github.com/SamoZ256/hydra/releases/latest {{HydraVer}}]
|[https://github.com/SamoZ256/hydra/releases/latest {{HydraVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 960: Line 935:
| {{Na}}
| {{Na}}
|-
|-
| [[Eden]]<br>(Yuzu fork)
|[[Eden]]
| [https://git.eden-emu.dev/eden-emu/eden/releases {{EdenVer}}]<br>[https://github.com/Eden-CI/Master/releases Nightlies]  
(Yuzu fork)
|[https://git.eden-emu.dev/eden-emu/eden/releases {{EdenVer}}]
[https://github.com/Eden-CI/Master/releases Nightlies]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 976: Line 953:
|}
|}


===Game Boy/Color===
=== Game Boy (Color) ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Game Link Support
!Game Link Support
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[SameBoy]]
|[[SameBoy]]
| [https://sameboy.github.io/downloads {{SameBoyVer}}]
|[https://sameboy.github.io/downloads {{SameBoyVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,008: Line 984:
| {{Ya}}
| {{Ya}}
|-
|-
| [[SkyEmu]]
|[[SkyEmu]]
| [https://github.com/skylersaleh/SkyEmu/releases/latest {{SkyEmuVer}}]
|[https://github.com/skylersaleh/SkyEmu/releases/latest {{SkyEmuVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,023: Line 998:
| {{Ya}}
| {{Ya}}
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,038: Line 1,012:
| {{Ya}}
| {{Ya}}
|-
|-
| [[mGBA]]
|[[mGBA]]
| [https://mgba.io/downloads.html {{MGBAVer}}]
|[https://mgba.io/downloads.html {{MGBAVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,053: Line 1,026:
| {{Ya}}
| {{Ya}}
|-
|-
| [[KiGB]]
|[[KiGB]]
| [https://www.bannister.org/software/kigb.htm 2.09]
|[https://www.bannister.org/software/kigb.htm 2.09]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,066: Line 1,038:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{~}}
| {{~}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| [[Gearboy]]
|[[Gearboy]]
| [https://github.com/drhelius/Gearboy/releases/latest {{GearboyVer}}]
|[https://github.com/drhelius/Gearboy/releases/latest {{GearboyVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,083: Line 1,054:
| {{R}}
| {{R}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,098: Line 1,068:
| {{Ya}}   
| {{Ya}}   
|-
|-
| [[VisualBoy Advance|VisualBoy Advance-M (VBA-M)]]
|[[VisualBoy Advance|VisualBoy Advance-M (VBA-M)]]
| [https://github.com/visualboyadvance-m/visualboyadvance-m/releases/latest {{VBAMVer}}]<br>[https://nightly.visualboyadvance-m.org Nightlies]
|[https://github.com/visualboyadvance-m/visualboyadvance-m/releases/latest {{VBAMVer}}]
[https://nightly.visualboyadvance-m.org Nightlies]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 1,113: Line 1,084:
| {{~}}
| {{~}}
|-
|-
| Swift-plays-Pokemon
|Swift-plays-Pokemon
| [https://github.com/LiarPrincess/Swift-plays-Pokemon/latest git]
|[https://github.com/LiarPrincess/Swift-plays-Pokemon/latest git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,126: Line 1,096:
| {{Green}} {{License|MPL2}} ({{License|Copyleft}})
| {{Green}} {{License|MPL2}} ({{License|Copyleft}})
| {{Na}}
| {{Na}}
| {{Na}}<ref group="N">No Audio. Must compile from source and run from command line.</ref>
| {{Na}}<ref group="note">No Audio. Must compile from source and run from command line.</ref>
|-
|-
| [[Gambatte]]
|[[Gambatte]]
| [https://sourceforge.net/projects/gambatte/files/gambatte {{GambatteVer}}]
|[https://sourceforge.net/projects/gambatte/files/gambatte {{GambatteVer}}]||{{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 1,144: Line 1,113:
|}
|}


===Game Boy Advance===
=== Game Boy Advance ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Game Link Support
!Game Link Support
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[SkyEmu]]
|[[SkyEmu]]
| [https://github.com/skylersaleh/SkyEmu/releases/latest {{SkyEmuVer}}]
|[https://github.com/skylersaleh/SkyEmu/releases/latest {{SkyEmuVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,176: Line 1,144:
| {{Ya}}
| {{Ya}}
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,191: Line 1,158:
| {{Ya}}
| {{Ya}}
|-
|-
| [[NanoBoyAdvance]]
|[[NanoBoyAdvance]]
| [https://github.com/nba-emu/NanoBoyAdvance/releases/latest {{NanoBoyAdvanceVer}}]
|[https://github.com/nba-emu/NanoBoyAdvance/releases/latest {{NanoBoyAdvanceVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,206: Line 1,172:
| {{Ya}}
| {{Ya}}
|-
|-
| Hades
|Hades
| [https://github.com/hades-emu/Hades/releases/latest {{HadesVer}}]
|[https://github.com/hades-emu/Hades/releases/latest {{HadesVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,221: Line 1,186:
| {{R}}
| {{R}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,236: Line 1,200:
| {{Ya}}   
| {{Ya}}   
|-
|-
| [[mGBA]]
|[[mGBA]]
| [https://mgba.io/downloads.html {{MGBAVer}}]
|[https://mgba.io/downloads.html {{MGBAVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,251: Line 1,214:
| {{Ya}}
| {{Ya}}
|-
|-
| Boycott Advance
|Boycott Advance
| [https://www.bannister.org/software/ba.htm 0.4.4]
|[https://www.bannister.org/software/ba.htm 0.4.4]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,264: Line 1,226:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{~}}
| {{~}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| [[Gearboy]]
|[[Gearboy]]
| [https://github.com/drhelius/Gearboy/releases/latest {{GearboyVer}}]
|[https://github.com/drhelius/Gearboy/releases/latest {{GearboyVer}}]||{{Na}}
| {{Na}}
| {{R}}
| {{R}}
| {{Ya}}
| {{Ya}}
Line 1,281: Line 1,242:
| {{R}}
| {{R}}
|-
|-
| [[VisualBoy Advance|VisualBoy Advance-M (VBA-M)]]
|[[VisualBoy Advance|VisualBoy Advance-M (VBA-M)]]
| [https://github.com/visualboyadvance-m/visualboyadvance-m/releases/latest {{VBAMVer}}]<br>[https://nightly.visualboyadvance-m.org Nightlies]
|[https://github.com/visualboyadvance-m/visualboyadvance-m/releases/latest {{VBAMVer}}]
[https://nightly.visualboyadvance-m.org Nightlies]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 1,297: Line 1,259:
|}
|}


===DS===
=== Nintendo DS ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[DeSmuME]]
|[[DeSmuME]]
|[https://github.com/TASEmulators/desmume/releases/latest {{DeSmuMEVer}}]
|[https://github.com/TASEmulators/desmume/releases/latest {{DeSmuMEVer}}]||{{Ya}}
|{{Ya}}
|{{Ya}}
|{{Ya}}
|{{Ya}}
|{{Ya}}
Line 1,328: Line 1,289:
|-
|-
|[[MelonDS]]
|[[MelonDS]]
|[https://github.com/melonDS-emu/melonDS/releases/latest {{MelonDSVer}}]
|[https://github.com/melonDS-emu/melonDS/releases/latest {{MelonDSVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,342: Line 1,302:
|-
|-
|[[NooDS]]
|[[NooDS]]
|[https://github.com/Hydr8gon/NooDS/releases/tag/release Releases]
|[https://github.com/Hydr8gon/NooDS/releases/tag/release Releases]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
Line 1,356: Line 1,315:
|-
|-
|[[Dust]]
|[[Dust]]
|[https://github.com/kelpsyberry/dust WIP]
|[https://github.com/kelpsyberry/dust WIP]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,369: Line 1,327:
|{{Na}}
|{{Na}}
|-
|-
|[[mGBA#medusa|Medusa]]
|[[MGBA#medusa|Medusa]]
|[https://github.com/johnny-mac/medusa-emu Beta]
|[https://github.com/johnny-mac/medusa-emu Beta]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,384: Line 1,341:
|}
|}


===3DS===
=== Nintendo 3DS ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| Azahar<ref group="N" name=azahar>This project is a continuation of PabloMK7's Citra and Lime3DS</ref>
|Azahar<ref name="azahar">This project is a continuation of PabloMK7's Citra and Lime3DS</ref>
|[https://github.com/azahar-emu/azahar/releases/latest {{AzaharVer}}]
|[https://github.com/azahar-emu/azahar/releases/latest {{AzaharVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,414: Line 1,370:
|{{Ya}}
|{{Ya}}
|-
|-
| Mandarine<ref group="N" name=mandarine>This project is a fork of Citra</ref>
|Mandarine<ref name="mandarine">This project is a fork of Citra</ref>
|[https://github.com/mandarine3ds/mandarine/releases/latest {{MandarineVer}}]
|[https://github.com/mandarine3ds/mandarine/releases/latest {{MandarineVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,429: Line 1,384:
|-
|-
|[[Panda3DS]]
|[[Panda3DS]]
|[https://github.com/wheremyfoodat/Panda3DS/releases/latest {{Panda3DSVer}}]
|[https://github.com/wheremyfoodat/Panda3DS/releases/latest {{Panda3DSVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,436: Line 1,390:
|{{Ya}}
|{{Ya}}
|{{Na}}
|{{Na}}
|{{~}}<ref group="N" name=panda-backend>Available on the SDL build only. Not available on the Qt build.</ref>
|{{~}}<ref group="note" name=panda-backend>Available on the SDL build only. Not available on the Qt build.</ref>
|{{Ya}}
|{{Ya}}
|{{Green}} {{License|GPLv3}} ({{License|Copyleft}})
|{{Green}} {{License|GPLv3}} ({{License|Copyleft}})
Line 1,443: Line 1,397:
|-
|-
|[[Tanuki3DS]]
|[[Tanuki3DS]]
|[https://github.com/burhanr13/Tanuki3DS/releases/latest {{Tanuki3DSVer}}]
|[https://github.com/burhanr13/Tanuki3DS/releases/latest {{Tanuki3DSVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,457: Line 1,410:
|-
|-
|Borked3DS
|Borked3DS
|[https://github.com/Borked3DS/Borked3DS/releases/latest git]
|[https://github.com/Borked3DS/Borked3DS/releases/latest git]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,468: Line 1,420:
|{{Green}} {{License|GPLv2}} ({{License|Copyleft}})
|{{Green}} {{License|GPLv2}} ({{License|Copyleft}})
|{{Ya}}  
|{{Ya}}  
|{{Na}}<ref group="N" name=borked>This is an experimental Citra fork. Changes made here might be merged into [https://github.com/azahar-emu/azahar Azahar]</ref>
|{{Na}}<ref group="note" name=borked>This is an experimental Citra fork. Changes made here might be merged into [https://github.com/azahar-emu/azahar Azahar]</ref>
|-
|-
| [[3Beans]]
|[[3Beans]]
|[https://github.com/Hydr8gon/3Beans/releases/latest git]
|[https://github.com/Hydr8gon/3Beans/releases/latest git]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
Line 1,485: Line 1,436:
|}
|}


==Sega==
== Sega ==
===SG-1000===
 
{| class="wikitable" style="text-align:center;"
=== SG-1000 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,516: Line 1,467:
| {{Ya}}
| {{Ya}}
|-
|-
| [[RetroVM]]
|[[RetroVM]]
| [https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]
|[https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,530: Line 1,480:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Gearsystem]]
|[[Gearsystem]]
| [https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]
|[https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,544: Line 1,493:
| {{Na}}
| {{Na}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
| [https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,559: Line 1,507:
|}
|}


===Master System===
=== Master System ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,589: Line 1,536:
| {{Ya}}
| {{Ya}}
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,603: Line 1,549:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,617: Line 1,562:
| {{Ya}}
| {{Ya}}
|-
|-
| [[RetroVM]]
|[[RetroVM]]
| [https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]
|[https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,631: Line 1,575:
| {{~}}
| {{~}}
|-
|-
| [[Gearsystem]]
|[[Gearsystem]]
| [https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]
|[https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,645: Line 1,588:
| {{Na}}
| {{Na}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
| [https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,660: Line 1,602:
|}
|}


===Mega Drive/Genesis===
=== Mega Drive/Genesis ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,690: Line 1,631:
| {{Ya}}
| {{Ya}}
|-
|-
| Generator
|Generator
| [https://www.bannister.org/software/generator.htm 0.4.8]
|[https://www.bannister.org/software/generator.htm 0.4.8]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,702: Line 1,642:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| Genesis Plus
|Genesis Plus
| [https://www.bannister.org/software/gplus.htm 1.3.5]
|[https://www.bannister.org/software/gplus.htm 1.3.5]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,716: Line 1,655:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===Mega CD===
=== Sega CD ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,750: Line 1,688:
|}
|}


===32X===
=== 32X ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,781: Line 1,718:
|}
|}


===Saturn===
=== Sega Saturn ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[Ymir]]
|[[Ymir]]
|[https://github.com/StrikerX3/Ymir/releases/latest {{YmirVer}}]
|[https://github.com/StrikerX3/Ymir/releases/latest {{YmirVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,812: Line 1,748:
|-
|-
|[[Mednafen]]
|[[Mednafen]]
|[{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,823: Line 1,758:
|{{Green}} {{License|GPLv2}} ({{License|Copyleft}})  
|{{Green}} {{License|GPLv2}} ({{License|Copyleft}})  
|{{Ya}}
|{{Ya}}
|{{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|{{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
|[[Yabause]]
|[[Yabause]]
|[https://download.tuxfamily.org/yabause/releases/travis-ci/yabause-latest-mac.zip {{YabauseVer}}]
|[https://download.tuxfamily.org/yabause/releases/travis-ci/yabause-latest-mac.zip {{YabauseVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,840: Line 1,774:
|}
|}


===Dreamcast===
=== Dreamcast ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[Flycast]]
|[[Flycast]]
|[https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]
|[https://github.com/flyinghead/flycast/releases/latest {{FlycastVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,871: Line 1,804:
|-
|-
|[[Redream]]
|[[Redream]]
|[https://redream.io/download {{RedreamVer}}]
|[https://redream.io/download {{RedreamVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 1,882: Line 1,814:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Na}}
|{{Na}}
|{{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
|[[nullDC]]
|[[nullDC]]
|[https://nulldc.emudev.org/builds/ {{nullDCVer}}]<br>[https://github.com/emudev-org/nullDC git]
|[https://nulldc.emudev.org/builds/ {{nullDCVer}}]
[https://github.com/emudev-org/nullDC git]
|{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
Line 1,896: Line 1,829:
|{{Green}} {{License|MIT}} ({{License|Permissive}})
|{{Green}} {{License|MIT}} ({{License|Permissive}})
|{{Ya}}
|{{Ya}}
|{{Na}}<ref group="N" name=command-line>Command-line only application. No app bundle provided.</ref>
|{{Na}}<ref group="note" name=command-line>Command-line only application. No app bundle provided.</ref>
|}
|}


===VMU===
=== VMU ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[DreamPotato]]
|[[DreamPotato]]
| [https://github.com/RikkiGibson/DreamPotato/releases/latest {{DreamPotatoVer}}]
|[https://github.com/RikkiGibson/DreamPotato/releases/latest {{DreamPotatoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 1,930: Line 1,862:
|}
|}


===Game Gear===
=== Game Gear ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,960: Line 1,891:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,974: Line 1,904:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Gearsystem]]
|[[Gearsystem]]
| [https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]
|[https://github.com/drhelius/Gearsystem/releases/latest {{GearsystemVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 1,989: Line 1,918:
|}
|}


==Sony==
== Sony ==
===PlayStation===
 
{| class="wikitable" style="text-align: center;"
=== PlayStation ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[DuckStation]]
|[[DuckStation]]
| [https://github.com/stenzek/duckstation/releases/tag/latest {{DuckStationVer}}]<br>[https://github.com/stenzek/duckstation/releases/tag/preview Preview]
|[https://github.com/stenzek/duckstation/releases/tag/latest {{DuckStationVer}}]
[https://github.com/stenzek/duckstation/releases/tag/preview Preview]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,020: Line 1,951:
| {{Ya}}
| {{Ya}}
|-
|-
| [[ares]]
|[[ares]]
| [https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,034: Line 1,964:
| {{~}}
| {{~}}
|-
|-
| [[PCSX-Reloaded|PCSX-R]]
|[[PCSX-Reloaded|PCSX-R]]
| [https://github.com/pcsxr/PCSX-Reloaded git]<br>[https://macintoshgarden.org/apps/pcsx-playstation-emulator PPC 1.6.0]<br>[https://macintoshgarden.org/apps/pcsxr-playstation-emulator Intel 1.9.93]
|[https://github.com/pcsxr/PCSX-Reloaded git]
| {{Ya}}
[https://macintoshgarden.org/apps/pcsx-playstation-emulator PPC 1.6.0]
 
[https://macintoshgarden.org/apps/pcsxr-playstation-emulator Intel 1.9.93]
|{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
Line 2,048: Line 1,981:
| {{Ya}}
| {{Ya}}
|-
|-
| [[PCSX-Redux]]
|[[PCSX-Redux]]
| [https://github.com/grumpycoders/pcsx-redux {{PCSX-ReduxVer}}]
|[https://github.com/grumpycoders/pcsx-redux {{PCSX-ReduxVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,062: Line 1,994:
| {{~}}  
| {{~}}  
|-
|-
| [[StarPSX]]
|[[StarPSX]]
| [https://github.com/kaezrr/starpsx/releases/latest {{StarPSXVer}}]
|[https://github.com/kaezrr/starpsx/releases/latest {{StarPSXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,076: Line 2,007:
| {{Na}}  
| {{Na}}  
|-
|-
| [[psxe]]
|[[psxe]]
| [https://github.com/allkern/psxe/releases/latest {{psxeVer}}]
|[https://github.com/allkern/psxe/releases/latest {{psxeVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,090: Line 2,020:
| {{Na}}  
| {{Na}}  
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,102: Line 2,031:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===PlayStation 2===
=== PlayStation 2 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[PCSX2]]
|[[PCSX2]]
| [https://pcsx2.net/downloads {{PCSX2Ver}}]
|[https://pcsx2.net/downloads {{PCSX2Ver}}]||{{Na}}
| {{Na}}
| {{~}}<ref group="note">Unofficial 32-bit builds and builds for older versions of macOS are available [https://macintoshgarden.org/apps/pcsx2-32-bit here]. Compatible with macOS 10.9 Mavericks to 10.14 Mojave.</ref>
| {{~}}<ref group="N">Unofficial 32-bit builds and builds for older versions of macOS are available [https://macintoshgarden.org/apps/pcsx2-32-bit here]. Compatible with macOS 10.9 Mavericks to 10.14 Mojave.</ref>
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 2,135: Line 2,063:
| {{Ya}}
| {{Ya}}
|-
|-
| [[AetherSX2]]
|[[AetherSX2]]
| [https://archive.org/details/aether-sx-2-v-1.5-3939-mac 1.5-3939]
|[https://archive.org/details/aether-sx-2-v-1.5-3939-mac 1.5-3939]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,145: Line 2,072:
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Red}} {{License|Proprietary}}<ref group="N">Based on PCSX2, so it is partially {{License|Open}}. The ARM parts are {{License|Proprietary}}.</ref>
| {{Red}} {{License|Proprietary}}<ref group="note">Based on PCSX2, so it is partially {{License|Open}}. The ARM parts are {{License|Proprietary}}.</ref>
| {{Na}}
| {{Na}}
| {{Ya}}<ref group="N">Recommended on Apple Silicon except for where there are game-specific bugs that are fixed in PCSX2.</ref>
| {{Ya}}<ref group="note">Recommended on Apple Silicon except for where there are game-specific bugs that are fixed in PCSX2.</ref>
|-
|-
| [https://armsx2.net ARMSX2]
|[https://armsx2.net ARMSX2]
| [https://github.com/ARMSX2/ARMSX2/releases?q=%22ARMSX2+macOS%22&expanded=true {{ARMSX2MacVer}}]
|[https://github.com/ARMSX2/ARMSX2/releases?q=%22ARMSX2+macOS%22&expanded=true {{ARMSX2MacVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,163: Line 2,089:
| {{~}}
| {{~}}
|-
|-
| [[Play!]]
|[[Play!]]
| [http://purei.org/downloads.php {{Play!Ver}}]
|[http://purei.org/downloads.php {{Play!Ver}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,177: Line 2,102:
| {{Na}}
| {{Na}}
|-
|-
| [[Iris]]
|[[Iris]]
| [https://github.com/allkern/iris/releases/latest {{IrisVer}}]
|[https://github.com/allkern/iris/releases/latest {{IrisVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,192: Line 2,116:
|}
|}


===PlayStation 3===
=== PlayStation 3 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|KosmicKrisp
!KosmicKrisp
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[RPCS3]]
|[[RPCS3]]
| [https://rpcs3.net/download {{RPCS3Ver}}]
|[https://rpcs3.net/download {{RPCS3Ver}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,217: Line 2,140:
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}} <ref group="N" name=rpcs3-KK>There is an experimental KosmicKrisp PR [https://github.com/RPCS3/rpcs3/pull/17902 here]</ref>
| {{~}} <ref group="note" name=rpcs3-KK>There is an experimental KosmicKrisp PR [https://github.com/RPCS3/rpcs3/pull/17902 here]</ref>
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Ya}}<ref group="N" name=rpcs3-compat>Always download the compatibility database and use it to create a custom config for each game</ref>
| {{Ya}}<ref group="note" name=rpcs3-compat>Always download the compatibility database and use it to create a custom config for each game</ref>
|-
|-
| [https://chonkystation.com ChonkyStation3]
|[https://chonkystation.com ChonkyStation3]
| [https://github.com/liuk7071/ChonkyStation3 git]
|[https://github.com/liuk7071/ChonkyStation3 git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,240: Line 2,162:
|}
|}


===PlayStation 4===
=== PlayStation 4 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|KosmicKrisp
!KosmicKrisp
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[shadPS4]]
|[[shadPS4]]
| [https://github.com/shadps4-emu/shadPS4/releases/latest {{shadPS4Ver}}]
|[https://github.com/shadps4-emu/shadPS4/releases/latest {{shadPS4Ver}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}<ref group="note" name=arm-only>Only Arm Macs running Rosetta are supported</ref>
| {{Ya}}<ref group="N" name=arm-only>Only Arm Macs running Rosetta are supported</ref>
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,270: Line 2,191:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N">Very early in development. Currently has [https://shadps4.net/compatibility low compatibility].</ref>
| {{~}}<ref group="note">Very early in development. Currently has [https://shadps4.net/compatibility low compatibility].</ref>
|-
|-
| [[Obliteration]]
|[[Obliteration]]
| [https://github.com/obhq/obliteration github]
|[https://github.com/obhq/obliteration github]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}} <ref group="N">There is an Arm build available but there is no x86->Arm recompiler yet</ref>
| {{~}} <ref group="note">There is an Arm build available but there is no x86->Arm recompiler yet</ref>
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,285: Line 2,205:
| {{Green}} {{License|LGPLv21}} ({{License|Copyleft}})
| {{Green}} {{License|LGPLv21}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Na}}<ref group="N">Very early in development. There is currently no graphics backend.</ref>
| {{Na}}<ref group="note">Very early in development. There is currently no graphics backend.</ref>
|}
|}


===PlayStation 5===
=== PlayStation 5 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|KosmicKrisp
!KosmicKrisp
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| SharpEmu
|SharpEmu
| [https://github.com/par274/sharpemu unreleased]
|[https://github.com/par274/sharpemu unreleased]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}} <ref group="note" name=arm-only>Only Arm Macs running Rosetta are supported</ref>
| {{Ya}} <ref group="N" name=arm-only>Only Arm Macs running Rosetta are supported</ref>
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,318: Line 2,237:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Na}}<ref group="N">Very early in development</ref>
| {{Na}}<ref group="note">Very early in development</ref>
|}
|}


===PlayStation Portable===
=== PlayStation Portable ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[PPSSPP]]
|[[PPSSPP]]
| [https://www.ppsspp.org/download {{PPSSPPVer}}]
|[https://www.ppsspp.org/download {{PPSSPPVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,352: Line 2,270:
|}
|}


===PlayStation Vita===
=== PlayStation Vita ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Vita3K]]
|[[Vita3K]]
| [https://github.com/Vita3K/Vita3K/releases/latest {{Vita3KVer}}]
|[https://github.com/Vita3K/Vita3K/releases/latest {{Vita3KVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=vita3k>Experimental Arm build available. Has major issues on some titles. Updater will automatically update to the x86 version</ref>
| {{~}}<ref group="note" name=vita3k>Experimental Arm build available. Has major issues on some titles. Updater will automatically update to the x86 version</ref>
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,380: Line 2,297:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Ya}}<ref group="N" name=compat>Compatibility varies greatly depending on the title</ref>
| {{Ya}}<ref group="note" name=compat>Compatibility varies greatly depending on the title</ref>
|}
|}


==Microsoft==
== Microsoft ==


===MS-DOS===
=== MS-DOS ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [http://boxerapp.com Boxer]
|[http://boxerapp.com Boxer]
| [https://github.com/MaddTheSane/Boxer/releases/latest Fork]<ref group="N" name=boxer>The fork of Boxer supports x64 and Arm</ref>
|[https://github.com/MaddTheSane/Boxer/releases/latest Fork]<ref name="boxer">The fork of Boxer supports x64 and Arm</ref>||{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
|{{Ya}}  
|{{Ya}}  
Line 2,414: Line 2,330:
|-
|-
|[[86Box]]
|[[86Box]]
|[https://github.com/86Box/86Box {{86BoxVer}}]
|[https://github.com/86Box/86Box {{86BoxVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 2,427: Line 2,342:
|-
|-
|[[DOSBox#Forks|DOSBox Staging]]
|[[DOSBox#Forks|DOSBox Staging]]
|[https://github.com/dosbox-staging/dosbox-staging/releases/latest {{DOSBox StagingVer}}]
|[https://github.com/dosbox-staging/dosbox-staging/releases/latest {{DOSBox StagingVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 2,440: Line 2,354:
|-
|-
|[[DOSBox#Forks|DOSBox-X]]
|[[DOSBox#Forks|DOSBox-X]]
|[https://github.com/joncampbell123/dosbox-x/releases/latest {{DOSBox-XVer}}]
|[https://github.com/joncampbell123/dosbox-x/releases/latest {{DOSBox-XVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 2,453: Line 2,366:
|-
|-
|[[DOSBox]]
|[[DOSBox]]
|[http://www.dosbox.com/download.php?main=1 0.74-3]<br>[http://www.dosbox.com/wiki/SVN_Builds#List_of_SVN_Builds SVN]
|[http://www.dosbox.com/download.php?main=1 0.74-3]
[http://www.dosbox.com/wiki/SVN_Builds#List_of_SVN_Builds SVN]
|{{Ya}}
|{{Ya}}
|{{Ya}}
|{{Ya}}
Line 2,466: Line 2,380:
|-
|-
|Dapplegrey
|Dapplegrey
|[http://www.classics-for-x.info/csx/dapplegrey/index.htm {{DapplegreyVer}}]
|[http://www.classics-for-x.info/csx/dapplegrey/index.htm {{DapplegreyVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 2,479: Line 2,392:
|-
|-
|[[PCem]]
|[[PCem]]
|[https://github.com/PCemOnMac/PCemV17macOS/releases git]
|[https://github.com/PCemOnMac/PCemV17macOS/releases git]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 2,492: Line 2,404:
|-
|-
|[[MartyPC]]
|[[MartyPC]]
|[https://github.com/dbalsom/martypc/releases/latest {{MartyPCVer}}]
|[https://github.com/dbalsom/martypc/releases/latest {{MartyPCVer}}]||{{Na}}  
| {{Na}}  
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,505: Line 2,416:
|}
|}


===MSX/MSX2===
=== MSX(2) ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,534: Line 2,444:
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
|-  
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,549: Line 2,458:
| {{Ya}}
| {{Ya}}
|-
|-
| CocoaMSX
|CocoaMSX
| [https://github.com/CocoaMSX/CocoaMSX/releases git]
|[https://github.com/CocoaMSX/CocoaMSX/releases git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=compile-arm>No official Arm build. Needs to be built from source</ref>   
| {{~}}<ref group="note" name=compile-arm>No official Arm build. Needs to be built from source</ref>   
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,563: Line 2,471:
| {{~}}
| {{~}}
|-
|-
| [[fMSX]]
|[[fMSX]]
| [https://www.bannister.org/software/fmsx.htm 6.0]
|[https://www.bannister.org/software/fmsx.htm 6.0]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,575: Line 2,482:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| [[RetroVM]]
|[[RetroVM]]
| [https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]
|[https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,591: Line 2,497:
| {{Ya}}
| {{Ya}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
| [https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,606: Line 2,511:
|}
|}


===Xbox===
=== Xbox ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Xemu]]
|[[Xemu]]
| [https://github.com/xemu-project/xemu/releases/latest {{XemuVer}}]
|[https://github.com/xemu-project/xemu/releases/latest {{XemuVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,636: Line 2,540:
| {{Ya}}
| {{Ya}}
|-
|-
| DukeX
|DukeX
| [https://github.com/MaftyManicEMU/DukeX/releases/latest 1.0.2]
|[https://github.com/MaftyManicEMU/DukeX/releases/latest 1.0.2]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,648: Line 2,551:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{Na}} <ref group="N" name=dukex>Fork of Xemu. Early in development and does not work properly at time of writing</ref>
| {{Na}} <ref group="note" name=dukex>Fork of Xemu. Early in development and does not work properly at time of writing</ref>
|}
|}


===Xbox 360===
=== Xbox 360 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [https://github.com/has207/xenia-edge Xenia-Edge]<br>(Xenia Dev Branch)
|[https://github.com/has207/xenia-edge Xenia-Edge]
| [https://github.com/has207/xenia-edge/releases/latest Rolling Releases]
(Xenia Dev Branch)
| {{Na}}
|[https://github.com/has207/xenia-edge/releases/latest Rolling Releases]||{{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,681: Line 2,584:
| {{~}}
| {{~}}
|-
|-
| [https://xenios.jp XeniOS]
|[https://xenios.jp XeniOS]
| [https://github.com/xenios-jp/XeniOS/releases/latest {{XeniOSVer}}]
|[https://github.com/xenios-jp/XeniOS/releases/latest {{XeniOSVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,696: Line 2,598:
|}
|}


==Commodore==
== Commodore ==
===Vic-20===
 
{| class="wikitable" style="text-align:center;"
=== VIC-20 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,727: Line 2,629:
| {{Ya}}
| {{Ya}}
|-
|-
| Power20
|Power20
| [https://www.infinite-loop.at/Power20/Download.html 4.9.5]
|[https://www.infinite-loop.at/Power20/Download.html 4.9.5]||{{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,739: Line 2,640:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Na}}
| {{Na}}
| {{~}}<ref group="N" name=shareware>Shareware. Requires license to unlock full version.</ref>
| {{~}}<ref group="note" name=shareware>Shareware. Requires license to unlock full version.</ref>
|}
|}


===C64===
=== Commodore 64 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| VirtualC64
|VirtualC64
| [https://github.com/dirkwhoffmann/virtualc64/releases/latest {{VirtualC64Ver}}]
|[https://github.com/dirkwhoffmann/virtualc64/releases/latest {{VirtualC64Ver}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,772: Line 2,672:
| {{Ya}}
| {{Ya}}
|-
|-
| Denise
|Denise
| [https://sourceforge.net/projects/deniseemu/ {{DeniseVer}}]
|[https://sourceforge.net/projects/deniseemu/ {{DeniseVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,786: Line 2,685:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Frodo]]
|[[Frodo]]
| [https://www.bannister.org/software/frodo.htm 4.4.4]
|[https://www.bannister.org/software/frodo.htm 4.4.4]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,798: Line 2,696:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| [[VICE]]
|[[VICE]]
| [https://vice-emu.sourceforge.io/index.html#download {{VICEVer}}]
|[https://vice-emu.sourceforge.io/index.html#download {{VICEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,814: Line 2,711:
| {{Na}}
| {{Na}}
|-
|-
| Power64
|Power64
| [https://www.infinite-loop.at/Power64/Download.html 4.9.5]
|[https://www.infinite-loop.at/Power64/Download.html 4.9.5]||{{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 2,826: Line 2,722:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Na}}
| {{Na}}
| {{~}}<ref group="N" name=shareware>Shareware. Requires license to unlock full version.</ref>
| {{~}}<ref group="note" name=shareware>Shareware. Requires license to unlock full version.</ref>
|}
|}


===Amiga===
=== Amiga ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| vAmiga
|vAmiga
| [https://github.com/dirkwhoffmann/vAmiga/releases/latest {{vAmigaVer}}]
|[https://github.com/dirkwhoffmann/vAmiga/releases/latest {{vAmigaVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,859: Line 2,754:
| {{Ya}}
| {{Ya}}
|-
|-
| [[FS-UAE]]
|[[FS-UAE]]
| [https://fs-uae.net/download#macosx {{FS-UAEVer}}]
|[https://fs-uae.net/download#macosx {{FS-UAEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,873: Line 2,767:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Denise]]
|[[Denise]]
| [https://sourceforge.net/projects/deniseemu/ {{DeniseVer}}]
|[https://sourceforge.net/projects/deniseemu/ {{DeniseVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,887: Line 2,780:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Amiberry]]
|[[Amiberry]]
| [https://github.com/BlitterStudio/amiberry/releases/latest {{AmiberryVer}}]
|[https://github.com/BlitterStudio/amiberry/releases/latest {{AmiberryVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,901: Line 2,793:
| {{~}}
| {{~}}
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,916: Line 2,807:
|}
|}


==Atari==
== Atari ==
===Atari 8-bit family===
 
{| class="wikitable" style="text-align:center;"
=== Atari 8-bit ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| Rainbow
|Rainbow
| [https://www.bannister.org/software/rainbow.htm 1.6.1]
|[https://www.bannister.org/software/rainbow.htm 1.6.1]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,945: Line 2,836:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===Atari 2600===
=== Atari 2600 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,978: Line 2,868:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Stella]]
|[[Stella]]
| [https://github.com/stella-emu/stella {{StellaVer}}]
|[https://github.com/stella-emu/stella {{StellaVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 2,993: Line 2,882:
|}
|}


===Atari 5200===
=== Atari 5200 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| Jum52
|Jum52
| [https://www.bannister.org/software/jum52.htm 1.1.4]
|[https://www.bannister.org/software/jum52.htm 1.1.4]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,021: Line 2,909:
| {{Red}} {{License|Custom}} ({{License|SA}})
| {{Red}} {{License|Custom}} ({{License|SA}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===Atari ST===
=== Atari ST ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Hatari]]
|[[Hatari]]
| [https://framagit.org/hatari/hatari/-/releases {{HatariVer}}]
|[https://framagit.org/hatari/hatari/-/releases {{HatariVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,054: Line 2,941:
| {{Ya}}
| {{Ya}}
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,069: Line 2,955:
|}
|}


===Atari Lynx===
=== Atari Lynx ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,097: Line 2,982:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| [[Handy]]
|[[Handy]]
| [https://www.bannister.org/software/handy.htm 0.9.11]
|[https://www.bannister.org/software/handy.htm 0.9.11]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,111: Line 2,995:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


==SNK==
== SNK ==
===Neo Geo AES/CD===
 
{| class="wikitable" style="text-align:center;"
=== Neo Geo CD ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,145: Line 3,029:
| {{Ya}}  
| {{Ya}}  
|-
|-
| [[FinalBurn Neo]]
|[[FinalBurn Neo]]
| [https://github.com/finalburnneo/FBNeo/releases/tag/v1.0.0.2 {{FinalBurnNeoVer}}]
|[https://github.com/finalburnneo/FBNeo/releases/tag/v1.0.0.2 {{FinalBurnNeoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,159: Line 3,042:
| {{~}}  
| {{~}}  
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,171: Line 3,053:
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Green}} {{License|GPLv2}}<br>{{License|BSD3}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|}
|}


===Neo Geo Pocket/Color===
=== Neo Geo Pocket (Color) ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,204: Line 3,085:
| {{Ya}}  
| {{Ya}}  
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,216: Line 3,096:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| Neopocott
|Neopocott
| [https://www.bannister.org/software/neopocott.htm 0.5.5]
|[https://www.bannister.org/software/neopocott.htm 0.5.5]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,230: Line 3,109:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


==Coleco==
== Coleco ==
===ColecoVision===
 
{| class="wikitable" style="text-align:center;"
=== ColecoVision ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,263: Line 3,142:
| {{Ya}}
| {{Ya}}
| {{Ya}}  
| {{Ya}}  
|-  
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,278: Line 3,156:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,292: Line 3,169:
| {{Ya}}
| {{Ya}}
|-
|-
| Mugrat
|Mugrat
| [https://www.bannister.org/software/mugrat.htm 0.5.0]
|[https://www.bannister.org/software/mugrat.htm 0.5.0]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,304: Line 3,180:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
| [[Gearcoleco]]
|[[Gearcoleco]]
| [https://github.com/drhelius/Gearcoleco/releases/latest {{GearcolecoVer}}]
|[https://github.com/drhelius/Gearcoleco/releases/latest {{GearcolecoVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,320: Line 3,195:
| {{Na}}
| {{Na}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
| [https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,335: Line 3,209:
|}
|}


==Bandai==
== Bandai ==
===WonderSwan/Color===
 
{| class="wikitable" style="text-align:center;"
=== WonderSwan (Color) ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,366: Line 3,240:
| {{Ya}}  
| {{Ya}}  
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]
|[https://github.com/nesdev-org/MesenCE/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,380: Line 3,253:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,392: Line 3,264:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| Oswan
|Oswan
| [https://www.bannister.org/software/oswan.htm 0.8.6]
|[https://www.bannister.org/software/oswan.htm 0.8.6]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,406: Line 3,277:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


==Apple==
== Apple ==
===Apple I + II + III===
 
{| class="wikitable" style="text-align:center;"
=== Apple I/II/III ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,438: Line 3,309:
| {{Ya}}
| {{Ya}}
|-
|-
| OpenEmulator
|OpenEmulator
| [http://openemulator.github.io/ 1.1.1]
|[http://openemulator.github.io/ 1.1.1]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,451: Line 3,321:
| {{Ya}}
| {{Ya}}
|-
|-
| [[KEGS]]
|[[KEGS]]
| [https://kegs.sourceforge.net {{KEGSVer}}]
|[https://kegs.sourceforge.net {{KEGSVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,464: Line 3,333:
| {{R}}
| {{R}}
|-
|-
| [[Sara]]
|[[Sara]]
| [http://www.blackcatsystems.com/software/sara.html 0.5.1]
|[http://www.blackcatsystems.com/software/sara.html 0.5.1]||{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 3,477: Line 3,345:
| {{R}}
| {{R}}
|-
|-
| [[GSplus]]
|[[GSplus]]
| [https://apple2.gs/plus 0.14]
|[https://apple2.gs/plus 0.14]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,490: Line 3,357:
| {{R}}
| {{R}}
|-
|-
| [https://david-schmidt.github.io/gsport GSport]
|[https://david-schmidt.github.io/gsport GSport]
| [https://github.com/david-schmidt/gsport/releases 0.31]
|[https://github.com/david-schmidt/gsport/releases 0.31]||{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
Line 3,503: Line 3,369:
| {{R}}
| {{R}}
|-
|-
| [[MAME]]
|[[MAME]]
| [https://sdlmame.lngn.net {{MAMEVer}}]
|[https://sdlmame.lngn.net {{MAMEVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,517: Line 3,382:
|}
|}


===Apple Lisa===
=== Apple Lisa ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[LisaEm]]
|[[LisaEm]]
| [https://lisa.sunder.net/downloads.html 1.2.7]
|[https://lisa.sunder.net/downloads.html 1.2.7]||{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
Line 3,546: Line 3,410:
|}
|}


===Macintosh 68k===
=== Classic Mac OS (68k) ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[CLK]]
|[[CLK]]
| [https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,574: Line 3,437:
| {{Ya}}
| {{Ya}}
|-
|-
| Snow
|Snow
| [https://github.com/twvd/snow 0.1.0]
|[https://github.com/twvd/snow 0.1.0]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,587: Line 3,449:
| {{R}}
| {{R}}
|-
|-
| [[Basilisk II]]
|[[Basilisk II]]
| [https://www.emaculation.com/forum/viewtopic.php?f=6&t=7361 Download]<br>[https://github.com/kanjitalk755/macemu/ git]
|[https://www.emaculation.com/forum/viewtopic.php?f=6&t=7361 Download]
[https://github.com/kanjitalk755/macemu/ git]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 3,600: Line 3,463:
| {{R}}
| {{R}}
|-
|-
| Mini vMac
|Mini vMac
| [https://www.gryphel.com/c/minivmac/dnld_std.html 36.04]
|[https://www.gryphel.com/c/minivmac/dnld_std.html 36.04]||{{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
Line 3,614: Line 3,476:
|}
|}


===Macintosh PPC===
=== Classic Mac OS (PowerPC) ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| [[UTM]]
|[[UTM]]
| [https://mac.getutm.app site]<br>[https://github.com/utmapp/UTM/releases {{UTMVer}}]
|[https://mac.getutm.app site]
[https://github.com/utmapp/UTM/releases {{UTMVer}}]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 3,642: Line 3,505:
| {{Ya}}
| {{Ya}}
|-
|-
| [[SheepShaver]]
|[[SheepShaver]]
|[https://www.emaculation.com/forum/viewtopic.php?t=7360 {{SheepShaverVer}}]<br>[https://github.com/kanjitalk755/macemu/ git]
|[https://www.emaculation.com/forum/viewtopic.php?t=7360 {{SheepShaverVer}}]
[https://github.com/kanjitalk755/macemu/ git]
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 3,656: Line 3,520:
|}
|}


==NEC==
== NEC ==
===PC-98===
 
{| class="wikitable" style="text-align:center;"
=== PC-98 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[SL9821]]
|[[SL9821]]
| [http://www.satotomi.com/sl9821/sl9821_dl.html Website]
|[http://www.satotomi.com/sl9821/sl9821_dl.html Website]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,686: Line 3,550:
|-
|-
|[[Neko Project II]] (猫Project II)
|[[Neko Project II]] (猫Project II)
| [https://www.yui.ne.jp/np2/ Website]
|[https://www.yui.ne.jp/np2/ Website]||{{Ya}}
| {{Ya}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,699: Line 3,562:
|}
|}


===PC-Engine/TurboGrafx/SuperGrafx===
=== PC Engine/TurboGrafx/SuperGrafx ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|Gamepad Support
!Gamepad Support
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,729: Line 3,591:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Mednafen]]
|[[Mednafen]]
| [{{MednafenURL|releases/}} {{MednafenVer}}]
|[{{MednafenURL|releases/}} {{MednafenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,741: Line 3,602:
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Green}} {{License|GPLv2}} ({{License|Copyleft}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
| {{~}}<ref group="note" name=openemu>Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available [https://github.com/nickybmon/OpenEmu-Silicon/releases/latest here]</ref>
|-
|-
| [[Mesen]]
|[[Mesen]]
| [https://github.com/SourMesen/Mesen2/releases/latest {{MesenVer}}]
|[https://github.com/SourMesen/Mesen2/releases/latest {{MesenVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,757: Line 3,617:
| {{Ya}}
| {{Ya}}
|-
|-
| [[Geargrafx]]
|[[Geargrafx]]
| [https://github.com/drhelius/Geargrafx/releases/latest {{GeargrafxVer}}]
|[https://github.com/drhelius/Geargrafx/releases/latest {{GeargrafxVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,771: Line 3,630:
| {{R}}
| {{R}}
|-
|-
| [[TGEmu]]
|[[TGEmu]]
| [https://www.bannister.org/software/tgemu.htm 0.3.8]
|[https://www.bannister.org/software/tgemu.htm 0.3.8]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,783: Line 3,641:
| {{Red}} {{License|Proprietary}}
| {{Red}} {{License|Proprietary}}
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
| {{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


==Fujitsu==
== Fujitsu ==
===FM Towns===
 
{| class="wikitable" style="text-align:center;"
=== FM Towns ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|Gamepad Support
!Metal
! scope="col"|[[Licensing|License]]
!Gamepad Support
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|Tsugaru (津軽)
|Tsugaru (津軽)
| [https://github.com/captainys/TOWNSEMU/releases/latest {{TsugaruVer}}]
|[https://github.com/captainys/TOWNSEMU/releases/latest {{TsugaruVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 3,818: Line 3,676:
|}
|}


==Sinclair==
== Sinclair ==
===ZX Spectrum===
 
{| class="wikitable" style="text-align:center;"
=== ZX Spectrum ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[ares]]
|[[ares]]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{aresVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,846: Line 3,704:
| {{Ya}}
| {{Ya}}
| {{Ya}}
| {{Ya}}
|-  
|-
|[[CLK]]
|[[CLK]]
|[https://github.com/TomHarte/CLK/releases {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases {{ClkVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 3,860: Line 3,717:
|{{Ya}}
|{{Ya}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
| [https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,873: Line 3,729:
| {{R}}
| {{R}}
|-
|-
| Spectral
|Spectral
|[https://github.com/r-lyeh/Spectral {{SpectralVer}}]
|[https://github.com/r-lyeh/Spectral {{SpectralVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 3,887: Line 3,742:
|-
|-
|[[RetroVM]]
|[[RetroVM]]
|[https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]
|[https://retrovirtualmachine.org {{Retro_Virtual_MachineVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 3,900: Line 3,754:
|-
|-
|Fuzzbug
|Fuzzbug
|[https://www.bannister.org/software/fuzzbug.htm 0.0.5]
|[https://www.bannister.org/software/fuzzbug.htm 0.0.5]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 3,910: Line 3,763:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Ya}}
|{{Ya}}
|{{Na}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{Na}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|-
|-
|[[FUSE]]
|[[FUSE]]
|[https://fuse-for-macosx.sourceforge.io Releases]
|[https://fuse-for-macosx.sourceforge.io Releases]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 3,926: Line 3,778:
|}
|}


===Sinclair QL===
=== Sinclair QL ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| sQLux
|sQLux
| [https://github.com/ares-emulator/ares/releases/latest {{sQLuxVer}}]
|[https://github.com/ares-emulator/ares/releases/latest {{sQLuxVer}}]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,952: Line 3,803:
| {{?}}  
| {{?}}  
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=command-line>Command-line only application. No app bundle provided.</ref>
| {{~}}<ref group="note" name=command-line>Command-line only application. No app bundle provided.</ref>
|}
|}


==Tandy==
== Tandy ==
===TRS-80===
 
{| class="wikitable" style="text-align:center;"
=== TRS-80 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[TRS80GP]]
|[[TRS80GP]]
| [http://48k.ca/trs80gp.html Website]
|[http://48k.ca/trs80gp.html Website]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 3,984: Line 3,835:
| {{Ya}}
| {{Ya}}
|-
|-
| [[SDLTRS2]]
|[[SDLTRS2]]
| [https://gitlab.com/jengun/sdltrs git]
|[https://gitlab.com/jengun/sdltrs git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
| {{Ya}}<ref group="N" name=compile>Must compile from source.</ref>
| {{Ya}}<ref group="note" name=compile>Must compile from source.</ref>
| {{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
Line 3,998: Line 3,848:
|}
|}


==Dragon Data==
== Dragon Data ==
===Dragon 32/64===
 
{| class="wikitable" style="text-align:center;"
=== Dragon 32/64 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| [[XRoar]]
|[[XRoar]]
| [http://www.6809.org.uk/xroar/ git]
|[http://www.6809.org.uk/xroar/ git]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}
| {{Ya}}
Line 4,028: Line 3,878:
|}
|}


==Oric==
== Oric ==
===Oric 1 / Atmos===
 
{| class="wikitable" style="text-align:center;"
=== Oric 1 / Atmos ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[CLK]]
|[[CLK]]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,058: Line 3,908:
|}
|}


==Amstrad==
== Amstrad ==
===Amstrad CPC===
 
{| class="wikitable" style="text-align:center;"
=== Amstrad CPC ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[CLK]]
|[[CLK]]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,088: Line 3,938:
|-
|-
|[[Retro Virtual Machine]]
|[[Retro Virtual Machine]]
|[https://retrovirtualmachine.org {{Retro Virtual MachineVer}}]
|[https://retrovirtualmachine.org {{Retro Virtual MachineVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,101: Line 3,950:
|-
|-
|ACE-DL
|ACE-DL
|[http://www.roudoudou.com/ACE-DL/ {{ACE-DLVer}}]
|[http://www.roudoudou.com/ACE-DL/ {{ACE-DLVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,113: Line 3,961:
|{{R}}
|{{R}}
|-
|-
| [[ZEsarUX]]
|[[ZEsarUX]]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]
|[https://github.com/chernandezba/zesarux/releases/latest {{ZEsarUXVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,127: Line 3,974:
|}
|}


==Acorn==
== Acorn ==
===Electron===
 
{| class="wikitable" style="text-align:center;"
=== Electron ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|[[CLK]]
|[[CLK]]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]
|[https://github.com/TomHarte/CLK/releases/latest {{ClkVer}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,157: Line 4,004:
|}
|}


===BBC Micro===
=== BBC Micro ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|b2
|b2
|[https://github.com/tom-seddon/b2 {{B2Ver}}]
|[https://github.com/tom-seddon/b2 {{B2Ver}}]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,186: Line 4,032:
|-
|-
|Horizon
|Horizon
|[https://www.bannister.org/software/horizon.htm 2.1.1]
|[https://www.bannister.org/software/horizon.htm 2.1.1]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,196: Line 4,041:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Ya}}
|{{Ya}}
|{{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===RISC PC===
=== RISC PC ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|RPCEmu
|RPCEmu
|[https://github.com/Septercius/rpcemu-dev/releases/latest 0.9.4a]
|[https://github.com/Septercius/rpcemu-dev/releases/latest 0.9.4a]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,228: Line 4,072:
|}
|}


==Thompson==
== Thompson ==
===MO5===
 
{| class="wikitable" style="text-align:center;"
=== MO5 ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
|MO5
|MO5
|[https://www.bannister.org/software/mo5.htm 2.6.7]
|[https://www.bannister.org/software/mo5.htm 2.6.7]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,255: Line 4,099:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Ya}}
|{{Ya}}
|{{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===TO7===
=== TO7 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|Thom
|Thom
|[https://www.bannister.org/software/thom.htm 1.6.5]
|[https://www.bannister.org/software/thom.htm 1.6.5]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,284: Line 4,127:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Ya}}
|{{Ya}}
|{{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


===TO8===
=== TO8 ===
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
|TEO
|TEO
|[https://www.bannister.org/software/teo.htm 1.8.7]
|[https://www.bannister.org/software/teo.htm 1.8.7]||{{Na}}
|{{Na}}
|{{Na}}
|{{Na}}
|{{Ya}}
|{{Ya}}
Line 4,313: Line 4,155:
|{{Red}} {{License|Proprietary}}
|{{Red}} {{License|Proprietary}}
|{{Ya}}
|{{Ya}}
|{{~}}<ref group="N" name=paid>Requires paid version to access extra emulation features</ref>
|{{~}}<ref group="note" name=paid>Requires paid version to access extra emulation features</ref>
|}
|}


==VTech==
== VTech ==
===V.Smile===
 
{| class="wikitable" style="text-align:center;"
=== V.Smile ===
! scope="col"|Name
{| {{Emulator table}}
! scope="col"|Latest Version
!Name
! scope="col"|PPC
!Latest Version
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!PPC
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|ARM
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|OpenGL
!ARM
! scope="col"|MoltenVK
!OpenGL
! scope="col"|Metal
!MoltenVK
! scope="col"|[[Licensing|License]]
!Metal
! scope="col"|Active
![[Licensing|License]]
! scope="col"|[[Recommended Emulators|Recommended]]
!Active
![[Recommended Emulators|Recommended]]
|-
|-
| veesem
|veesem
| [https://github.com/sp1187/veesem 0.1]
|[https://github.com/sp1187/veesem 0.1]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}  
| {{Ya}}  
Line 4,346: Line 4,188:
|}
|}


==Commander X16==
== Commander X16 ==
{| class="wikitable" style="text-align:center;"
{| {{Emulator table}}
! scope="col"|Name
!Name
! scope="col"|Latest Version
!Latest Version
! scope="col"|PPC
!PPC
! scope="col"|<abbr title="32-bit Intel">x86</abbr>
!<abbr title="32-bit Intel">x86</abbr>
! scope="col"|<abbr title="64-bit Intel">x64</abbr>
!<abbr title="64-bit Intel">x64</abbr>
! scope="col"|ARM
!ARM
! scope="col"|OpenGL
!OpenGL
! scope="col"|MoltenVK
!MoltenVK
! scope="col"|Metal
!Metal
! scope="col"|[[Licensing|License]]
![[Licensing|License]]
! scope="col"|Active
!Active
! scope="col"|[[Recommended Emulators|Recommended]]
![[Recommended Emulators|Recommended]]
|-
|-
| X16 Emulator
|X16 Emulator
| [https://github.com/X16Community/x16-emulator r48]
|[https://github.com/X16Community/x16-emulator r48]||{{Na}}
| {{Na}}
| {{Na}}
| {{Na}}
| {{Ya}}  
| {{Ya}}  
Line 4,372: Line 4,213:
| {{Green}} {{License|BSD2}} ({{License|Permissive}})
| {{Green}} {{License|BSD2}} ({{License|Permissive}})
| {{Ya}}
| {{Ya}}
| {{~}}<ref group="N" name=command-line>Command-line only application. No app bundle provided.</ref>
| {{~}}<ref name="command-line" group="note">Command-line only application. No app bundle provided.</ref>
|}
|}


{{NEL}}
== See also ==
 
==See also==
{{Emulators on other systems‎‎}}
{{Emulators on other systems‎‎}}


==References==
== Notes ==
<references group="N" />
{{Notelist|group=note}}


== References ==
{{Reflist}}
[[Category:macOS| ]]
[[Category:macOS| ]]
[[Category:macOS emulation software]]
[[Category:macOS emulation software]]
[[Category:Shareware emulators]]
[[Category:Shareware emulators]]

Revision as of 14:51, 12 July 2026

macOS
Developer Apple
Initial release March 24, 2001
Latest release 26.6.2 / August 17, 2026
Preceded by Classic Mac OS, NeXTSTEP
Emulated ~
This page is about emulators that run on macOS (previously Mac OS X).
For software that emulates macOS on other hardware, see macOS emulators.
For emulators that run on Classic Mac OS, see Emulators on Legacy systems#Classic Mac OS.

The Mac has changed considerably over the years, both in terms of hardware and software. It is important to understand these changes so you can choose the best emulators for your Mac.

Operating System - Classic Mac OS | macOS

The Mac has had two main operating systems over its history: The "Classic" Mac OS versions 1 through 9, and Mac OS X (Ten, not pronouced as "Ex") which is now referred to simply as macOS. Classic was a closed-source proprietary OS, whereas macOS is based on an open-source Unix variant called Darwin. This Unix base helps with Linux compatibility.

The first several releases of macOS up to 10.4 Tiger contained support for Classic applications, but this was later dropped.

CPU Architecture - PowerPC | x86 | x64 | Arm64

macOS has supported three major cpu architecture changes: IBM PowerPC (PPC), Intel x86/x64 and most recently Apple Silicon (Arm64). There have also been minor architectural changes such as moving from 32-bit PPC processors to the 64-bit PPC G5, or from Intel's 32-bit x86 to 64-bit x64. Each time there was a hardware transition, Apple provided ways to continue to support older software on the new systems.

Rosetta was a software emulation layer that helped PPC applications to run on x86/x64 Macs. It was built into 10.4.4 Tiger, but was an optional install in macOS 10.6 Snow Leopard and not available at all for 10.7 Lion. Rosetta 2 currently facilitates x64 software to run on Arm Macs. While Rosetta performs very respectably for most software, it adds extra overhead which can reduce performance on demanding games and emulators.

Apple also introduced Universal Binaries that bundle software for different architectures into a single app bundle. For example, Universal 2 app bundles contain x64 and Arm versions of software in one app. This is very useful for portability, or for people who don't know or care about their Mac's specs. If you know what CPU your Mac has, the advantage of getting the specific version for your CPU is that it will have a smaller file size than the universal binary. However the size difference is usually tiny, so just using the universal binary is usually the way to go.

Graphical Backend - OpenGL | MoltenVK | KosmicKrisp | Metal

Another aspect to consider is the graphical backend of the emulator. For many years OpenGL was the main cross-platform standard for developing graphical software. However in recent times this has changed. More modern backends such as Vulkan and Metal are superseding it. OpenGL on macOS is deprecated, meaning it is stuck on the older OGL 4.1. It doesn't receive any support or bug fixes and will someday be removed from macOS completely. Apple recommends for developers to create native Metal backends for their apps.

One issue with this is that a lot of emulators are cross-platform, and Metal is only for Apple's platforms. The Vulkan backend for Windows and Linux is similar to Metal, but does not have support on macOS. So, many emulators will develop a Vulkan backend and use a translation layer, like MoltenVK or KosmicKrisp, which will take Vulkan instructions and convert them into their respective Metal equivalent. However not every Vulkan instruction has a Metal version, so either workarounds have to be designed, or some features cannot be supported at all. There are two Vulkan-to-Metal translation layers: MoltenVK and KosmicKrisp. MoltenVK is older and was originally developed when Macs were still using Intel CPUs. KosmicKrisp is newer, and is targeting Arm chips and Metal 4 which is a closer match to Vulkan. KosmicKrisp is still in early development but has the potential to be superior to MoltenVK, with the drawback of dropping support for Intel Macs.

Using one of these backends is not mandatory, of course. Some emulators may use a different backend or handle graphics themselves.

Before diving in;
  • Remember that emulators can have different levels of completion or compatibility. If a game you are trying to run does not work properly with a recommended emulator, try a different one. All this means that to find an emulator that works well for your Mac you should understand its specs first. Choose an emulator that supports your CPU architecture natively where possible. The emulators shown here will indicate the processor architecture it supports. Generally you should choose an emulator that supports Metal where available if you are on a modern Mac. MoltenVK should be more performant than OpenGL, although there may be compatibility issues. KosmicKrisp should be more compatible and performant than MoltenVK. OpenGL may work, but some emulators need to use a version newer than OGL 4.1 that macOS doesn't support. In cases like this the emulator will be marked as not having OpenGL support. This list shows the latest versions of the emulator software. If you have an older CPU and the latest version does not support it, some emulators will keep archives of older versions that might, check out their website.
  • See each Wiki Category Consoles, Computers and Arcade for individual dedicated system pages to see provided up-to-date listings and in-depth information on specific aspects like hardware features, peripheral support, compatibility and also enhancements features etc.
  • Some games have native Source ports on macOS, which can be better than playing through an emulator. Also see Game engine recreations and source ports page for a list for all platforms.

Frontends

A frontend is a graphical user interface (GUI) that uses one or more emulator cores under the hood. They could replace the GUI of the official emulator, or they could provide a GUI for command-line-only emulators like MAME or Mednafen. They are also very useful for consolidating games into a single library.

There are two types of frontends:

- Desktop frontends are designed to be navigated with a mouse and keyboard. These can give a Mac-native user interface to command-line or cross-platform emulators

- Fullscreen frontends are designed to be navigated with a game controller. These are very useful if you want to connect your Mac to a TV (or mirror your screen to an AppleTV) and use it as a mini-console

OpenEmu

OpenEmu is an excellent desktop frontend designed for macOS that provides a clean iTunes-like interface. The systems emulated are listed here. It supports shaders that can improve many 2D games, but some advanced features such as upscaling for 3D games are generally not available.

OpenEmu has not been actively developed for several years, and there has never been an official Arm release. However, there is an actively developed fork called OpenEmu-Silicon that is a Universal Binary and has added several more cores and features such as cloud sync, retro-achievements and alternate cover-art sources.

EmulationStation

EmulationStation Desktop Edition is a fullscreen frontend that integrates many emulators, including both command-line and standalone apps. To work properly with standalone apps they usually need to be configured to enter fullscreen automatically on launch.

RetroArch

RetroArch is fullscreen frontend that supports many cores. It is popular but the UI is poor, it is not user-friendly and many of the cores are not updated.

Attract-Mode

Attract-Mode is a fullscreen frontend that supports many cores. There is only an x64 build available on the website. It currently cannot be built from source as the macOS source code has not been maintained.

There is a fork called Attract-Mode Plus that is in active development and has Apple Silicon builds, though as of writing the most recent release does not launch correctly.

Fightcade

Fightcade is a desktop matchmaking frontend for playing many arcade fighting games online with other players. There is currently no Arm build.

Ample

Ample is a frontend for MAME specifically for emulating the Apple II.

Game-specific emulators

Some emulators target specific games rather than emulating whole systems, with ScummVM alone supporting over 300 games from various systems and more being added all the time.

Other projects are more considered source ports rather than emulators. See Source ports on macOS

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Games List Recommended
ScummVM 2026.3.0 GPLv2 (Copyleft) List
DREAMM 4.0.0

Beta Releases

Proprietary List

Arcade

Most arcade cabinets

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

Atomiswave

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Flycast 2.7 GPLv2 (Copyleft)
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

Sega Model 3

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Supermodel 0.3a [note 2] GPLv3 (Copyleft)
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

NAOMI

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Flycast 2.7 GPLv2 (Copyleft)
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

Triforce

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Dolphin 2606a[1] GPLv2 (Copyleft)

Neo Geo MVS/AES

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
FinalBurn Neo 1.0.0.2 ! Non-commercial ~ ~
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

LaserDisc

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]
Hypseus Singe 3.0.2 GPLv3 (Copyleft)

Nintendo

NES/Famicom

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
GoNES 0.2.0 ! Apache 2.0 (Permissive)
Mesen 2.2.1 GPLv3 (Copyleft)
TetaNES 0.17.0 ! MIT (Permissive)
MetalNES git MIT (Permissive) [note 3]
Nestopia 1.99.0 ! GPLv2 (Copyleft) [note 3]
SwiftNES git ! [note 3]
Nin git ! GPLv2 (Copyleft) ~

Super Nintendo Entertainment System

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
bsnes

(Official)

v115 GPLv3 (Copyleft)
SUPER ZSNES 0.300 ! ! ! !
bsnes-hd

(forked bsnes)

beta 10.6 GPLv3 (Copyleft)
Mesen 2.2.1 GPLv3 (Copyleft)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Snes9x 1.63 Non-commercial ~

Nintendo 64

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Mupen64Plus 2.6.0 GPLv2 (Copyleft) ~[note 4]
Gopher64 1.1.34 GPLv3 (Copyleft) !
simple64 v2021.5.30 ! GPLv3 (Copyleft)
Rokuyon Releases GPLv3 (Copyleft)

Nintendo GameCube

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Dolphin 2606a[2] GPLv2 (Copyleft)
Lazuli 2026/07/10 ! ! ! ! GPLv2 (Copyleft)
Gecko Release ! ! ! ! GPLv3 (Copyleft)

Wii

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Dolphin 2606a[2] GPLv2 (Copyleft)
Gecko Release ! ! ! ! GPLv3 (Copyleft)

Wii U

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Cemu 2.6

Nightlies

~[note 5] ~[note 5] MPL 2.0 (Copyleft)

Nintendo Switch

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK KosmicKrisp Metal Gamepad Support License Active Recommended
Ryubing

(Ryujinx Fork)[3]

1.3.3

Canary

git

~[note 6] MIT (Permissive)
Astris

(Ryubing with SwiftUI)[4]

1.0.27 (UI only) Proprietary
Kenji-NX

(KeatonTheBot's Ryujinx Fork)

[https://git.ryujinx.app/projects/Kenji-NX/releases/latest

This page is a candidate for deletion. The reason is:

"Duplicate template"

If you disagree with the candidate, explain why at the talk page or improve the page and remove the {{delete}} tag.

Remember to check for any active links to the page and its history before deleting.

]

git

~[note 6] MIT (Permissive)
Hydra 0.4.2 GPLv3 (Copyleft)
Eden

(Yuzu fork)

0.2.1

Nightlies

GPLv3 (Copyleft)

Game Boy (Color)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Game Link Support Gamepad Support License Active Recommended
SameBoy 1.0.3 MIT (Permissive)
SkyEmu v5 ! ! ! MIT (Permissive)
ares v148 ISC (Permissive)
mGBA 0.10.5 MPL 2.0 (Copyleft)
KiGB 2.09 ! ~ Proprietary ~ ~[note 7]
Gearboy 3.8.15 ! ! ! GPLv3 (Copyleft) !
Mesen 2.2.1 ! GPLv3 (Copyleft)
VisualBoy Advance-M (VBA-M) 2.2.3

Nightlies

GPLv2 (Copyleft) ~
Swift-plays-Pokemon git MPL 2.0 (Copyleft) [note 8]
Gambatte r571 ! ! ! ! GPLv2 (Copyleft)

Game Boy Advance

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Game Link Support Gamepad Support License Active Recommended
SkyEmu v5 ! ! ! MIT (Permissive)
ares v148 ISC (Permissive)
NanoBoyAdvance 1.8.3 GPLv3 (Copyleft)
Hades 1.1.0 ! ! GPLv2 (Copyleft) !
Mesen 2.2.1 ! GPLv3 (Copyleft)
mGBA 0.10.5 MPL 2.0 (Copyleft)
Boycott Advance 0.4.4 ! ~ Proprietary ~ ~[note 7]
Gearboy 3.8.15 ! ! ! ! GPLv3 (Copyleft) !
VisualBoy Advance-M (VBA-M) 2.2.3

Nightlies

GPLv2 (Copyleft) !

Nintendo DS

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
DeSmuME 0.9.13 GPLv2 (Copyleft)
MelonDS 1.1 GPLv2 (Copyleft)
NooDS Releases ! GPLv3 (Copyleft) ~
Dust WIP ! GPLv3 (Copyleft)
Medusa Beta MPL 2.0 (Copyleft)

Nintendo 3DS

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Azahar[5] 2126.1.1 GPLv2 (Copyleft)
Mandarine[6] 1.3.0 GPLv2 (Copyleft)
Panda3DS 0.9 ~[note 9] GPLv3 (Copyleft)
Tanuki3DS 0.5.1 ! GPLv3 (Copyleft)
Borked3DS git GPLv2 (Copyleft) [note 10]
3Beans git GPLv3 (Copyleft)

Sega

SG-1000

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
RetroVM 2.1.20 Proprietary
Gearsystem 3.9.18 ! GPLv3 (Copyleft)
ZEsarUX 13.0 ! GPL (Copyleft) !

Master System

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
CLK 2026-07-23 MIT (Permissive)
Mesen 2.2.1 GPLv3 (Copyleft)
RetroVM 2.1.20 Proprietary ~
Gearsystem 3.9.18 ! GPLv3 (Copyleft)
ZEsarUX 13.0 ! GPL (Copyleft) !

Mega Drive/Genesis

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Generator 0.4.8 ~ Proprietary ~[note 7]
Genesis Plus 1.3.5 ~ Proprietary ~[note 7]

Sega CD

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)

32X

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)

Sega Saturn

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Ymir 0.3.3 GPLv3 (Copyleft)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Yabause 0.9.15 GPLv2 (Copyleft)

Dreamcast

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Flycast 2.7 GPLv2 (Copyleft)
Redream 1.5.0 Proprietary ~[note 7]
nullDC 2.0.0-pre

git

MIT (Permissive) [note 2]

VMU

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
DreamPotato v0.3.1 ? ? ? ? MIT (Permissive)

Game Gear

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Mesen 2.2.1 GPLv3 (Copyleft)
Gearsystem 3.9.18 ! GPLv3 (Copyleft)

Sony

PlayStation

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
DuckStation Rolling Release

Preview

CC BY-NC-ND 4.0
ares v148 ISC (Permissive) ~
PCSX-R git

PPC 1.6.0

Intel 1.9.93

GPLv3 (Copyleft)
PCSX-Redux git GPLv2 (Copyleft) ~
StarPSX 0.8.3 GPLv3 (Copyleft)
psxe 0.10.5-alpha MIT (Permissive)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]

PlayStation 2

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
PCSX2 2.8.2 ~[note 11] GPLv3 (Copyleft)
AetherSX2 1.5-3939 Proprietary[note 12] [note 13]
ARMSX2 2.6.2 GPLv3 (Copyleft) ~
Play! 0.77 BSD-2-Clause (Permissive)
Iris 0.20-alpha ! MIT (Permissive)

PlayStation 3

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK KosmicKrisp Metal Gamepad Support License Active Recommended
RPCS3 0.0.42 Alpha ~ [note 14] GPLv2 (Copyleft) [note 15]
ChonkyStation3 git GPLv3 (Copyleft)

PlayStation 4

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK KosmicKrisp Metal Gamepad Support License Active Recommended
shadPS4 0.18.0 [note 16] GPLv2 (Copyleft) ~[note 17]
Obliteration github ~ [note 18] LGPLv2.1 (Copyleft) [note 19]

PlayStation 5

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK KosmicKrisp Metal Gamepad Support License Active Recommended
SharpEmu unreleased [note 16] ! GPLv2 (Copyleft) [note 20]

PlayStation Portable

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
PPSSPP 1.20.4 GPLv2 (Copyleft)

PlayStation Vita

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Vita3K 0.2.1 ~[note 21] GPLv2 (Copyleft) [note 22]

Microsoft

MS-DOS

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
Boxer Fork[7] ! GPLv2 (Copyleft) ~
86Box 6.0 GPLv2 (Copyleft)
DOSBox Staging 0.83.0 GPLv2 (Copyleft)
DOSBox-X 2026.08.02 GPLv2 (Copyleft)
DOSBox 0.74-3

SVN

! GPLv2 (Copyleft) ~
Dapplegrey 9.9.2 ! !
PCem git GPLv2 (Copyleft) ~
MartyPC v0.4.1 MIT (Permissive)

MSX(2)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
CLK 2026-07-23 MIT (Permissive)
CocoaMSX git ~[note 23] BSD-3-Clause
GPLv2
~
fMSX 6.0 ~ Proprietary ~[note 7]
RetroVM 2.1.20 Proprietary
ZEsarUX 13.0 ! GPL (Copyleft) !

Xbox

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Xemu 0.8.136 GPLv2 (Copyleft)
DukeX 1.0.2 GPLv2 (Copyleft) [note 24]

Xbox 360

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Xenia-Edge

(Xenia Dev Branch)

Rolling Releases BSD-3-Clause ~
XeniOS 2.0.1 BSD-3-Clause ~

Commodore

VIC-20

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
CLK 2026-07-23 MIT (Permissive)
Power20 4.9.5 Proprietary ~[note 25]

Commodore 64

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
VirtualC64 6.0 GPLv3 (Copyleft)
Denise 2.8 GPLv3 (Copyleft)
Frodo 4.4.4 ~ GPLv2 (Copyleft) ~[note 7]
VICE 3.10 GPLv2 (Copyleft)
Power64 4.9.5 Proprietary ~[note 25]

Amiga

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
vAmiga 4.4 GPLv3
MPL 2.0
MIT
FS-UAE 3.2.35 GPLv2 (Copyleft)
Denise 2.8 !
Amiberry 8.3.0 ! GPLv2 (Copyleft) ~
CLK 2026-07-23 MIT (Permissive)

Atari

Atari 8-bit

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Rainbow 1.6.1 ~ Proprietary ~[note 7]

Atari 2600

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
CLK 2026-07-23 MIT (Permissive)
Stella 7.0 ! GPLv2 (Copyleft) !

Atari 5200

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Jum52 1.1.4 ~ Custom (Source-available) ~[note 7]

Atari ST

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Hatari 2.6.1 GPLv2 (Copyleft)
CLK 2026-07-23 MIT (Permissive)

Atari Lynx

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Handy 0.9.11 ~ Proprietary ~[note 7]

SNK

Neo Geo CD

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
FinalBurn Neo 1.0.0.2 ! Non-commercial ~
MAME 0.289 ! GPLv2
BSD-3-Clause
~[note 1]

Neo Geo Pocket (Color)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Neopocott 0.5.5 ~ Proprietary ~[note 7]

Coleco

ColecoVision

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
CLK 2026-07-23 MIT (Permissive)
Mesen 2.2.1 GPLv3 (Copyleft)
Mugrat 0.5.0 ~ Proprietary ~[note 7]
Gearcoleco 1.7.0 ! GPLv3 (Copyleft)
ZEsarUX 13.0 ! GPL (Copyleft) !

Bandai

WonderSwan (Color)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Mesen 2.2.1 GPLv3 (Copyleft)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Oswan 0.8.6 ~ Proprietary ~[note 7]

Apple

Apple I/II/III

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
CLK 2026-07-23 MIT (Permissive)
OpenEmulator 1.1.1 GPLv3 (Copyleft) ~
KEGS 1.38 GPLv2 (Copyleft) !
Sara 0.5.1 Proprietary !
GSplus 0.14 GPLv2 (Copyleft) !
GSport 0.31 GPLv2 (Copyleft) !
MAME 0.289 ! GPLv2
BSD-3-Clause

Apple Lisa

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
LisaEm 1.2.7 GPLv2 (Copyleft) !

Classic Mac OS (68k)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
CLK 2026-07-23 MIT (Permissive)
Snow 0.1.0 MIT (Permissive) !
Basilisk II Download

git

GPLv2 (Copyleft) !
Mini vMac 36.04 GPLv2 (Copyleft) !

Classic Mac OS (PowerPC)

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
UTM site 4.7.5 ~ Apache 2.0 (Permissive)
SheepShaver 2.5

git

GPLv2 (Copyleft) !

NEC

PC-98

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
SL9821 Website Proprietary ~
Neko Project II (猫Project II) Website Proprietary

PC Engine/TurboGrafx/SuperGrafx

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
ares v148 ISC (Permissive)
Mednafen 1.32.1 GPLv2 (Copyleft) ~[note 1]
Mesen 2.2.1 GPLv3 (Copyleft)
Geargrafx 1.7.22 GPLv3 (Copyleft) !
TGEmu 0.3.8 ! ! ! Proprietary ~[note 7]

Fujitsu

FM Towns

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal Gamepad Support License Active Recommended
Tsugaru (津軽) 20260522 BSD-3-Clause (Permissive) !

Sinclair

ZX Spectrum

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
ares v148 ISC (Permissive)
CLK 2026-07-23 MIT (Permissive)
ZEsarUX 13.0 GPL (Copyleft) !
Spectral 1.16 MIT (Permissive) !
RetroVM 2.1.20 Proprietary !
Fuzzbug 0.0.5 ! Proprietary [note 7]
FUSE Releases ! GPLv2 (Copyleft)

Sinclair QL

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
sQLux 1.1.2 ? ~[note 2]

Tandy

TRS-80

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
TRS80GP Website !
SDLTRS2 git [note 3] BSD-2-Clause (Permissive)

Dragon Data

Dragon 32/64

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
XRoar git GPLv3 (Copyleft) !

Oric

Oric 1 / Atmos

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
CLK 2026-07-23 MIT (Permissive)

Amstrad

Amstrad CPC

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
CLK 2026-07-23 MIT (Permissive)
Retro Virtual Machine 2.1.20 Proprietary !
ACE-DL 20260914 ! ! !
ZEsarUX 13.0 GPL (Copyleft) !

Acorn

Electron

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
CLK 2026-07-23 MIT (Permissive)

BBC Micro

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
b2 20260322 GPLv3 (Copyleft)
Horizon 2.1.1 ! Proprietary ~[note 7]

RISC PC

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
RPCEmu 0.9.4a GPLv2 (Copyleft) ~

Thompson

MO5

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
MO5 2.6.7 ! Proprietary ~[note 7]

TO7

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
Thom 1.6.5 ! Proprietary ~[note 7]

TO8

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
TEO 1.8.7 ! Proprietary ~[note 7]

VTech

V.Smile

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
veesem 0.1 ISC (Permissive) !

Commander X16

Name Latest Version PPC x86 x64 ARM OpenGL MoltenVK Metal License Active Recommended
X16 Emulator r48 BSD-2-Clause (Permissive) ~[note 2]

See also

Emulators on other systems(edit)

Notes

  1. 1.00 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.10 1.11 1.12 1.13 Command-line application. Best played using OpenEmu. Arm builds of OpenEmu and cores available here
  2. 2.0 2.1 2.2 2.3 Command-line only application. No app bundle provided.
  3. 3.0 3.1 3.2 3.3 Must compile from source.
  4. Only available as a core. Best played using OpenEmu. Arm builds of OpenEmu and cores available here
  5. 5.0 5.1 Arm support and the Metal renderer are in the nightly builds, but are not included in a major release yet.
  6. 6.0 6.1 While the builds are currently universal, x86 is unsupported and will be removed in future releases
  7. 7.00 7.01 7.02 7.03 7.04 7.05 7.06 7.07 7.08 7.09 7.10 7.11 7.12 7.13 7.14 7.15 7.16 7.17 7.18 Requires paid version to access extra emulation features
  8. No Audio. Must compile from source and run from command line.
  9. Available on the SDL build only. Not available on the Qt build.
  10. This is an experimental Citra fork. Changes made here might be merged into Azahar
  11. Unofficial 32-bit builds and builds for older versions of macOS are available here. Compatible with macOS 10.9 Mavericks to 10.14 Mojave.
  12. Based on PCSX2, so it is partially Open-source. The ARM parts are Proprietary.
  13. Recommended on Apple Silicon except for where there are game-specific bugs that are fixed in PCSX2.
  14. There is an experimental KosmicKrisp PR here
  15. Always download the compatibility database and use it to create a custom config for each game
  16. 16.0 16.1 Only Arm Macs running Rosetta are supported
  17. Very early in development. Currently has low compatibility.
  18. There is an Arm build available but there is no x86->Arm recompiler yet
  19. Very early in development. There is currently no graphics backend.
  20. Very early in development
  21. Experimental Arm build available. Has major issues on some titles. Updater will automatically update to the x86 version
  22. Compatibility varies greatly depending on the title
  23. No official Arm build. Needs to be built from source
  24. Fork of Xemu. Early in development and does not work properly at time of writing
  25. 25.0 25.1 Shareware. Requires license to unlock full version.

References

  1. Information about the Triforce can be found here
  2. 2.0 2.1 The last Dolphin release to support macOS 10.15 Catalina is 2503a, and the last development build is 2503-270.[1]
  3. This fork has merged LDN and other previously incomplete features. Mostly focused on maintenance, crash fixes and QoL improvements.
  4. This fork is based on Ryubing, but has a complete SwiftUI overhaul
  5. This project is a continuation of PabloMK7's Citra and Lime3DS
  6. This project is a fork of Citra
  7. The fork of Boxer supports x64 and Arm