Skip to content

Commit

Permalink
Add PS4 FW v10.70 support
Browse files Browse the repository at this point in the history
  • Loading branch information
McCaulay committed Jul 22, 2023
1 parent 24909de commit 48694ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sdk/include/offsets/ps/libkernel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#define LIB_KERNEL_SYS_RET 0x2baa
#elif defined(FIRMWARE) && FIRMWARE == 1001
#include <offsets/ps/libkernel/ps4/10.01.hpp>
#elif defined(FIRMWARE) && FIRMWARE == 1050
#include <offsets/ps/libkernel/ps4/10.50.hpp>
#elif defined(FIRMWARE) && (FIRMWARE == 1050 || FIRMWARE == 1070)
#include <offsets/ps/libkernel/ps4/10.50_10.70.hpp>
#endif
#elif defined(PS5) && PS5
#if defined(FIRMWARE) && FIRMWARE == 650
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#if (defined(PS4) && PS4) && defined(FIRMWARE) && FIRMWARE == 1050
#if (defined(PS4) && PS4) && defined(FIRMWARE) && (FIRMWARE == 1050 || FIRMWARE == 1070)
#define LIB_KERNEL_SYSC_S00 0x460
#define LIB_KERNEL_RFORK_THREAD 0x470
#define LIB_KERNEL_SIGSETJMP 0x4c0
Expand Down

0 comments on commit 48694ac

Please sign in to comment.