blob: 006fce1f7b1c02b144e4f37748adfb6adb7ce5f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <array>
#include <cstddef>
#include "Common/CommonTypes.h"
extern const std::array<u8, 520> soup01_tmd;
extern const std::array<u8, 108> soup01_tmd_view;
extern const std::array<u8, 1312> ios59_tmd;
extern const std::array<u8, 460> ios59_tmd_view;
|