kern: avoid hardcoding maximum board memory size

This commit is contained in:
Michael Scire 2020-08-17 16:48:52 -07:00 committed by SciresM
parent 1a262c1063
commit 56ec55f3c4
2 changed files with 3 additions and 2 deletions

View file

@ -18,6 +18,7 @@
namespace ams::kern {
constexpr inline size_t MainMemorySize = 4_GB;
constexpr inline size_t MainMemorySize = 4_GB;
constexpr inline size_t MainMemorySizeMax = 8_GB;
}