Playstation 4 Emulator for Windows
Go to file
2024-06-03 18:25:47 +02:00
.github/workflows Merge pull request #175 from SysRay/features 2024-06-01 17:09:37 +02:00
.vscode core 2024-06-03 17:16:19 +02:00
asm entry| copy all args 2024-05-17 21:55:32 +02:00
core format 2024-06-03 17:18:51 +02:00
docs Padspeaker wiki 2024-05-07 02:54:14 +03:00
misc Initial commit 2024-04-25 16:47:48 +03:00
modules No flags argument for MasteringGetState 2024-06-03 10:09:06 +03:00
modules_include Stub some funcs 2024-04-14 16:04:54 +03:00
out/docs/uml/modules videoout| handle swapchain with imageHandler 2024-03-29 16:00:25 +01:00
tests dump 2024-04-17 21:39:03 +02:00
tools Add description 2024-06-02 12:28:54 +03:00
utility Absolute paths for everything 2024-05-03 22:15:56 +03:00
.clang-format Missing symbol + .clang-format cleanup 2024-04-20 12:10:10 +03:00
.clang-format-ignore Initial commit 2024-04-30 14:14:35 +03:00
.gitignore readme 2024-05-31 15:52:47 +02:00
.gitmodules - third_party 2024-04-14 12:03:43 +02:00
CMakeLists.txt core 2024-06-03 17:16:19 +02:00
LICENSE Initial commit 2024-02-27 15:05:21 +01:00
main.cpp Use update's eboot only if it actually exists 2024-06-02 12:52:49 +03:00
readme.md Update readme.md 2024-06-03 18:25:47 +02:00

psOff - PlayStation 4 Emulation (Windows)

  • Unmatched performance
  • State-of-the-art shader reconstruction
  • Steadily improved
Release Nightly Discord

In development. Does it run ...? Check out our Compatibility List to find out.

Getting Started

wiki: Building psoff

Executing a program

.\psoff.exe --h
.\psoff.exe --file="C:/****/eboot.bin"

If no --root is defined, it uses the folder from --file
For testing/benchmark, use --vsync=0

Update (app1): --update

.\psoff.exe --file="C:/****/eboot.bin" --update="C:/FolderWithUpdate"

It expects the undecrypted Target to be in the following format:

sce_module
sce_sys
eboot.bin

Tip

Try out input_ps4 to see if the emulator and your controller work correctly

Dependencies

  • Vulkan SDK 1.3.268.0, minimum
  • Up to date graphic drivers

(May add the Vulkan libs in Future Releases, if needed.)

For development:

  • Ninja
  • CMake 3.24+
  • Visual Studio 2022, it's just for the build environment (uses clang-cl,c++20)
  • Windows SDK 10.0.22621.0 or newer

Development

Use boosts thread, mutex and conditions. The waits have to be alertable in order to receive fake signals from "kernel".

Project uses p7 for tracing -> Baical server.

  • modules: the ps4 libraries
  • core: kernel, memory etc.
  • psoff.exe: (From Releases) contains the runtime and rendering

'.vscode\tasks.json' contains the config & build tasks.