PowerPC: Move page #define constants to MMU.cpp

These are only ever used here.

This also converts them into typed constants.
This commit is contained in:
Lioncash
2017-02-03 11:42:40 -05:00
parent a3ba169e7d
commit c67d095787
2 changed files with 5 additions and 6 deletions

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <cstddef>
#include <cstring>
#include "Common/Atomic.h"
@ -25,7 +26,10 @@
namespace PowerPC
{
#define HW_PAGE_SIZE 4096
constexpr size_t HW_PAGE_SIZE = 4096;
constexpr u32 HW_PAGE_INDEX_SHIFT = 12;
constexpr u32 HW_PAGE_INDEX_MASK = 0x3f;
constexpr u32 HW_PAGE_TAG_SHIFT = 18;
// EFB RE
/*