mirror of
https://github.com/encounter/oot-gc.git
synced 2026-03-30 11:33:44 -07:00
7e53a40426
* match AmcExi2Stubs & odenotstub * format * moved dolphin include * enum consistency * review
24 lines
409 B
C
24 lines
409 B
C
#ifndef DEBUGGER_H
|
|
#define DEBUGGER_H
|
|
|
|
#include "dolphin.h"
|
|
|
|
// EXI error codes
|
|
typedef enum {
|
|
AMC_EXI_NO_ERROR = 0,
|
|
AMC_EXI_UNSELECTED = 1
|
|
} AmcExiError;
|
|
|
|
void EXI2_Init(void);
|
|
void EXI2_EnableInterrupts(void);
|
|
bool EXI2_Poll(void);
|
|
AmcExiError EXI2_ReadN(void);
|
|
AmcExiError EXI2_WriteN(void);
|
|
void EXI2_Reserve(void);
|
|
void EXI2_Unreserve(void);
|
|
bool AMC_IsStub(void);
|
|
|
|
bool Hu_IsStub(void);
|
|
|
|
#endif
|