kern: add minimum alignment support to KMemoryManager

This commit is contained in:
Michael Scire
2024-10-09 21:36:49 -07:00
parent 12f7c95c5d
commit d78e450db6
7 changed files with 58 additions and 16 deletions

View File

@@ -24,4 +24,8 @@ namespace ams::kern {
constexpr inline size_t MainMemorySize = 4_GB;
constexpr inline size_t MainMemorySizeMax = 8_GB;
constexpr inline u32 MinimumMemoryManagerAlignmentShifts[] = {
0, 0, 0, 0
};
}