mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 11:14:05 -05:00
22 lines
419 B
C
22 lines
419 B
C
#ifndef POKEDIAMOND_OS_EXCEPTION_H
|
|
#define POKEDIAMOND_OS_EXCEPTION_H
|
|
|
|
#include "consts.h"
|
|
#include "OS_context.h"
|
|
|
|
typedef struct
|
|
{
|
|
OSContext context;
|
|
u32 cp15;
|
|
u32 spsr;
|
|
u32 exinfo;
|
|
u32 debug[4];
|
|
} OSiExContext;
|
|
|
|
typedef void (*OSExceptionHandler) (u32, void *);
|
|
|
|
void OS_InitException(void);
|
|
void OSi_ExceptionHandler(void);
|
|
|
|
#endif //POKEDIAMOND_OS_EXCEPTION_H
|