mirror of https://github.com/zeldaret/tp.git
32 lines
649 B
C
32 lines
649 B
C
#ifndef _REVOLUTION_DBINTERFACE_H_
|
|
#define _REVOLUTION_DBINTERFACE_H_
|
|
|
|
#include <revolution/os.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct DBInterface {
|
|
u32 bPresent;
|
|
u32 exceptionMask;
|
|
void (*ExceptionDestination)(void);
|
|
void* exceptionReturn;
|
|
} DBInterface;
|
|
|
|
extern DBInterface* __DBInterface;
|
|
|
|
void DBInit(void);
|
|
void DBInitComm(int* inputFlagPtr, int* mtrCallback);
|
|
void __DBExceptionDestination(void);
|
|
void __DBExceptionDestinationAux(void);
|
|
BOOL __DBIsExceptionMarked(__OSException exception);
|
|
void __DBMarkException(u8 exception, int value);
|
|
void __DBSetPresent(u32 value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|