[PR #73] [CLOSED] more katsika stuff, dedicated to paris #1265

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/73
Author: @georgemoralis
Created: 11/13/2023
Status: Closed

Base: mainHead: katsika-morestuff


📝 Commits (10+)

  • 7631ebb libc strncmp , strrchr for katsika
  • 9b8615e snprintf implementation
  • 49090c1 sprintf implementation
  • a1e5fcf added fs.cpp , fs.h from pr #70
  • 30e9012 added fopen and fclose functions
  • 5798530 added some more stdio functions
  • 7feffec some more fopen debugging
  • b6db2ec more libc functions for goats
  • b7c7934 sceKernelClockGettime,sceUserServiceGetInitialUser functions
  • f4afe24 some thread function calls

📊 Changes

24 files changed (+539 additions, -47 deletions)

View changed files

📝 CMakeLists.txt (+8 -1)
src/core/file_sys/fs.cpp (+91 -0)
src/core/file_sys/fs.h (+53 -0)
📝 src/core/hle/libraries/libc/libc.cpp (+21 -2)
📝 src/core/hle/libraries/libc/libc_stdio.cpp (+44 -6)
📝 src/core/hle/libraries/libc/libc_stdio.h (+11 -2)
📝 src/core/hle/libraries/libc/libc_stdlib.cpp (+27 -9)
📝 src/core/hle/libraries/libc/libc_stdlib.h (+3 -1)
📝 src/core/hle/libraries/libc/libc_string.cpp (+32 -2)
📝 src/core/hle/libraries/libc/libc_string.h (+5 -1)
📝 src/core/hle/libraries/libc/printf.h (+16 -0)
📝 src/core/hle/libraries/libkernel/thread_management.cpp (+38 -4)
📝 src/core/hle/libraries/libkernel/thread_management.h (+11 -3)
📝 src/core/hle/libraries/libkernel/time_management.cpp (+38 -10)
📝 src/core/hle/libraries/libkernel/time_management.h (+7 -2)
📝 src/core/hle/libraries/libs.cpp (+2 -1)
src/core/hle/libraries/libsavedata/save_data.cpp (+24 -0)
src/core/hle/libraries/libsavedata/save_data.h (+51 -0)
📝 src/core/hle/libraries/libsystemservice/system_service.cpp (+14 -0)
📝 src/core/hle/libraries/libsystemservice/system_service.h (+2 -0)

...and 4 more files

📄 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/73 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 11/13/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `katsika-morestuff` --- ### 📝 Commits (10+) - [`7631ebb`](https://github.com/shadps4-emu/shadPS4/commit/7631ebb76fc5ea5e09687e40dbbf539a3394b1e0) libc strncmp , strrchr for katsika - [`9b8615e`](https://github.com/shadps4-emu/shadPS4/commit/9b8615e99b9c0dc9267511cb9d0a6b5796bcc30a) snprintf implementation - [`49090c1`](https://github.com/shadps4-emu/shadPS4/commit/49090c1ba55add4d4b0bed279efe49daaf98f0e4) sprintf implementation - [`a1e5fcf`](https://github.com/shadps4-emu/shadPS4/commit/a1e5fcf0c534f4f35f58e7f315fb2eedf604b1bf) added fs.cpp , fs.h from pr #70 - [`30e9012`](https://github.com/shadps4-emu/shadPS4/commit/30e90129147a57ec277890fa32e4b50174aa47ae) added fopen and fclose functions - [`5798530`](https://github.com/shadps4-emu/shadPS4/commit/57985304c6e061ccaf116ec22dc33061ee90b786) added some more stdio functions - [`7feffec`](https://github.com/shadps4-emu/shadPS4/commit/7feffecb0f33949565e971476d7ed85b0e91d95b) some more fopen debugging - [`b6db2ec`](https://github.com/shadps4-emu/shadPS4/commit/b6db2ec20cfae4fcff1beb62883680f0715b0e21) more libc functions for goats - [`b7c7934`](https://github.com/shadps4-emu/shadPS4/commit/b7c7934e2a640b9f43cef5a3c42dd8ca66e162b8) sceKernelClockGettime,sceUserServiceGetInitialUser functions - [`f4afe24`](https://github.com/shadps4-emu/shadPS4/commit/f4afe2490a7b60fc300dd3071f0de9c4b44ef807) some thread function calls ### 📊 Changes **24 files changed** (+539 additions, -47 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+8 -1) ➕ `src/core/file_sys/fs.cpp` (+91 -0) ➕ `src/core/file_sys/fs.h` (+53 -0) 📝 `src/core/hle/libraries/libc/libc.cpp` (+21 -2) 📝 `src/core/hle/libraries/libc/libc_stdio.cpp` (+44 -6) 📝 `src/core/hle/libraries/libc/libc_stdio.h` (+11 -2) 📝 `src/core/hle/libraries/libc/libc_stdlib.cpp` (+27 -9) 📝 `src/core/hle/libraries/libc/libc_stdlib.h` (+3 -1) 📝 `src/core/hle/libraries/libc/libc_string.cpp` (+32 -2) 📝 `src/core/hle/libraries/libc/libc_string.h` (+5 -1) 📝 `src/core/hle/libraries/libc/printf.h` (+16 -0) 📝 `src/core/hle/libraries/libkernel/thread_management.cpp` (+38 -4) 📝 `src/core/hle/libraries/libkernel/thread_management.h` (+11 -3) 📝 `src/core/hle/libraries/libkernel/time_management.cpp` (+38 -10) 📝 `src/core/hle/libraries/libkernel/time_management.h` (+7 -2) 📝 `src/core/hle/libraries/libs.cpp` (+2 -1) ➕ `src/core/hle/libraries/libsavedata/save_data.cpp` (+24 -0) ➕ `src/core/hle/libraries/libsavedata/save_data.h` (+51 -0) 📝 `src/core/hle/libraries/libsystemservice/system_service.cpp` (+14 -0) 📝 `src/core/hle/libraries/libsystemservice/system_service.h` (+2 -0) _...and 4 more files_ </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:11:51 +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#1265
No description provided.