Files
wiicompiled/aurora-main/lib/dolphin/os/OSBootInfo.cpp
T
patchzyy ec226e8348 init
2026-08-23 17:10:50 +02:00

13 lines
242 B
C++

#include "internal.hpp"
#include <dolphin/os.h>
void AuroraFillBootInfo() {
if (OSBaseAddress == 0) {
return;
}
const auto info = static_cast<OSBootInfo*>(OSPhysicalToCached(0));
info->memorySize = aurora::g_config.mem1Size;
}