28 lines
595 B
C++
28 lines
595 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
namespace Titles
|
|
{
|
|
constexpr u64 BOOT2 = 0x0000000100000001;
|
|
|
|
constexpr u64 SYSTEM_MENU = 0x0000000100000002;
|
|
|
|
constexpr u64 SHOP = 0x0001000248414241;
|
|
|
|
constexpr u64 IOS(u32 major_version)
|
|
{
|
|
return 0x0000000100000000 | major_version;
|
|
}
|
|
|
|
// IOS used by the latest System Menu (4.3). Corresponds to IOS80.
|
|
constexpr u64 SYSTEM_MENU_IOS = IOS(80);
|
|
|
|
constexpr u64 BC = IOS(0x100);
|
|
constexpr u64 MIOS = IOS(0x101);
|
|
} // namespace Titles
|