[PR #198] [CLOSED] stubbed PlayGo, Usbd, load Json2 lle, temp and data mounts #1386

Closed
opened 2026-02-27 21:12:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/198
Author: @raziel1000
Created: 6/14/2024
Status: Closed

Base: mainHead: stubs_1


📝 Commits (10+)

  • 1cec016 stubbed PlayGo, Usbd and load Json2 lle
  • ee247d3 posix_mkdir, posix_read, posix_lseek, posix_close, posix_pthread_cond_init, posix_pthread_cond_signal, posix_pthread_cond_destroy (will be needed for Abyss: The Wraiths of Eden)
  • 7aaf31e clang format
  • b2a03e3 added sceKernelUuidCreate (Ghost Files: Memory of a Crime and Abyss: The Wraiths of Eden)
  • 6d0dfdd fix
  • 99ef2d6 Added sceAppContentTemporaryDataMount2.
  • b804095 clang format...
  • ce78165 sceAppContentAppParamGetInt, scePlayGoGetLocus, scePlayGoGetProgress
  • c9d052e ***
  • 31aeec9 Merge branch 'main' into stubs_1

📊 Changes

20 files changed (+913 additions, -16 deletions)

View changed files

📝 CMakeLists.txt (+11 -0)
📝 src/common/logging/filter.cpp (+2 -0)
📝 src/common/logging/types.h (+2 -0)
📝 src/common/path_util.cpp (+2 -0)
📝 src/common/path_util.h (+4 -0)
📝 src/core/file_format/psf.cpp (+2 -2)
📝 src/core/libraries/app_content/app_content.cpp (+40 -6)
📝 src/core/libraries/app_content/app_content.h (+31 -3)
📝 src/core/libraries/kernel/file_system.cpp (+13 -2)
📝 src/core/libraries/kernel/libkernel.cpp (+20 -0)
📝 src/core/libraries/kernel/libkernel.h (+9 -0)
📝 src/core/libraries/kernel/thread_management.cpp (+27 -1)
📝 src/core/libraries/kernel/thread_management.h (+1 -0)
📝 src/core/libraries/libs.cpp (+5 -1)
src/core/libraries/playgo/playgo.cpp (+144 -0)
src/core/libraries/playgo/playgo.h (+40 -0)
src/core/libraries/playgo/playgo_types.h (+60 -0)
src/core/libraries/usbd/usbd.cpp (+410 -0)
src/core/libraries/usbd/usbd.h (+79 -0)
📝 src/emulator.cpp (+11 -1)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/198 **Author:** [@raziel1000](https://github.com/raziel1000) **Created:** 6/14/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `stubs_1` --- ### 📝 Commits (10+) - [`1cec016`](https://github.com/shadps4-emu/shadPS4/commit/1cec01644b06c5ea47b428d37efa07541b846e96) stubbed PlayGo, Usbd and load Json2 lle - [`ee247d3`](https://github.com/shadps4-emu/shadPS4/commit/ee247d3064ef71b9eff71560df02e68d28cbae0b) posix_mkdir, posix_read, posix_lseek, posix_close, posix_pthread_cond_init, posix_pthread_cond_signal, posix_pthread_cond_destroy (will be needed for Abyss: The Wraiths of Eden) - [`7aaf31e`](https://github.com/shadps4-emu/shadPS4/commit/7aaf31ea4a450e7e85f31e9b748f1f1019a63059) clang format - [`b2a03e3`](https://github.com/shadps4-emu/shadPS4/commit/b2a03e3828aef887e71e0e2088a94ad2f6de055d) added sceKernelUuidCreate (Ghost Files: Memory of a Crime and Abyss: The Wraiths of Eden) - [`6d0dfdd`](https://github.com/shadps4-emu/shadPS4/commit/6d0dfdd82a5595d123ccc30abbb85366fb1105df) fix - [`99ef2d6`](https://github.com/shadps4-emu/shadPS4/commit/99ef2d65a6e1832ccfda99dea777a56ae2735e75) Added sceAppContentTemporaryDataMount2. - [`b804095`](https://github.com/shadps4-emu/shadPS4/commit/b8040958030ce8a7c711056943f637f163cfaa7c) clang format... - [`ce78165`](https://github.com/shadps4-emu/shadPS4/commit/ce78165351f760bd7e866668870af5c0c3960082) sceAppContentAppParamGetInt, scePlayGoGetLocus, scePlayGoGetProgress - [`c9d052e`](https://github.com/shadps4-emu/shadPS4/commit/c9d052e218d320b20fbe6e132cbcc564de551a1e) *** - [`31aeec9`](https://github.com/shadps4-emu/shadPS4/commit/31aeec990dae9033fe1c17d4746794190d4da795) Merge branch 'main' into stubs_1 ### 📊 Changes **20 files changed** (+913 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+11 -0) 📝 `src/common/logging/filter.cpp` (+2 -0) 📝 `src/common/logging/types.h` (+2 -0) 📝 `src/common/path_util.cpp` (+2 -0) 📝 `src/common/path_util.h` (+4 -0) 📝 `src/core/file_format/psf.cpp` (+2 -2) 📝 `src/core/libraries/app_content/app_content.cpp` (+40 -6) 📝 `src/core/libraries/app_content/app_content.h` (+31 -3) 📝 `src/core/libraries/kernel/file_system.cpp` (+13 -2) 📝 `src/core/libraries/kernel/libkernel.cpp` (+20 -0) 📝 `src/core/libraries/kernel/libkernel.h` (+9 -0) 📝 `src/core/libraries/kernel/thread_management.cpp` (+27 -1) 📝 `src/core/libraries/kernel/thread_management.h` (+1 -0) 📝 `src/core/libraries/libs.cpp` (+5 -1) ➕ `src/core/libraries/playgo/playgo.cpp` (+144 -0) ➕ `src/core/libraries/playgo/playgo.h` (+40 -0) ➕ `src/core/libraries/playgo/playgo_types.h` (+60 -0) ➕ `src/core/libraries/usbd/usbd.cpp` (+410 -0) ➕ `src/core/libraries/usbd/usbd.h` (+79 -0) 📝 `src/emulator.cpp` (+11 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:12:20 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1386
No description provided.