arm_dynarmic: Implement core
This commit is contained in:
parent
056f987bcd
commit
d2fbc78320
10 changed files with 171 additions and 62 deletions
|
@ -6,6 +6,7 @@
|
|||
#include <utility>
|
||||
#include "audio_core/audio_core.h"
|
||||
#include "common/logging/log.h"
|
||||
#include "core/arm/dynarmic/arm_dynarmic.h"
|
||||
#include "core/arm/unicorn/arm_unicorn.h"
|
||||
#include "core/core.h"
|
||||
#include "core/core_timing.h"
|
||||
|
@ -139,7 +140,8 @@ void System::Reschedule() {
|
|||
System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
|
||||
LOG_DEBUG(HW_Memory, "initialized OK");
|
||||
|
||||
cpu_core = std::make_unique<ARM_Unicorn>();
|
||||
// TODO: Configuration option
|
||||
cpu_core = std::make_unique<ARM_Dynarmic>();
|
||||
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
||||
|
||||
CoreTiming::Init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue