From 7c34fd46e15fc8df59cba85ad9fede5c98d80797 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Mon, 30 May 2022 11:50:58 +1000 Subject: [PATCH] (WiiU) Add OS memory mapping imports Used in some upcoming cores. --- wiiu/system/imports.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wiiu/system/imports.h b/wiiu/system/imports.h index 7694261110..24a1b4e214 100644 --- a/wiiu/system/imports.h +++ b/wiiu/system/imports.h @@ -56,6 +56,12 @@ IMPORT(OSSignalSemaphore); IMPORT(OSWaitSemaphore); IMPORT(OSTryWaitSemaphore); +IMPORT(OSAllocVirtAddr); +IMPORT(OSFreeVirtAddr); +IMPORT(OSGetMapVirtAddrRange); +IMPORT(OSMapMemory); +IMPORT(OSUnmapMemory); + IMPORT(exit); IMPORT(_Exit); IMPORT(__os_snprintf);