mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-06-12 12:45:00 -06:00
16 lines
345 B
C++
16 lines
345 B
C++
// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "core/libraries/kernel/process.h"
|
|
|
|
namespace Libraries::Kernel {
|
|
|
|
s32 PS4_SYSV_ABI sceKernelGetCompiledSdkVersion(s32* ver) {
|
|
if (ver) {
|
|
*ver = 0x4500000;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
} // namespace Libraries::Kernel
|