mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-13 03:35:07 +01:00
Make sure the sdaBase and sda2Base are set properly
This commit is contained in:
parent
141e77cd80
commit
f7f8b007fa
@ -11,6 +11,7 @@
|
||||
#include "utils/utils.h"
|
||||
#include "version.h"
|
||||
#include <coreinit/debug.h>
|
||||
#include <coreinit/kernel.h>
|
||||
#include <coreinit/memexpheap.h>
|
||||
#include <cstdint>
|
||||
#include <list>
|
||||
@ -43,6 +44,14 @@ extern "C" int _start(int argc, char **argv) {
|
||||
doStart(argc, argv);
|
||||
}
|
||||
|
||||
KernelInfo0 kernelInfo0;
|
||||
__KernelGetInfo0(&kernelInfo0, 0);
|
||||
asm(
|
||||
"mr 13,%0\n"
|
||||
"mr 2,%1\n" ::"r"(kernelInfo0.sdaBase),
|
||||
"r"(kernelInfo0.sda2Base)
|
||||
:);
|
||||
|
||||
return ((int (*)(int, char **))(*(unsigned int *) 0x1005E040))(argc, argv);
|
||||
}
|
||||
|
||||
|
@ -34,6 +34,7 @@ IMPORT(OSSignalCond);
|
||||
IMPORT(OSSwapAtomic);
|
||||
IMPORT(OSDynLoad_GetAllocator);
|
||||
IMPORT(OSDynLoad_SetAllocator);
|
||||
IMPORT(__KernelGetInfo);
|
||||
|
||||
IMPORT(FSTimeToCalendarTime);
|
||||
IMPORT(FSInit);
|
||||
|
Loading…
Reference in New Issue
Block a user