Sony's reported single-player PC retreat has exceptions
The policy change came through reporting, not an announcement. In March 2026, Bloomberg's Jason Schreier cited people familiar with Sony's plans who said the company would no longer bring current and future single-player games to PC. Ars Technica's write-up says the report names Ghost of Yotei and Saros, Housemarque's follow-up to Returnal, as games whose PC plans were cancelled. According to Bloomberg's sources, some people inside Sony worry that PC releases could hurt sales of the PlayStation 5 and its unannounced successor. They also cite a possible concern that PlayStation titles could end up on Xbox hardware if the next Xbox can play PC games.
Wccftech's description, that only live-service and multiplayer games such as Helldivers 2, Marathon and Marvel Tōkon: Fighting Souls will reach PC from now on, is too tidy. Ars Technica notes that some games that are effectively PlayStation 5 first-party titles but come from studios Sony does not own will still reach PC. It names Death Stranding 2: On the Beach and Kena: Scars of Kosmora as examples. Bloomberg's sources also said the single-player strategy could change again.
The history explains why PC players care. Sony began releasing first-party games on PC in 2020, including Horizon Zero Dawn, Ghost of Tsushima and Helldivers 2. The rollout was uneven. Ports arrived months or years after the console release, and a requirement to sign in with a PlayStation account caused friction. Bloomberg also reported that some recent PC releases sold below expectations. The result, if the reporting holds, is that games like Ghost of Yotei stay on PlayStation hardware for the foreseeable future.
Wccftech also links the mood around PlayStation to Sony's reported plan to end disc production in 2028, and to rumours that Sony might reverse it. That is a separate physical-media question with no technical connection to AnyPS5.
How AnyPS5 turns PS5 executables into native Windows programs
AnyPS5's GitHub repository describes it as a tool for automatic executables porting to Linux and Windows. Includes a relinker that converts executable to the target system's native format and implementations of system prx libraries suitable for dynamic linking. The next line is the core of the design: No emulation or separate runtime process.
In practice, the pipeline has three parts:
- A relinker rewrites the PS5 game's executable into a format the host operating system can load directly. A DeepWiki summary of the codebase says the relinker is responsible for rewriting guest ELF executables into native Linux ELF or Windows PE binaries. PE is the standard executable format on Windows.
- Replacement system libraries stand in for Sony's PRX modules, the console's shared libraries. The same summary says the project houses reimplemented Sony system libraries (PRX targets) such as libc, libkernel, and various libSce* service modules that bridge guest API calls directly to native operating system and graphics primitives.
- A shader recompiler handles graphics. It translates guest AMD RDNA shader binaries into an intermediate representation (IR) and ultimately emits SPIR-V shaders for Vulkan consumption.
Wccftech compares this to Wine and Proton, and the comparison is partly right. Like Wine, AnyPS5 runs the game's own CPU code directly and supplies reimplemented system libraries in place of the originals. The difference is timing. Wine loads unmodified Windows programs and translates their system calls while they run. AnyPS5 converts the PS5 binary ahead of time into a Windows or Linux executable, and that executable then calls AnyPS5's replacement libraries. The design works because the PS5 and a typical Windows PC share the x86-64 CPU architecture, so the game's compiled code doesn't have to be translated instruction by instruction.
For Windows users, the build requirements are specific. The relinker uses only the C++20 standard library and should build with any conforming compiler. The libc.prx implementation contains compiler-specific code, though. Linux builds work with GCC, while Windows builds currently require MinGW-w64 GCC 15.2.0 (the winlibs-gcc15, x86_64-ucrt-posix-seh variant). The maintainer says support for other compilers will come after the first successful game launch. So Microsoft's Visual C++ toolchain is not supported for now.
AnyPS5 reaches a main menu, then hits an access violation at frame 168
AnyPS5's public status note is short and precise. Execution reaches the game's _start entry point, stack-unwinding and exception-handling tables are built, and the game's main function runs. Unsupported or unexpected states strictly throw std::runtime_error. what() is printed to stderr and the process terminates. In other words, the tool stops as soon as it hits something it hasn't implemented, instead of carrying on in a broken state. That makes debugging easier, but it also means every missing system function ends the run.
The latest status says the real game displays its logo and loads its main menu, then crashes before the menu buttons appear. The current error is listed as an access violation at about frame 168. The repository does not name the game.
The note has changed quickly. An earlier version said the game reaches the render loop and successfully presents its first frames (logo), and listed the blocking error as Could not open file /_sd/SAVEDATA00/-saveindex on ~71 frame. Going from a save-data file error at frame 71 to a loaded menu at frame 168 is real progress. It is still progress through a boot sequence.
That corrects Wccftech's summary. Its report says the tool reaches the initial boot of games but fails to run them due to missing PlayStation 5 OS hooks. The repository's own status is further along than that: it gets through boot and renders a menu. It also mentions one game, not games in general. Independent coverage agrees on the limits. GenerationAmiga reported that the project has made progress beyond converting executable files, but there's no playable PS5 game demonstration yet, and that there's no confirmed list of fully playable PS5 titles, either.
The release policy sets expectations. Releases will be published after the first full successful launch of at least one game. The repository currently has no releases, no compatibility list, no performance data and no end-user setup guide. Anyone who wants to try it has to build it from source with the specific Windows toolchain above.
God of War Laufey, Demon's Souls and GTA 6 are still hopes, not results
Wccftech's argument is that native execution on shared x86-64 hardware would avoid the CPU overhead of emulation, so games could run "at full speed, or close to it." It also suggests full DualSense support over Bluetooth through an unofficial app. On that basis, it names the Bluepoint Games remake of Demon's Souls and the upcoming God of War Laufey as games PC players could eventually get even without official ports.
The architectural point is sound as far as it goes. A relinked binary running directly on an x86-64 processor doesn't pay for instruction translation. Speed also depends on the parts AnyPS5 hasn't finished: correct reimplementations of the PS5's system libraries, and a graphics path that turns RDNA shaders and PS5 GPU commands into Vulkan work fast enough. Those parts decide both whether a game runs and how well. The project has published no performance figures, and it has shown no controller support at all, DualSense or otherwise. GenerationAmiga made the same point: further testing will be needed to establish game compatibility, rendering accuracy and performance across different PC configurations.
The named games are examples of demand, not of compatibility. Nothing shows Demon's Souls or God of War Laufey getting through AnyPS5 at all. God of War Laufey is also an unreleased title, so there is no executable to test.
Wccftech itself dismisses the Grand Theft Auto VI scenario, saying there is too much work left for AnyPS5 to beat Rockstar's official PC release. The repository supports that view. A tool that crashes before one game's menu becomes usable is nowhere near running one of the most demanding console games of the generation.
AnyPS5 joins KytyPS5 and SharpEmu on Windows
AnyPS5 is arriving in a crowded field. GenerationAmiga noted in July that PlayStation 5 emulation has become surprisingly busy. A growing number of projects now claim some level of PS5 support, though the word emulator can mean very different things depending on the software.
KytyPS5 calls itself a PlayStation 5 emulator for Windows, Linux and macOS. Its listed requirements include Windows 10 version 1803, a current Linux distribution, or macOS on Apple Silicon · A 64-bit x86 processor and a Vulkan 1.3-capable GPU. It publishes prebuilt releases. Wccftech's related coverage says KytyPlus, a KytyPS5 variant, has rendered the Unreal Engine 5 Silent Hill 2 remake on integrated graphics. SharpEmu, which launched on Windows first, can already load real PS5 executables, run native CPU instructions, handle parts of the console's software environment and produce early graphics output in selected games.
The approaches differ. The emulators run the PS5's x86-64 code natively too, but inside a host program that recreates the console environment around the game. AnyPS5 skips that host process: the converted game is itself the Windows program, linked against replacement libraries. Both approaches share the hardest problems. They have to reimplement Sony's system software and translate RDNA 2-era shaders to Vulkan SPIR-V. KytyPS5's documentation notes that the PS5 graphics architecture is based on AMD RDNA 2.
None of these tools is a practical replacement for a PS5 today. The projects are growing faster and in different directions, and that makes the field worth watching.
AnyPS5's GPL-2.0 licence and "bring your own binaries" disclaimer
The project's disclaimer says it is intended for interoperability, research, preservation and compatibility. According to the maintainer, it does not include, distribute or require copyrighted software, firmware, cryptographic keys or proprietary libraries. Users are responsible for getting and using any binaries lawfully. GenerationAmiga summarised it the same way: users remain responsible for obtaining game files and complying with applicable laws and licence agreements. The code is licensed under GPL-2.0-only.
This is the maintainer's own framing, not a legal ruling. The disclaimer doesn't say how a user is expected to obtain decrypted PS5 executables. That step is what separates this kind of project from a one-click download, and anyone considering it has to answer it for their own situation.
What this means for you
For almost everyone, the practical choice is to watch rather than act. AnyPS5 has no release, supports no games and has no user documentation, so there is nothing to install. The first real milestone will be the maintainer's own trigger: a full successful launch of one game, followed by a published release.
- Sony's end of single-player PC ports comes from Bloomberg's reporting, not an official Sony statement. Third-party-developed titles such as Death Stranding 2 and Kena: Scars of Kosmora are still reportedly headed to PC.
- AnyPS5 converts PS5 executables into native Windows PE or Linux ELF binaries using replacement Sony system libraries and a shader recompiler that outputs Vulkan SPIR-V. It is not a conventional emulator.
- The latest public status is one unnamed game loading its main menu and crashing with an access violation at about frame 168. The project has no releases and no compatibility list.
- Developers who want to experiment on Windows currently need MinGW-w64 GCC 15.2.0 (
winlibs-gcc15,x86_64-ucrt-posix-seh), because other compilers aren't supported yet. - Claims about full-speed performance, DualSense support, or playing Demon's Souls or God of War Laufey through AnyPS5 are speculation. No test or demonstration backs them up.
- KytyPS5 and SharpEmu are separate Windows-capable PS5 projects that publish their own builds, and neither offers broad game compatibility yet.
If Bloomberg's reporting holds, Sony has closed the official path for its single-player games on PC for now. AnyPS5 is a credible technical attempt at a different path: running console binaries as native Windows programs, without an emulator in between. It has gone from a logo to a main menu in a matter of weeks. The next concrete step is its first full game launch and first public release, and until that happens it offers no way to play PS5 exclusives on a Windows PC.