2024-02-23 21:57:57 +01:00
|
|
|
#include "Util/config.h"
|
2023-11-06 00:11:54 +01:00
|
|
|
#include "common/log.h"
|
|
|
|
#include "core/hle/kernel/cpu_management.h"
|
|
|
|
#include "core/hle/libraries/libs.h"
|
|
|
|
|
|
|
|
namespace Core::Kernel {
|
|
|
|
|
|
|
|
int PS4_SYSV_ABI sceKernelIsNeoMode() {
|
|
|
|
PRINT_FUNCTION_NAME();
|
|
|
|
return Config::isNeoMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core::Kernel
|