Difference between revisions of "SDK"
Hallowizer (talk | contribs) (→Libraries: added IPC and added second method of finding libraries) |
Hallowizer (talk | contribs) (No idea how I saw that only 2.0U has symbols, even 4.3 has the symbols) |
||
Line 3: | Line 3: | ||
SDK versions generally correspond to major IOS versions, however, this is not an exact correspondence; one notable example is the SDK version used in Red Steel, which has a HOME Menu with different sounds. | SDK versions generally correspond to major IOS versions, however, this is not an exact correspondence; one notable example is the SDK version used in Red Steel, which has a HOME Menu with different sounds. | ||
− | |||
− | |||
== Libraries == | == Libraries == |
Revision as of 23:14, 8 January 2022
The SDK (internally known as RVL_SDK) is a set of libraries linked with every official Broadway title, containing general functions, and implementing an OS. It is responsible for sending calls to IOS, and is responsible for other features such as the HOME Menu and Bluetooth/Wiimote code. Because of the Wii's architecture, it is impossible for Nintendo to update the SDK in every title, although it may be possible with homebrew.
SDK versions generally correspond to major IOS versions, however, this is not an exact correspondence; one notable example is the SDK version used in Red Steel, which has a HOME Menu with different sounds.
Libraries
Many libraries can be identified by a string saying << RVL_SDK - NAME
; this string also contains build info. However, libraries without that string can be identified by their functions, as all function names start with the library name.
Name | Function |
---|---|
OS | Full name is Revolution OS; responsible for things like context switching |
RFL | Unknown, possibly "Revolution FaceLib" |
MP | Unknown |
NCD | Network related? |
NWC24 | WiiConnect24 related? |
WPAD | Wiimote related? |
EXI | EXI related? |
GX | GX related? |
NAND | Related to the filesystem and IOS? |
SC | Responsible for managing /shared2/sys/SYSCONF. |
VI | Video related? |
AI | Audio related? |
AX | Audio related? |
DSP | DSP related? |
DVD | Related to reading Wii discs? Or maybe native DVD support? |
SI | Unknown |
CNT | Unknown |
KPAD | Unknown |
KBD | Unknown |
KPR | Unknown |
HBM | Possibly short for "Home Button Menu;" probably the HOME Menu |
IPC | Handles communication with IOS |