#include <revolution/sc.h>
void SCInit(void);
None.
None.
Initializes the SC library. Call this function once before using the library. This function can be called any number of times.
This function starts the initialization process in the background. This allows applications to efficiently carry out other initialization processes while console settings saved in internal flash memory are being loaded into RAM.
For this reason, initialization is not complete when control returns from this function. Be sure to call SCCheckStatus() repeatedly to confirm that the return value is SC_STATUS_OK. No matter how much time has elapsed since SCInit() was called, SCCheckStatus() must be called once to complete the initialization process.
Other SC library functions cannot be called until initialization is complete.
This function automatically calls NANDInit().
05/29/2006 Initial version.