2024-02-23 22:32:32 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2024-03-11 12:26:33 +01:00
|
|
|
#include "common/config.h"
|
2024-02-27 23:10:34 +01:00
|
|
|
#include "common/logging/log.h"
|
2024-04-13 23:35:48 +02:00
|
|
|
#include "core/libraries/kernel/cpu_management.h"
|
2023-11-06 00:11:54 +01:00
|
|
|
|
2024-04-13 23:35:48 +02:00
|
|
|
namespace Libraries::Kernel {
|
2023-11-06 00:11:54 +01:00
|
|
|
|
|
|
|
int PS4_SYSV_ABI sceKernelIsNeoMode() {
|
2024-02-27 23:10:34 +01:00
|
|
|
LOG_INFO(Kernel_Sce, "called");
|
2023-11-06 00:11:54 +01:00
|
|
|
return Config::isNeoMode();
|
|
|
|
}
|
|
|
|
|
2024-04-13 23:35:48 +02:00
|
|
|
} // namespace Libraries::Kernel
|