2014-04-08 19:15:46 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-10-01 19:10:47 -04:00
|
|
|
|
2014-04-08 20:15:08 -04:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/system.h"
|
|
|
|
#include "core/hw/hw.h"
|
2014-04-10 22:45:40 -04:00
|
|
|
#include "core/hle/hle.h"
|
2014-06-10 22:43:50 -04:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-04-08 20:15:08 -04:00
|
|
|
|
|
|
|
#include "video_core/video_core.h"
|
2013-10-01 19:10:47 -04:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2013-10-06 09:24:46 -04:00
|
|
|
volatile State g_state;
|
2013-10-01 19:10:47 -04:00
|
|
|
|
|
|
|
void UpdateState(State state) {
|
|
|
|
}
|
|
|
|
|
2013-10-03 17:47:31 -04:00
|
|
|
void Init(EmuWindow* emu_window) {
|
2014-04-10 22:45:40 -04:00
|
|
|
Core::Init();
|
|
|
|
Memory::Init();
|
2014-04-05 00:01:07 -04:00
|
|
|
HW::Init();
|
2014-04-10 22:45:40 -04:00
|
|
|
HLE::Init();
|
|
|
|
CoreTiming::Init();
|
2014-04-06 16:55:54 -04:00
|
|
|
VideoCore::Init(emu_window);
|
2014-06-10 22:43:50 -04:00
|
|
|
Kernel::Init();
|
2013-10-01 19:10:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopFor(int cycles) {
|
2014-04-10 22:45:40 -04:00
|
|
|
RunLoopUntil(CoreTiming::GetTicks() + cycles);
|
2013-10-01 19:10:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopUntil(u64 global_cycles) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-05 00:01:07 -04:00
|
|
|
Core::Shutdown();
|
2014-04-10 22:45:40 -04:00
|
|
|
Memory::Shutdown();
|
2014-04-05 00:01:07 -04:00
|
|
|
HW::Shutdown();
|
2014-04-10 22:45:40 -04:00
|
|
|
HLE::Shutdown();
|
|
|
|
CoreTiming::Shutdown();
|
2014-04-06 16:55:54 -04:00
|
|
|
VideoCore::Shutdown();
|
2014-06-10 22:43:50 -04:00
|
|
|
Kernel::Shutdown();
|
2013-10-01 19:10:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|