summaryrefslogtreecommitdiffstats
path: root/src/core/system.cpp
blob: 4a4757af38a772b9a334901cc8e5ffe2f5b718de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "audio_core/audio_core.h"

#include "core/core.h"
#include "core/core_timing.h"
#include "core/system.h"
#include "core/gdbstub/gdbstub.h"
#include "core/hw/hw.h"
#include "core/hle/hle.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/memory.h"

#include "video_core/video_core.h"

namespace System {

Result Init(EmuWindow* emu_window) {
    Core::Init();
    CoreTiming::Init();
    Memory::Init();
    HW::Init();
    Kernel::Init();
    HLE::Init();
    if (!VideoCore::Init(emu_window)) {
        return Result::ErrorInitVideoCore;
    }
    AudioCore::Init();
    GDBStub::Init();

    return Result::Success;
}

void Shutdown() {
    GDBStub::Shutdown();
    AudioCore::Shutdown();
    VideoCore::Shutdown();
    HLE::Shutdown();
    Kernel::Shutdown();
    HW::Shutdown();
    CoreTiming::Shutdown();
    Core::Shutdown();
}

} // namespace