Initial work on homebrew return to loader

This commit is contained in:
Gericom
2026-01-04 15:39:47 +01:00
parent f1e5f0cddc
commit 5c8e98a03f
13 changed files with 387 additions and 5 deletions

View File

@@ -95,3 +95,8 @@ bool dldi_patchTo(dldi_header_t* stub)
{
return sDldiDriver.PatchTo(stub);
}
void dldi_copyTo(void* target)
{
memcpy(target, sDldiBuffer, sizeof(sDldiBuffer));
}

View File

@@ -3,6 +3,7 @@
bool dldi_init();
bool dldi_patchTo(dldi_header_t* stub);
void dldi_copyTo(void* target);
#ifdef __cplusplus
extern "C" {