mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-11 20:54:57 +00:00
24 lines
789 B
C++
24 lines
789 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#if defined(ARCHITECTURE_x86_64) || defined(ARCHITECTURE_arm64)
|
|
#include "core/arm/dynarmic/arm_exclusive_monitor.h"
|
|
#endif
|
|
#include "core/arm/exclusive_monitor.h"
|
|
#include "core/memory.h"
|
|
|
|
namespace Core {
|
|
|
|
ExclusiveMonitor::~ExclusiveMonitor() = default;
|
|
|
|
std::unique_ptr<Core::ExclusiveMonitor> MakeExclusiveMonitor(Memory::Memory& memory,
|
|
std::size_t num_cores) {
|
|
#if defined(ARCHITECTURE_x86_64) || defined(ARCHITECTURE_arm64)
|
|
return std::make_unique<Core::DynarmicExclusiveMonitor>(memory, num_cores);
|
|
#else
|
|
// TODO(merry): Passthrough exclusive monitor
|
|
return nullptr;
|
|
#endif
|
|
}
|
|
|
|
} // namespace Core
|