Line 1:
Line 1:
coreinit.rpl is the the system library that provides direct access to Cafe OS services. It provides kernel calls, thread scheduling, memory management, and filesystem services. coreinit is the first RPL loaded by the loader, even before the main executable itself.
coreinit.rpl is the the system library that provides direct access to Cafe OS services. It provides kernel calls, thread scheduling, memory management, and filesystem services. coreinit is the first RPL loaded by the loader, even before the main executable itself.
−
==Functions==
+
= Functions =
−
===Auto Power-Down===
+
== Auto Power-Down ==
The Auto Power-Down feature in the WiiU saves the battery of the console, shutting down in one hour when there is no user activity.
The Auto Power-Down feature in the WiiU saves the battery of the console, shutting down in one hour when there is no user activity.
{| class="wikitable"
{| class="wikitable"
Line 34:
Line 34:
|Returns the amount of seconds that are left until the WiiU powers down, if the Auto Power-Down setting is True. apd_secs is a pointer to the variable that stores the amount of seconds.
|Returns the amount of seconds that are left until the WiiU powers down, if the Auto Power-Down setting is True. apd_secs is a pointer to the variable that stores the amount of seconds.
|}
|}
−
===OSDriver===
+
+
== Driver ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 56:
Line 57:
|Will copy data from the OSDriver save area to an user controlled buffer
|Will copy data from the OSDriver save area to an user controlled buffer
|}
|}
−
===Memory===
+
+
== Memory ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 103:
Line 105:
|}
|}
−
===Cache===
+
== Cache ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 122:
Line 124:
|}
|}
−
===Disassembler===
+
== Disassembler ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 137:
Line 139:
|}
|}
−
===Dynamic Linking===
+
== Dynamic Linking ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 162:
Line 164:
Attempting to use OSDynLoad_Acquire() with rplname "nn_uds.rpl" / "test.rpl" (which Internet Browser itself doesn't import) under Internet Browser has the same result: OSDynLoad_Acquire() never returns. Launching a game which uses the former before running Internet Browser has the same result.
Attempting to use OSDynLoad_Acquire() with rplname "nn_uds.rpl" / "test.rpl" (which Internet Browser itself doesn't import) under Internet Browser has the same result: OSDynLoad_Acquire() never returns. Launching a game which uses the former before running Internet Browser has the same result.
−
===Error===
+
== Error ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 173:
Line 175:
|}
|}
−
===Internal===
+
== Internal ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 184:
Line 186:
|}
|}
−
===Threads===
+
== Threads ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 231:
Line 233:
|}
|}
−
===Codegen===
+
== Codegen ==
These functions are used for managing the codegen/JIT area which begins at virtual-memory address 0x01800000. The codegen area size, whether codegen can be used at all, and permissions/etc are loaded from cos.xml for the process. Hence, almost all processes which don't use WebKit don't have access to codegen. These permissions include the coreid which is allowed to use codegen at all(with [[Internet Browser]] this is core1). These permissions also seem to include whether the process is allowed to use OSCodegenCopy([[Internet Browser]] isn't allowed to use it). Certain Virtual Console titles seem to be the only applications which are allowed to use OSCodegenCopy due to cos.xml(codegen_core is set to 40000001 for these, unlike 80000001 for browser-based titles).
These functions are used for managing the codegen/JIT area which begins at virtual-memory address 0x01800000. The codegen area size, whether codegen can be used at all, and permissions/etc are loaded from cos.xml for the process. Hence, almost all processes which don't use WebKit don't have access to codegen. These permissions include the coreid which is allowed to use codegen at all(with [[Internet Browser]] this is core1). These permissions also seem to include whether the process is allowed to use OSCodegenCopy([[Internet Browser]] isn't allowed to use it). Certain Virtual Console titles seem to be the only applications which are allowed to use OSCodegenCopy due to cos.xml(codegen_core is set to 40000001 for these, unlike 80000001 for browser-based titles).
Line 264:
Line 266:
|}
|}
−
=== Screen ===
+
== Screen ==
"bufferNum" is the screenid, see the below screen defines for that. OSScreen *only* supports values 0-1 for screenid. "colour" in the form stored in memory is RGBA8. These functions can't be used without crashing, unless OSScreen was properly initialized. The below functions will immediately return if x/y is out-of-bounds.
"bufferNum" is the screenid, see the below screen defines for that. OSScreen *only* supports values 0-1 for screenid. "colour" in the form stored in memory is RGBA8. These functions can't be used without crashing, unless OSScreen was properly initialized. The below functions will immediately return if x/y is out-of-bounds.
Line 315:
Line 317:
|}
|}
−
===OSSystem=== <!-- TODO: Find better name?? -->
+
== System ==
−
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 364:
Line 365:
|OSGetConsoleType
|OSGetConsoleType
|<code>uint32_t OSGetConsoleType(void)</code>
|<code>uint32_t OSGetConsoleType(void)</code>
−
|Returns the console type e.g. 0x03000050.
+
|Returns the [[#ConsoleType|ConsoleType]].
|-
|-
|OSSleepTicks
|OSSleepTicks
Line 411:
Line 412:
|}
|}
−
===Boot=== <!-- TODO: Find better name?? -->
+
== Boot ==
−
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 439:
Line 439:
|}
|}
−
===IOS===
+
== IOS ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 458:
Line 458:
|}
|}
−
===MCP===
+
== MCP ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 513:
Line 513:
|}
|}
−
==Filesystem==
+
= Filesystem =
The FS* functions appear to only be used by regular applications, while the FSA* functions appear to only be used by system rpls.
The FS* functions appear to only be used by regular applications, while the FSA* functions appear to only be used by system rpls.
−
===Setup===
+
+
== Setup ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 548:
Line 549:
|}
|}
−
===Command Blocks===
+
== Command Blocks ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 596:
Line 597:
|}
|}
−
===File Commands===
+
== File Commands ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 744:
Line 745:
|}
|}
−
== Structures ==
+
= Structures =
−
=== Threads ===
+
== Threads ==
−
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 867:
Line 867:
|}
|}
−
===System Info===
+
== System Info ==
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 885:
Line 885:
|}
|}
−
===Filesystem===
+
== Filesystem ==
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
typedef struct {uint8_t buffer[FS_CLIENT_BUFFER_SIZE];} FSClient;
typedef struct {uint8_t buffer[FS_CLIENT_BUFFER_SIZE];} FSClient;
Line 910:
Line 910:
</syntaxhighlight>
</syntaxhighlight>
−
== Defines ==
+
= Defines =
−
===Filesystem===
+
== Filesystem ==
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
#define FS_CLIENT_BUFFER_SIZE (5888) /* 0x1700 */
#define FS_CLIENT_BUFFER_SIZE (5888) /* 0x1700 */
Line 963:
Line 963:
</syntaxhighlight>
</syntaxhighlight>
−
=== Disassembler ===
+
== Disassembler ==
printf_func() and find_symbol() have the following types:
printf_func() and find_symbol() have the following types:
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
Line 977:
Line 977:
</syntaxhighlight>
</syntaxhighlight>
−
===OSSystem===
+
== System ==
+
=== Time ===
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
#define OSTime int64_t /* stored in timebase upper/lower */
#define OSTime int64_t /* stored in timebase upper/lower */
Line 995:
Line 996:
</syntaxhighlight>
</syntaxhighlight>
−
===OSDriver===
+
=== ConsoleType ===
+
{| class="wikitable"
+
|-
+
! Value
+
! Description
+
|-
+
| 0x03000050
+
| CAFE (Production/Test)
+
|-
+
| 0x11000021
+
| NDEV 2.1
+
|-
+
| 0x11000022
+
| Cortado (HW)
+
|-
+
| 0x11000023
+
| Cortado (BW)
+
|-
+
| 0x11000024
+
| Cortado (ESP-BW SCM)
+
|-
+
| 0x13000040
+
| EV board (Evaluation)
+
|-
+
| 0x13000048
+
| CAT-DEV (Development)
+
|-
+
| 0x13000050
+
| CAFE (Development)
+
|-
+
| 0x23000050
+
| OrchestraX
+
|}
+
+
== Driver ==
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
#define OSDRIVER_SIZE 0x4c
#define OSDRIVER_SIZE 0x4c
Line 1,009:
Line 1,044:
</syntaxhighlight>
</syntaxhighlight>
−
I have no idea if registering an OSDriver return his struct pointer, i can't test it, my Wii U is bricked [[User:NexoCube|NexoCube]] ([[User talk:NexoCube|talk]]) 11:56, 19 March 2017 (CET)
+
== Screen ==
−
−
=== Screen ===
{| class="wikitable"
{| class="wikitable"
!Name
!Name
Line 1,026:
Line 1,059:
|}
|}
−
=== MCP ===
+
== MCP ==
<syntaxhighlight lang="C">
<syntaxhighlight lang="C">
typedef enum MCPInstallTarget {
typedef enum MCPInstallTarget {