2024-02-23 22:32:32 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2024-02-23 21:57:57 +01:00
|
|
|
#include "Util/config.h"
|
2024-02-27 23:10:34 +01:00
|
|
|
#include "common/logging/log.h"
|
2023-11-06 00:11:54 +01:00
|
|
|
#include "core/hle/kernel/cpu_management.h"
|
|
|
|
|
|
|
|
namespace Core::Kernel {
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core::Kernel
|