2013-10-02 01:10:47 +02:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2013 Citrus Emulator
|
|
|
|
*
|
|
|
|
* @file system.cpp
|
|
|
|
* @author ShizZy <shizzy247@gmail.com>
|
|
|
|
* @date 2013-09-26
|
|
|
|
* @brief Emulation of main system
|
|
|
|
*
|
|
|
|
* @section LICENSE
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details at
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
* Official project repository can be found at:
|
|
|
|
* http://code.google.com/p/gekko-gc-emu/
|
|
|
|
*/
|
|
|
|
|
2013-10-03 23:47:31 +02:00
|
|
|
#include "core.h"
|
2014-04-05 06:01:07 +02:00
|
|
|
#include "hw/hw.h"
|
2013-10-02 01:10:47 +02:00
|
|
|
#include "core_timing.h"
|
2013-10-03 23:47:31 +02:00
|
|
|
#include "mem_map.h"
|
2013-10-02 01:10:47 +02:00
|
|
|
#include "system.h"
|
2014-04-06 22:55:54 +02:00
|
|
|
#include "video_core.h"
|
2013-10-02 01:10:47 +02:00
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
2013-10-06 15:24:46 +02:00
|
|
|
volatile State g_state;
|
|
|
|
MetaFileSystem g_ctr_file_system;
|
2013-10-02 01:10:47 +02:00
|
|
|
|
|
|
|
void UpdateState(State state) {
|
|
|
|
}
|
|
|
|
|
2013-10-03 23:47:31 +02:00
|
|
|
void Init(EmuWindow* emu_window) {
|
|
|
|
Core::Init();
|
|
|
|
Memory::Init();
|
2014-04-05 06:01:07 +02:00
|
|
|
HW::Init();
|
2013-10-03 23:47:31 +02:00
|
|
|
CoreTiming::Init();
|
2014-04-06 22:55:54 +02:00
|
|
|
VideoCore::Init(emu_window);
|
2013-10-02 01:10:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopFor(int cycles) {
|
|
|
|
RunLoopUntil(CoreTiming::GetTicks() + cycles);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunLoopUntil(u64 global_cycles) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-05 06:01:07 +02:00
|
|
|
Core::Shutdown();
|
|
|
|
HW::Shutdown();
|
2014-04-06 22:55:54 +02:00
|
|
|
VideoCore::Shutdown();
|
2013-10-02 01:10:47 +02:00
|
|
|
g_ctr_file_system.Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|