blob: 8cab34ca256d84ca90c5fd39811b0a0979724dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef _DOLPHIN_AR_INTERNAL_H_
#define _DOLPHIN_AR_INTERNAL_H_
#include <dolphin/ar.h>
#ifdef __cplusplus
extern "C" {
#endif
void __ARClearInterrupt(void);
u16 __ARGetInterruptStatus(void);
void __ARQPopTaskQueueHi(void);
void __ARQServiceQueueLo(void);
void __ARQCallbackHack(u32 pointerToARQRequest);
void __ARQInterruptServiceRoutine(void);
void __ARQInitTempQueue(void);
void __ARQPushTempQueue(ARQRequest* task);
#ifdef __cplusplus
}
#endif
#endif // _DOLPHIN_AR_INTERNAL_H_
|