modifying all the files to match the app

This commit is contained in:
AMA2581 2024-03-06 00:19:07 +03:30
parent 09697fff49
commit 5720814b13
2887 changed files with 18366 additions and 18295 deletions

View file

@ -39,9 +39,9 @@ namespace Core::Memory {
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
* be mapped.
*/
constexpr std::size_t YUZU_PAGEBITS = 12;
constexpr u64 YUZU_PAGESIZE = 1ULL << YUZU_PAGEBITS;
constexpr u64 YUZU_PAGEMASK = YUZU_PAGESIZE - 1;
constexpr std::size_t suyu_PAGEBITS = 12;
constexpr u64 suyu_PAGESIZE = 1ULL << suyu_PAGEBITS;
constexpr u64 suyu_PAGEMASK = suyu_PAGESIZE - 1;
/// Virtual user-space memory regions
enum : u64 {