summaryrefslogblamecommitdiffstats
path: root/src/core/system.cpp
blob: 561ff82f05832251b6dcd9ec61639f781447cd6a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
                                            
                                          
 




                             
                         
                                   

                                  


                  
                                  
                 
                       
                   
               
                   
                
                                

 
                 
                          
                    
                       

                       
                           
                     

 
              
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

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

#include "video_core/video_core.h"

namespace System {

void Init(EmuWindow* emu_window) {
    Core::Init();
    CoreTiming::Init();
    Memory::Init();
    HW::Init();
    Kernel::Init();
    HLE::Init();
    VideoCore::Init(emu_window);
}

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

} // namespace