mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 09:55:05 +01:00
31 lines
641 B
C++
31 lines
641 B
C++
// 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
|