|
|
|
@ -0,0 +1,18 @@ |
|
|
|
// Copyright 2020 yuzu Emulator Project |
|
|
|
// Licensed under GPLv2 or any later version |
|
|
|
// Refer to the license.txt file included. |
|
|
|
|
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include <array> |
|
|
|
|
|
|
|
#include "common/common_types.h" |
|
|
|
|
|
|
|
namespace Kernel::Memory { |
|
|
|
|
|
|
|
constexpr std::size_t PageBits{12}; |
|
|
|
constexpr std::size_t PageSize{1 << PageBits}; |
|
|
|
|
|
|
|
using Page = std::array<u8, PageSize>; |
|
|
|
|
|
|
|
} // namespace Kernel::Memory |