2014-04-09 04:45:46 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-10-02 04:40:47 +05:30
|
|
|
|
2013-10-04 03:17:31 +05:30
|
|
|
#include "core.h"
|
2014-04-05 09:31:07 +05:30
|
|
|
#include "hw/hw.h"
|
2013-10-02 04:40:47 +05:30
|
|
|
#include "core_timing.h"
|
2013-10-04 03:17:31 +05:30
|
|
|
#include "mem_map.h"
|
2013-10-02 04:40:47 +05:30
|
|
|
#include "system.h"
|
2014-04-07 02:25:54 +05:30
|
|
|
#include "video_core.h"
|
2013-10-02 04:40:47 +05:30
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2013-10-06 18:54:46 +05:30
|
|
|
volatile State g_state;
|
|
|
|
MetaFileSystem g_ctr_file_system;
|
2013-10-02 04:40:47 +05:30
|
|
|
|
|
|
|
void UpdateState(State state) {
|
|
|
|
}
|
|
|
|
|
2013-10-04 03:17:31 +05:30
|
|
|
void Init(EmuWindow* emu_window) {
|
|
|
|
Core::Init();
|
|
|
|
Memory::Init();
|
2014-04-05 09:31:07 +05:30
|
|
|
HW::Init();
|
2013-10-04 03:17:31 +05:30
|
|
|
CoreTiming::Init();
|
2014-04-07 02:25:54 +05:30
|
|
|
VideoCore::Init(emu_window);
|
2013-10-02 04:40:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopFor(int cycles) {
|
|
|
|
RunLoopUntil(CoreTiming::GetTicks() + cycles);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopUntil(u64 global_cycles) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-05 09:31:07 +05:30
|
|
|
Core::Shutdown();
|
|
|
|
HW::Shutdown();
|
2014-04-07 02:25:54 +05:30
|
|
|
VideoCore::Shutdown();
|
2013-10-02 04:40:47 +05:30
|
|
|
g_ctr_file_system.Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|