mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
353721578d
* shieldD revo dvd mostly done * shieldD revo nand mostly done * shieldD revo fs mostly done * shieldD revo ipc mostly done * shieldD revo sdk pad done
25 lines
464 B
C
25 lines
464 B
C
#ifndef _REVOLUTION_IPC_H_
|
|
#define _REVOLUTION_IPC_H_
|
|
|
|
#include <revolution/ipc/ipcclt.h>
|
|
#include <revolution/ipc/ipcProfile.h>
|
|
#include <revolution/ipc/memory.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void IPCInit(void);
|
|
void IPCReInit(void);
|
|
u32 IPCReadReg(u32 regIdx);
|
|
void IPCWriteReg(u32 regIdx, u32 data);
|
|
void* IPCGetBufferHi(void);
|
|
void* IPCGetBufferLo(void);
|
|
void IPCSetBufferLo(void* newLo);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _REVOLUTION_IPC_H_
|