summaryrefslogblamecommitdiffstats
path: root/src/core/hle/shared_page.cpp
blob: 4014eee98e4eac30356d489255b0dfc165a1057b (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                            

                  
                                
                                

                      
                        
                                
                                 




                                                                                                    
                          
 
             
                                                      
 
                                            

 


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

#include <cstring>

#include "common/common_types.h"
#include "common/common_funcs.h"

#include "core/core.h"
#include "core/memory.h"
#include "core/hle/config_mem.h"
#include "core/hle/shared_page.h"

////////////////////////////////////////////////////////////////////////////////////////////////////

namespace SharedPage {

SharedPageDef shared_page;

void Init() {
    std::memset(&shared_page, 0, sizeof(shared_page));

    shared_page.running_hw = 0x1; // product
}

void Shutdown() {
}

} // namespace