2015-01-02 00:41:34 -05:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-05-06 01:42:43 -04:00
|
|
|
#include <cstring>
|
|
|
|
|
2015-02-13 10:40:07 -05:00
|
|
|
#include "core/hle/shared_page.h"
|
2015-01-02 00:41:34 -05:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace SharedPage {
|
|
|
|
|
2015-05-12 22:29:24 -04:00
|
|
|
SharedPageDef shared_page;
|
2015-01-02 00:41:34 -05:00
|
|
|
|
2015-05-12 22:29:24 -04:00
|
|
|
void Init() {
|
2015-05-06 01:42:43 -04:00
|
|
|
std::memset(&shared_page, 0, sizeof(shared_page));
|
2015-04-27 22:45:43 -04:00
|
|
|
|
2015-01-02 00:41:34 -05:00
|
|
|
shared_page.running_hw = 0x1; // product
|
2016-03-29 15:29:57 -04:00
|
|
|
|
|
|
|
// Some games wait until this value becomes 0x1, before asking running_hw
|
|
|
|
shared_page.unknown_value = 0x1;
|
2015-01-02 00:41:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|