libnds
|
Functions to handle hardware exceptions. More...
Macros | |
#define | EXCEPTION_STACK_TOP ((uint32_t *)0x2FFFD9C) |
NDS9 BIOS debug exception stack top (mirror) | |
#define | EXCEPTION_VECTOR (*(VoidFn *)(0x2FFFD9C)) |
NDS9 BIOS debug exception vector, or 0 for no handler (mirror) | |
Functions | |
void | defaultExceptionHandler (void) |
Sets the default debug hardware exception handler. | |
void | enterException (void) |
Default exception handler of libnds. | |
void | libndsCrash (const char *message) |
Trigger an exception with a custom error message. | |
void | releaseExceptionHandler (void) |
Sets the release hardware exception handler. | |
void | setExceptionHandler (VoidFn handler) |
Sets a custom hardware exception handler. | |
Variables | |
VoidFn | exceptionC |
Pointer to the user exception handler, called from the exception handler of libnds. | |
s32 | exceptionRegisters [] |
Array with a copy of all the registers of when the exception occured. | |
u32 | exceptionStack |
Stack reserved for the user exception handler, allocated by the exception handler of libnds. | |
Functions to handle hardware exceptions.
Check https://www.problemkaputt.de/gbatek.htm#biosramusage for more information.
void defaultExceptionHandler | ( | void | ) |
Sets the default debug hardware exception handler.
This handler prints a lot of information, like the state of the CPU registers when the CPU crashed.
void libndsCrash | ( | const char * | message | ) |
Trigger an exception with a custom error message.
This can be used for fatal errors that the code can't recover from. It will print the state of the CPU when the function was called as well as a custom user-defined message.
If this function is called on the ARM7 it will send the information to the ARM9 to be displayed.
message | String to be printed in the exception handler. |
void releaseExceptionHandler | ( | void | ) |
Sets the release hardware exception handler.
This is similar to defaultExceptionHandler(), but it only prints a minimal error message, and it uses a lot less code to do it.
void setExceptionHandler | ( | VoidFn | handler | ) |
Sets a custom hardware exception handler.
handler | Exception handler routine. |