mirror of
https://github.com/zeldaret/tp
synced 2026-05-26 23:47:46 -04:00
255705a4cd
* Implement revolution/ax Copied mostly unchanged from Petari * Implement revolution/axfx Copied mostly unchanged from Petari * Implement revolution/arc Copied mostly unchanged from Petari * Implement revolution/mem Copied mostly unchanged from Petari * Implement revolution/tpl Copied verbatim from Petari * revolution/ipc matching (except small linking issue on ShieldD) * revolution/pad/Pad matching Largely copied from Petari with significant modifications * Fix up ut_TextWriterBase symbols * Fix homebuttonLib file names in Shield splits
27 lines
487 B
C
27 lines
487 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);
|
|
#if SDK_AUG2010
|
|
void IPCReInit(void);
|
|
#endif
|
|
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_
|